/* ─── FONTS (Inter variable) ─── */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:      #0D0A0B;
    --grey:       #454955;
    --muted:      #7a7f8a;
    --light:      #c3c3c3;
    --white:      #ffffff;
    --green:      #72B01D;
    --dark-green: #3F7D20;
    --border:     rgba(13,10,11,.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── BUTTONS ─── */
.btn-ghost {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--grey);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: color .18s, background .18s;
    display: inline-block;
}
.btn-ghost:hover { color: var(--black); background: rgba(13,10,11,.05); }

.btn-primary {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    border: none;
    cursor: pointer;
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    transition: opacity .18s;
    display: inline-block;
}
.btn-primary:hover { opacity: .82; }

.btn-cta {
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    background: var(--green);
    border: none;
    cursor: pointer;
    padding: 15px 38px;
    border-radius: 100px;
    width: 300px;
    transition: background .18s, transform .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.btn-cta:hover { background: var(--dark-green); transform: translateY(-2px); }

.btn-cta-icon { width: 23px; height: 23px; display: block }

/* ─── NAV ─── */
.nav {
    background: var(--white);
    /* border-bottom: 1px solid var(--border); */
    padding: 0 2rem;
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img { height: 70px; width: auto; opacity: 1.0; }
.nav-cta { display: flex; align-items: center; gap: 0.25rem; }

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem 0;
    background: var(--white);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
}
.shape-1 {
    width: 480px; height: 480px;
    background: rgba(114,176,29,.22);
    top: -120px; right: -100px;
}
.shape-2 {
    width: 340px; height: 340px;
    background: rgba(63,125,32,.14);
    bottom: 60px; left: -80px;
}
.shape-3 {
    width: 220px; height: 220px;
    background: rgba(114,176,29,.10);
    top: 60px; left: 30%;
}

.hero-content {
    position: relative;
    flex: 1;
    min-width: 0;
    z-index: 3;
    max-width: 740px;
    padding: 0 0 0 0;
    margin: 0 auto 0;
}

/* WhatsApp badge stacked above hero content */
.hero-content .wa-badge {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(13,10,11,.18);
    background: #fff;
    padding: 6px;
    z-index: 6;
    display: block;
}

@media (max-width: 640px) {
    .hero-content .wa-badge { width: 64px; top: -40px; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.hero-content h1 {
    font-size: 84px;
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 500px;
    margin: 1rem 0 1rem;
    line-height: 1.5;
}

h2 {
    font-weight: 500;
    line-height: 0.95;
    color: var(--muted);
}

/* ─── PHONE MOCKUP ─── */
.hero-phone {
    position: relative;
    flex-shrink: 0;
    width: 650px;
    z-index: 2;
    margin: 0 auto 0;
    padding-top: 0px;
    display: contents;
}

/* Static iPhone image used in place of CSS mockup */
.hero-phone-img {
    display: block;
    width: 325px; /* keep fixed size */
    max-width: none; /* override global img max-width */
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 28px;
    box-shadow: none;
    object-fit: cover;
    z-index: 1;
}

/* Video used in hero phone mockup */
body .hero video.hero-phone-video {
    display: block;
    width: 325px !important; /* match phone screenshot size */
    max-width: none;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 28px;
    box-shadow: none;
    border: 1px solid #000; /* 1px black border around video */
    object-fit: cover !important;
    z-index: 1;
}


/* Tooltip overlays positioned over the phone image */
.phone-tips {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    display: block;
}
.phone-tip {
    position: absolute;
    pointer-events: none;
    border-radius: 18px;
    padding: 15px;
    background: rgba(255,255,255,0.98);
    color: var(--black);
    box-shadow: 0 18px 40px rgba(13,10,11,0.06);
    font-size: 11px;
    line-height: 1.2;
}
.tip-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}
.tip-avatar i {
    font-size: 16px;
    color: var(--black);
}
.tip-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(13,10,11,0.06);
    flex-shrink: 0;
}
.tip-icon img { height: 15px; width: auto; display: block }
.tip-audio {
    right: 32%;
    top: 15%;
    width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.96); /* match .tip-yes white background */
    border-radius: 16px;
    padding: 10px;
}
.audio-arrow { /* small right arrow to the left of the wave */
    width: 18px;
    height: 18px;
    color: var(--dark-green);
    flex-shrink: 0;
    opacity: 0.95;
}
.audio-wave {
    height: 36px;
    flex: 1;
    border-radius: 12px;
    background: rgba(114,176,29,0.12); /* pale green inner bar */
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
}
.audio-wave::before {
    /* decorative pseudo removed; waveform implemented via .aw-bars */
    display: none;
}

