/* =================================================================
   SELL LIKE CODY — style.css
   Dark editorial landing page. Layout is handled by Bootstrap 5 grid
   (container / row / col-*). This file styles internals: typography,
   colors, decorative effects, and a few absolute-positioned design
   elements (Cody cutout, floating quote, bg numerals) that have no
   grid equivalent.

   Order:
   1. Tokens / reset
   2. Background FX
   3. Header / nav
   4. Hero
   5. Benefits strip
   6. Bio
   7. Platform (feature cards)
   8. CTA + form
   9. Footer
   10. Reveal animation hooks
   11. Responsive overrides (Bootstrap breakpoints)
   ================================================================= */

/* ===== 1. Tokens / reset ===== */
:root {
    --bg-base: #0A0A0A;
    --bg-deep: #060606;
    --bg-elev: #131313;
    --bg-card: #111111;
    --bg-warm: #14110D;

    --accent: #f68f00;
    --accent-bright: #ffa31a;
    --accent-soft: #f4b85a;
    --plate-red: #d22030;
    --plate-blue: #1c3aa0;
    --cream: #F5F1EA;

    --text-primary: #F5F1EA;
    --text-secondary: #9A958C;
    --text-tertiary: #5e5750;
    --line: rgba(245, 241, 234, 0.08);
    --line-strong: rgba(245, 241, 234, 0.16);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}
.container{
    max-width: 1200px
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: var(--bg-base);
    padding: 10px 16px;
    z-index: 1000;
    font-weight: 700;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
}

/* Section spacing (Bootstrap grid handles row/col, sections get vertical padding) */
section {
    padding: 70px 0;
    position: relative;
    z-index: 2;
}


/* ===== 2. Background FX ===== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    filter: url(#grain);
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.scan {
    position: fixed;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px,
            rgba(255, 255, 255, 0.010) 3px, rgba(255, 255, 255, 0.010) 4px);
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}


/* ===== 3. Header / nav ===== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 40px;
    background: transparent;
    transition: padding 0.3s ease, background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header-area.is-scrolled {
    padding: 12px 40px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    line-height: 1.15;
    transition: color 0.2s ease;
}

.nav__contact-link:hover {
    color: var(--accent);
}

.nav__contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}
.nav__contact-link span {
    display: inline-flex;
    flex-direction: column;
}

.nav__contact-label {
    font-size: 10px;
    font-weight: 700;
    color: #adadad;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.nav__divider {
    display: inline-block;
    width: 1px;
    height: 28px;
    background: var(--line);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    background: var(--accent);
    color: var(--bg-base);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(246, 143, 0, 0.35);
}

.nav__cta svg {
    width: 14px;
    height: 14px;
}


/* ===== 4. Hero ===== */
.hero-area {
    padding: 60px 0;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 8% 78%, rgba(246, 143, 0, 0.22) 0 4px, transparent 6px),
        radial-gradient(circle at 14% 78%, rgba(246, 143, 0, 0.18) 0 3px, transparent 5px),
        radial-gradient(circle at 21% 78%, rgba(246, 143, 0, 0.22) 0 4px, transparent 6px),
        radial-gradient(circle at 28% 78%, rgba(246, 143, 0, 0.16) 0 3px, transparent 5px),
        linear-gradient(to top, rgba(255, 255, 255, 0.04) 0, transparent 30%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(246, 143, 0, 0.10) 0, transparent 70%);
}

.hero__brand {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.hero__brand-plate {
    width: min(300px, 80vw);
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 30px rgba(246, 143, 0, 0.2));
}
.hero__available {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 10px;
    line-height: 0.95;
    border-left: 2px solid var(--accent)
}


.hero__headline {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.022em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero__headline .row-line {
    display: block;
    overflow: hidden;
}

.hero__headline .row-line > span {
    display: block;
    white-space: nowrap;
}

.hero__headline .accent {
    color: var(--accent);
}

.hero__headline em {
    font-style: normal;
    position: relative;
    display: inline-block;
}


.hero__sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 44px;
}

.hero__sub b {
    color: var(--text-primary);
    font-weight: 700;
}