/* left play triangle and dot container */
.audio-wave .aw-left { display:flex; align-items:center; gap:8px; flex-shrink:0; margin-left:6px }
.audio-wave .aw-play { display:block; width:20px; height:20px }
.audio-wave .aw-dot { width:10px; height:10px; background:#0D0A0B; border-radius:50%; display:block }

/* waveform implemented as inline SVG background for precise bars */
.audio-wave .aw-bars {
    flex: 1;
    height: 24px;
    border-radius: 8px;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='24' viewBox='0 0 300 24'>%3Crect x='6' y='7' width='4' height='10' rx='2' fill='%233F7D20'/%3E%3Crect x='18' y='3' width='4' height='18' rx='2' fill='%233F7D20'/%3E%3Crect x='30' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='42' y='5' width='4' height='14' rx='2' fill='%233F7D20'/%3E%3Crect x='54' y='10' width='4' height='4' rx='2' fill='%233F7D20'/%3E%3Crect x='66' y='2' width='4' height='20' rx='2' fill='%233F7D20'/%3E%3Crect x='78' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='90' y='7' width='4' height='10' rx='2' fill='%233F7D20'/%3E%3Crect x='102' y='4' width='4' height='16' rx='2' fill='%233F7D20'/%3E%3Crect x='114' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='126' y='11' width='4' height='2' rx='2' fill='%233F7D20'/%3E%3Crect x='138' y='6' width='4' height='12' rx='2' fill='%233F7D20'/%3E%3Crect x='150' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='162' y='3' width='4' height='18' rx='2' fill='%233F7D20'/%3E%3Crect x='174' y='10' width='4' height='4' rx='2' fill='%233F7D20'/%3E%3Crect x='186' y='7' width='4' height='10' rx='2' fill='%233F7D20'/%3E%3Crect x='198' y='5' width='4' height='14' rx='2' fill='%233F7D20'/%3E%3Crect x='210' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='222' y='2' width='4' height='20' rx='2' fill='%233F7D20'/%3E%3Crect x='234' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='246' y='7' width='4' height='10' rx='2' fill='%233F7D20'/%3E%3Crect x='258' y='4' width='4' height='16' rx='2' fill='%233F7D20'/%3E%3Crect x='270' y='9' width='4' height='6' rx='2' fill='%233F7D20'/%3E%3Crect x='282' y='11' width='4' height='2' rx='2' fill='%233F7D20'/%3E%3C/svg>");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.audio-wave .aw-more { width: 22px; text-align:center; color: rgba(13,10,11,0.6); font-weight:700; flex-shrink:0 }
.tip-invoice {
    left: 30.5%;
    top: 30%;
    width: 240px;
    background: rgba(114, 176, 29, 0.7);
    color: var(--black);
    padding: 15px;
    border-radius: 18px;
    display: flex;
    gap: 12px;
}
.tip-invoice .tip-logo img{ height:36px; width:auto; margin-bottom:10px }
.tip-invoice .tip-title { font-weight:800; font-size:12px; margin-bottom:8px }
.tip-invoice .tip-lines { font-size:12px; color:var(--black); line-height:1.25 }
.tip-yes {
    right: 33%;
    top: 65%;
    transform: translateY(-50%);
    width: 180px;
    text-align: center;
    background: rgba(255,255,255,0.96);
    font-weight:700;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.tip-pdf {
    left: 30.5%;
    bottom: 13%;
    width: 240px;
    background: rgba(114, 176, 29, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
}
.pdf-thumb { background:#ff0000; color:var(--white); border-radius:0; padding:12px 10px; font-weight:800; font-size:11px }
.pdf-label { font-size:12px; color:var(--black); opacity:0.95 }

/* Mobile: overlays centered on top of the phone image (stacked) */
@media (max-width: 640px) {
    .phone-tips { position: absolute; inset: 0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; padding:12px }
    .phone-tip { position: relative; width: min(86%, 360px); left: 50%; transform: translateX(-50%); display:flex; align-items:center; justify-content:center; }
    .tip-invoice, .tip-pdf { width: min(86%, 360px); border-radius: 14px }
    .tip-yes { width: 56%; }
    .audio-wave { height: 28px }
    .audio-wave .aw-play { width:18px; height:18px }
    .audio-wave .aw-dot { width:8px; height:8px }
    .tip-avatar { width: 36px; height: 36px; }
    .tip-yes-text { font-weight:700; font-size:1rem }
    .tip-icon { width: 36px; height: 36px }
    .tip-icon img { height: 18px }
}

/* Outer body — phone chassis */
.ph-outer {
    position: relative;
    background: #1c1c1e;          /* visible as the bezel between border and screen */
    border-radius: 48px;
    border: 1px solid rgba(255,255,255,.32);
    padding: 9px;                 /* this gap IS the bezel */
    box-shadow:
        0 2.8px 2.2px rgba(0,0,0,.034),
        0 6.7px 5.3px rgba(0,0,0,.048),
        0 12.5px 10px rgba(0,0,0,.06),
        0 22.3px 17.9px rgba(0,0,0,.072),
        0 41.8px 33.4px rgba(0,0,0,.086),
        0 100px 80px rgba(0,0,0,.2);
}

/* Physical side buttons */
.ph-silencer {
    position: absolute;
    background: rgba(255,255,255,.55);
    border-radius: 5px;
    width: 3px; height: 18px;
    left: -3px; top: 113px;
    z-index: 1;
}
.ph-vol-up {
    position: absolute;
    background: rgba(255,255,255,.55);
    border-radius: 5px;
    width: 2px; height: 39px;
    left: -2px; top: 153px;
    z-index: 1;
}
.ph-vol-down {
    position: absolute;
    background: rgba(255,255,255,.55);
    border-radius: 5px;
    width: 2px; height: 39px;
    left: -2px; top: 205px;
    z-index: 1;
}
.ph-power {
    position: absolute;
    background: rgba(255,255,255,.55);
    border-radius: 5px;
    width: 3px; height: 62px;
    right: -3px; top: 168px;
    z-index: 1;
}

/* Inner screen clip container — radius shrinks by padding amount */
.ph-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;             /* dark surround visible on sides of camera pill */
}

/* Dynamic island / camera bar */
.ph-camera {
    display: flex;
    justify-content: center;
    position: relative;
    align-self: center;
    width: 106px; height: 28px;
    background: #000;
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
    flex-shrink: 0;
    z-index: 2;
}
.ph-cam-dot {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    width: 7px; height: 7px;
    left: 17px; top: 7px;
}
.ph-cam-dot2 {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    width: 6px; height: 6px;
    opacity: .28;
    filter: blur(1px);
}
.ph-cam-dot3 {
    position: absolute;
    background: #000;
    border-radius: 50%;
    width: 2px; height: 2px;
    opacity: .7;
}
.ph-cam-speaker {
    position: absolute;
    background: #fff;
    width: 40px; height: 1.5px;
    border-radius: 20px;
    top: -4px;
    opacity: .18;
}

/* Home indicator */
.ph-home-bar {
    position: absolute;
    bottom: 6px;
    left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
}

.phone-screen {
    background: #f0ede8;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 555px;
}

.chat-header {
    background: #075e54;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.chat-avatar {
    width: 34px; height: 34px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.chat-name { font-size: 0.85rem; font-weight: 600; color: #fff; flex: 1; }
.chat-status { font-size: 0.7rem; color: rgba(255,255,255,.6); }

.chat-body {
    flex: 1;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #e5ddd5;
}

.msg { display: flex; flex-direction: column; max-width: 85%; }
.msg-out { align-self: flex-end; align-items: flex-end; }
.msg-in  { align-self: flex-start; align-items: flex-start; }
.msg-time { font-size: 0.6rem; color: var(--muted); margin-top: 2px; }

.voice-note {
    background: var(--green);
    border-radius: 16px 4px 16px 16px;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}
.voice-note svg { width: 18px; height: 18px; flex-shrink: 0; }

.voice-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 24px;
}
.voice-bars span {
    display: block;
    width: 3px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: bar 1.2s ease-in-out infinite;
}
.voice-bars span:nth-child(1)  { height: 8px;  animation-delay: 0s; }
.voice-bars span:nth-child(2)  { height: 16px; animation-delay: .1s; }
.voice-bars span:nth-child(3)  { height: 10px; animation-delay: .2s; }
.voice-bars span:nth-child(4)  { height: 20px; animation-delay: .3s; }
.voice-bars span:nth-child(5)  { height: 12px; animation-delay: .4s; }
.voice-bars span:nth-child(6)  { height: 18px; animation-delay: .5s; }
.voice-bars span:nth-child(7)  { height: 8px;  animation-delay: .6s; }
.voice-bars span:nth-child(8)  { height: 14px; animation-delay: .7s; }
.voice-bars span:nth-child(9)  { height: 20px; animation-delay: .8s; }
.voice-bars span:nth-child(10) { height: 10px; animation-delay: .9s; }

@keyframes bar {
    0%, 100% { opacity: .5; transform: scaleY(.7); }
    50%       { opacity: 1;  transform: scaleY(1); }
}
.voice-time { font-size: 0.7rem; color: rgba(255,255,255,.8); white-space: nowrap; }

.invoice-preview {
    background: #fff;
    border-radius: 4px 16px 16px 16px;
    padding: 0.85rem 0.9rem;
    min-width: 190px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.inv-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}
.inv-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--green);
    text-transform: uppercase;
}
.inv-num { font-size: 0.7rem; font-weight: 600; color: var(--muted); }
.inv-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--grey);
    margin-bottom: 0.3rem;
}
.inv-divider { border-top: 1px solid var(--border); margin: 0.4rem 0; }
.inv-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
}
.inv-btn {
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    padding: 0.35rem 0.6rem;
    border-radius: 100px;
    cursor: pointer;
}