/* Stat cards — now sit inside a Bootstrap row */
.hero__stats {
    margin-bottom: 30px;
}

.stat {
    padding: 22px 22px 18px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.stat:hover::before {
    transform: translateY(0);
}

.stat__num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0 0 7px;
}

.stat__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0 0 4px;
}

.stat__sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
}

/* Guinness verified seal */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 410px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 0;
}
.hero__trust strong {
    color: var(--text-primary);
    font-weight: 600;
}

.seal {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(246, 143, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden
}

.seal::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(246, 143, 0, 0.35);
    border-radius: 50%;
}

.seal svg {
    width: 22px;
    height: 22px;
    margin-bottom: 1px;
}

.seal__text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--accent);
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    background: var(--accent);
    color: var(--bg-base);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta-btn:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(246, 143, 0, 0.4);
}

.hero__cta-btn svg {
    width: 14px;
    height: 14px;
}

.hero__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.hero__cta-phone svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.hero__cta-phone:hover {
    color: var(--accent);
}

/* Hero visual column — Cody cutout + floating quote */
.hero__visual {
    position: relative;
    width: 100%;
    min-height: 590px;
}

.hero__visual::before {
    content: '';
    position: absolute;
    right: -40px;
    bottom: 60px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle at 50% 50%, rgba(246, 143, 0, 0.55) 0%, rgba(246, 143, 0, 0.22) 30%, rgba(246, 143, 0, 0.06) 55%, transparent 75%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero__visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90px;
    background: radial-gradient(ellipse, rgba(246, 143, 0, 0.6) 0%, rgba(246, 143, 0, 0.18) 40%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.hero__cody {
    position: absolute;
    bottom: -70px;
    right: 135px;
    z-index: 1;
    height: 850px;
    width: auto;
    max-width: none;
    pointer-events: none;
    filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.85));
}
.hero-area .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    filter: grayscale(1);
    opacity: 0.8;
}
.hero__quote {
    position: absolute;
    top: -50px;
    right: -30px;
    max-width: 260px;
    z-index: 3;
    text-align: left;
    margin: 0;
}

.hero__left {
    position: relative;
    z-index: 1;
}
.hero__quote-mark {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 88px;
    line-height: 0;
    color: var(--accent);
    margin-bottom: 6px;
    font-style: italic;
    display: block;
}

.hero__quote-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.32;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.hero__quote-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-style: normal;
    display: block;
}


/* ===== 5. Benefits strip ===== */
.benefits-area {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 36px;
    height: 100%;
}

/* Bootstrap row will lay these out; we still want a divider between cols on desktop */
.benefits-area .col-md-4 + .col-md-4 .benefit {
    border-left: 1px solid var(--line);
}

.benefit__icon {
    color: var(--accent);
    flex-shrink: 0;
}

.benefit__icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.benefit__text {
    flex: 1;
    min-width: 0;
}

.benefit__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 5px;
    line-height: 1.2;
}

.benefit__sub {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}


/* ===== 6. Bio ===== */
.bio-area {
    padding: 70px 0;
    position: relative;
}

.bio__bg-num {
    position: absolute;
    top: 36px;
    right: 48px;
    font-family: 'Anton', sans-serif;
    font-size: 240px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.018);
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    margin: 0;
}

.bio-area > .container {
    position: relative;
    z-index: 2;
}

.bio__poster {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
    aspect-ratio: 4 / 5;
    background: #0d0d0d;
    transition: transform 0.45s ease;
}

.bio__poster:hover {
    transform: translateY(-4px);
}

.bio__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.bio__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 32px;
}

.bio__heading .accent {
    color: var(--accent);
}

.bio__text p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.bio__text p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bio__text p:last-child {
    margin-bottom: 32px;
}

.bio__featured-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bio__featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio__featured-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--line);
}

.bio__featured-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}
.featured-logos-wrapper{
    display: flex;
    align-items: center;
    gap:25px
}

.featured-logo img{
    max-height: 30px
}
/* ===== 7. Platform / feature cards ===== */
.platform-area {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(246, 143, 0, 0.05) 0, transparent 60%),
        var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.platform__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 18px;
    max-width: 720px;
}