/* ─── HOW IT WORKS ─── */
.how {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.how-eyebrow {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.6rem;
}

.how-sub {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
}

.steps {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
}

.step {
    flex: 1;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem;
}

.step-icon {
    width: 64px; height: 64px;
    background: rgba(114,176,29,.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.step-icon svg { width: 28px; height: 28px; color: var(--green); }

.step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.55rem;
    line-height: 1.35;
}
.step p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
}

.step-arrow {
    padding-top: 22px;
    flex-shrink: 0;
    opacity: .3;
}
.step-arrow svg { width: 22px; height: 22px; color: var(--grey); }

/* ─── BOTTOM CTA BAND ─── */
.cta-band {
    background: var(--black);
    padding: 6rem 2rem;
    text-align: center;
}
.cta-band-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}
.cta-band .cta-logo {
    display: inline-block;
    height: 56px;
    width: auto;
    margin-bottom: 0.65rem;
    filter: invert(1) brightness(1.4);
}
.cta-band-sub {
    font-size: 1rem;
    color: rgba(243,239,245,.55);
    margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(243,239,245,.06);
    padding: 2rem;
}
.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer-logo img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-size: 0.83rem;
    color: rgba(243,239,245,.45);
    transition: color .18s;
}
.footer-links a:hover { color: var(--light); }

.footer-copy {
    font-size: 0.75rem;
    color: rgba(243,239,245,.22);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
    .hero-inner { gap: 3rem; }
}

@media (max-width: 640px) {
    .hero { padding: 0 1.25rem 0; }
    .hero-inner { flex-direction: column; align-items: center; text-align: center; }
    .hero-content { padding-bottom: 0; }
    .hero-content p { max-width: 100%; margin: 0 auto 2rem; }
    .hero-content h1 { font-size: 42px; }

    .how { padding: 4.5rem 1.25rem; }
    .steps { flex-direction: column; align-items: center; gap: 2rem; }
    .step { max-width: 100%; padding: 0; }
    .step-arrow { display: none; }

    .cta-band { padding: 4rem 1.25rem; }
    .cta-band .cta-logo { height: 44px; }
    h2 { font-size: 22px; }

    .btn-cta {margin-bottom: 10px;}
    .hero-inner { gap: 0; }
}