.platform__heading .accent {
    color: var(--accent);
}

.platform__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 42px;
}

.platform__sub strong {
    color: var(--text-primary);
    font-weight: 600;
}

.feature {
    padding: 38px 32px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.feature:hover {
    border-color: rgba(246, 143, 0, 0.35);
    transform: translateY(-4px);
}

.feature__head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.feature__icon {
    width: 44px;
    height: 44px;
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.feature__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
}

.feature__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 22px;
}

.feature__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-primary);
    border-top: 1px dashed var(--line);
}

.feature__list li:first-child {
    border-top: none;
    padding-top: 0;
}

.feature__list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    margin-top: 8px;
}


/* ===== 8. CTA + form ===== */
.cta-area {
    padding: 80px 0;
}

.cta__heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 26px;
}

.cta__heading .accent {
    color: var(--accent);
}

.cta__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 0 38px;
}

.cta__sub strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cta__phone-block {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.cta__phone-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta__phone-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(38px, 4.5vw, 56px);
    color: var(--accent);
    letter-spacing: 0.005em;
    line-height: 1;
    display: inline-block;
    transition: color 0.2s ease;
}

.cta__phone-num:hover {
    color: var(--accent-bright);
    text-shadow: 0 14px 32px rgba(246, 143, 0, 0.32)
}

.cta__phone-foot {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 14px;
    margin-bottom: 0;
}

.cta__phone-foot a {
    color: var(--accent);
}

.cta__phone-foot a:hover {
    color: var(--accent-bright);
}

.form {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    position: relative;
}

.form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--accent);
}

.form__title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.form__sub {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-base);
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
    resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-tertiary);
    font-weight: 400;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #0d0d0d;
}

.form textarea {
    min-height: 88px;
}

.form__submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--accent);
    color: var(--bg-base);
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.form__submit:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(246, 143, 0, 0.32);
}

.form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Submission feedback */
.form__feedback {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    animation: formFeedbackIn 0.35s ease both;
}

.form__feedback.is-visible {
    display: block;
}

.form__feedback--success {
    background: rgba(40, 170, 90, 0.12);
    border: 1px solid rgba(40, 170, 90, 0.45);
}

.form__feedback--error {
    background: rgba(210, 32, 48, 0.12);
    border: 1px solid rgba(210, 32, 48, 0.45);
}

.form__feedback-title {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.form__feedback--success .form__feedback-title {
    color: #6ee29a;
}

.form__feedback--error .form__feedback-title {
    color: #ff8a93;
}

.form__feedback-body {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13.5px;
}

@keyframes formFeedbackIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Visually-hidden label */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ===== 9. Footer ===== */
.footer-area {
    padding: 28px 0 32px;
    border-top: 1px solid var(--line);
}

.footer__text {
    font-size: 12px;
    color: var(--text-tertiary);
    margin: 0;
}

.footer__text a:hover {
    color: var(--accent);
}

.footer__brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.footer__brand b {
    color: var(--accent);
    font-weight: 700;
}


/* ===== 10. Reveal hook ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


/* =================================================================
   11. Responsive overrides — aligned to Bootstrap 5 breakpoints
   xxl 1400 / xl 1200 / lg 992 / md 768 / sm 576
   ================================================================= */

/* < xl (1199.98px) */
@media (max-width: 1199.98px) {
    .hero__quote {
        max-width: 240px;
        right: -60px;
    }

    .hero__quote-text {
        font-size: 20px;
    }

    .hero__quote-mark {
        font-size: 68px;
    }

    .hero__cody {
        right: -160px;
        height: 760px;
    }

    .hero__visual {
        min-height: 760px;
    }
}

/* < lg (991.98px) — stack hero, bio, platform, cta */
@media (max-width: 991.98px) {
    .header-area {
        padding: 14px 22px;
    }

    .header-area.is-scrolled {
        padding: 10px 22px;
    }

    .nav__cta {
        padding: 9px 13px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .nav__contact-label {
        display: none;
    }

    .nav__contact-link {
        font-size: 11px;
        gap: 7px;
        letter-spacing: 0.06em;
    }

    .nav__divider {
        height: 16px;
    }

    .hero-area {
        padding: 100px 0 60px;
    }

    .hero__brand {
        margin-bottom: 36px;
    }

    .hero__brand-plate {
        width: min(380px, 78vw);
    }

    /* Hero visual collapses to its natural flow */
    .hero__visual {
        min-height: 0;
        padding-top: 40px;
        text-align: center;
    }

    .hero__visual::before {
        right: 50%;
        transform: translateX(50%);
        bottom: 40px;
        width: min(560px, 90vw);
        height: min(560px, 90vw);
    }

    .hero__visual::after {
        right: 50%;
        transform: translateX(50%);
        width: min(420px, 80vw);
        height: 60px;
    }

    .hero__cody {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        margin: 0 auto;
    }

    .hero__quote {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin: 0 auto 24px;
        text-align: center;
    }

    .hero__quote-mark {
        font-size: 64px;
    }

    .hero__quote-text {
        font-size: 18px;
    }

    .hero__quote-author {
        font-size: 11px;
    }

    .hero__trust {
        gap: 14px;
    }

    .seal {
        width: 56px;
        height: 56px;
    }

    .bio-area {
        padding: 60px 0;
    }

    .bio__bg-num {
        display: none;
    }

    .platform-area {
        padding: 70px 0;
    }

    .cta-area {
        padding: 70px 0;
    }

    /* Benefits: the desktop divider rule no longer applies when items stack */
    .benefits-area .col-md-4 + .col-md-4 .benefit {
        border-left: none;
    }
}

/* < md (767.98px) */
@media (max-width: 767.98px) {
    .header-area {
        padding: 12px 18px;
    }

    .header-area.is-scrolled {
        padding: 10px 18px;
    }

    .benefits-area {
        padding: 36px 0 50px;
    }

    .benefit {
        padding: 14px 0;
        border-top: 1px solid var(--line);
    }

    .benefit.first {
        border-top: none;
        padding-top: 0;
    }

    .cta__heading {
        font-size: 2.4rem;
    }
}

/* < sm (575.98px) */
@media (max-width: 575.98px) {
    .header-area {
        padding: 12px 14px;
    }

    .nav__cta {
        padding: 8px 11px;
        font-size: 10px;
    }

    .nav__divider {
        display: none;
    }

    .nav__contact-link {
        font-size: 10.5px;
    }

    .hero-area {
        padding: 90px 0 50px;
    }

    .hero__brand-plate {
        width: 88vw;
    }

    .hero__headline {
        font-size: 2.4rem;
    }

    .hero__sub {
        font-size: 11.5px;
        letter-spacing: 0.18em;
    }

    .hero__cta {
        gap: 14px;
    }

    .hero__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero__cta-phone {
        width: 100%;
        justify-content: center;
    }

    .hero__visual::before {
        width: 95vw;
        height: 95vw;
        bottom: 30px;
    }

    .hero__visual::after {
        width: 85vw;
    }

    .hero__cody {
        max-width: 94%;
        max-height: 60vh;
    }

    .hero__quote-mark {
        font-size: 56px;
    }

    .hero__quote-text {
        font-size: 17px;
    }

    .hero__quote-author {
        font-size: 10.5px;
    }

    .form {
        padding: 24px;
    }

    .cta__phone-num {
        font-size: 30px;
    }

    .footer-area .row > div {
        text-align: center !important;
    }
}


/*Extra Responsive*/

@media(max-width:1200px){
    .hero-area {
    padding: 80px 0 0px;
}
    .hero__brand {
    margin-bottom: 0;
}
    .stat {
    padding: 15px;
}
    .stat__num {
    font-size: 22px;
}
    .hero__visual {
    min-height: 700px;
}
    .hero__cody {
    right: -160px;
    height: 610px;
}
.hero__quote {
    max-width: 210px;
    right: 0;
    top: 40px;
}
    .hero__cody {
    right: 0;
}
    .hero__headline {
    font-size: 70px;
}
    .hero__cody {
    right: 100px;
    height: 840px;
}
}
@media(max-width:991px){
    .cta-area {
    padding: 50px 0;
}
    .platform-area{
        padding: 50px 0
    }
    .bio__heading {
    margin: 0 0 20px;
}
    .bio__text p {
    margin-bottom: 13px;
}
    .feature{
        padding: 28px
    }
    .form{
        padding: 25px
    }
    .hero__brand-plate {
    width: min(180px, 78vw);
}
    .stat {
        padding: 15px
    }
    .stat__num{
        font-size: 22px
    }
    .hero-area {
    padding: 70px 0 0px;
}
    .hero__cody {
    right: 100px;
    max-width: 100%;
    height: auto;
    min-width: 100%;
    margin: 0 auto;
    min-width: 626px;
}
    .hero__visual{
        height: 100%
    }
    .benefit {
    padding: 10px 0;
}
    .hero__visual {
    height: inherit;
    min-height: 0;
}
    .hero__quote {
    max-width: 180px;
    right: -38px;
    top: 30px;
}
    .hero-area {
    padding-top: 85px;
    padding-bottom: 40px;
}
.hero__left__inner {
    position: relative;
    padding-right: 40%;
}
.hero__cody__mobile {
    position: absolute;
    bottom: 0;
    width: 280px;
    bottom: -45px;
    right: 0;
}
.hero__headline {
    font-size: 64px;
}
    .hero__sub {
    padding-right: 50px;
}
    .hero__brand {
    margin-bottom: 50px;
}
}
@media(max-width:767px){
    .hero-area{
        padding-top: 65px;
        padding-bottom: 40px
    }
    .hero__brand-plate {
    width: min(100px, 80vw);
}
    .hero__brand {
    margin-bottom: 30px;
}

    .hero__sub{
        margin-bottom: 25px
    }
    .hero__stats{
        text-align: center
    }
    .stat{
        padding: 15px
    }
    .stat__num {
    font-size: 24px;
}
    .hero__cta {
        display: none
    }
    .hero__quote-text {
    font-size: 26px;
    width: 80%;
    margin: 0 auto 20px;
}
.hero__quote {
    margin: 20px 0;
    max-width: 100%;
    top: auto;
}
    .benefits-area{
        padding: 30px 0 20px
    }
    .form {
    margin-top: 30px;
}
    .benefit{
        border: none;
        padding: 0
    }
    .benefit{
        align-items: flex-start
    }
     .hero__visual {
    height: auto;
    min-height: 0;
}
.hero__cody {
    right: 0;
    max-width: 0;
    height: auto;
    min-width: 100%;
    margin: 0 auto;
    min-width: 100%;
    left: 0;
    object-fit: contain
}
    .hero__quote{
        right: auto
    }
    .hero__brand{
        text-align: left
    }
    .hero__brand-plate {
    width: min(200px, 80vw);
}
    .hero__left{
        position: relative;
        z-index: 111
    }
        .hero__quote {
    display: none;
}
   
.hero-area {
    padding-top: 85px;
    padding-bottom: 40px;
}
.hero__left__inner {
    position: relative;
    padding-right: 40%;
}
.hero__cody__mobile {
    position: absolute;
    bottom: 0;
    width: 250px;
    bottom: -26px;
    right: 0;
}
.hero__headline {
    font-size: 48px;
}
    .hero__sub {
    padding-right: 50px;
}
    .header-area {
    padding: 12px 0;
}
    .header-inn-wrapper {
        justify-content: space-between !important
    }
    .header-area.is-scrolled {
    padding: 10px ;
}
    .hero__available {
    margin-bottom: 15px;
    font-size: 14px;
}
}
@media(max-width:575px){
    .benefit{
        padding: 15px 0;
        border-top: 1px solid var(--line)
    }
    .benefit.first{
        border-top: 0
    }
    .hero__quote {
    display: none;
}
   
.hero-area {
    padding-top: 85px;
    padding-bottom: 40px;
}
.hero__left__inner {
    position: relative;
    padding-right: 40%;
}
.hero__cody__mobile {
    position: absolute;
    bottom: 0;
    width: 56%;
    bottom: -30px;
    right: -25px;
    z-index: -1;
}
    .hero__headline {
    font-size: 30px;
}
    .hero__sub {
    padding-right: 50px;
}
}
