/* =============================================
   LAYERRA — Main Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 0; }

:root {
    --blue: #1900FF;
    --ink: #070420;
    --muted: #66636f;
    --soft: #f7f7f9;
    --line: #ececf2;
    --whatsapp: #25D366;
    --cream: #fdf8f4;
}

body {
    font-family: 'Switzer', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    color: var(--ink);
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; color: #070420;
}
.logo-img { height: 35px; width: auto; }
.logo-word {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.7px;
    color: #070420;
    display: none;
}

.nav-pill {
    display: flex; align-items: center; gap: 12px;
    background: rgba(240, 240, 240, 0.82);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 40px; padding: 8px 10px 8px 18px;
}
.nav-pill span {
    font-size: 13px; font-weight: 500; color: #565656;
    white-space: nowrap;
}

.contact-btn {
    font-family: 'Switzer', sans-serif;
    font-size: 13.5px; font-weight: 600; color: #fff;
    background: #1900FF; border: none; border-radius: 40px;
    padding: 11px 22px; cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25,0,255,0.2);
}

/* =============================================
   HERO
   ============================================= */
.hero-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg,
        #ffffff   0%,
        #dcdaf0  44%,
        #b7b0eb  64%,
        #5647b8  80%,
        #0c063e 100%
    );
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, 205px);
    grid-auto-rows: 100px;
    gap: 10px;
    padding: 5px;
    overflow: hidden;
}
.hero-grid span {
    display: block;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

#hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 104px;
    padding-bottom: 40px;
}

#heroInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    width: 100%;
    transform: scale(1);
    transform-origin: center top;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

#heroInner.hero-compact { transform: scale(0.9); }

.hero-title {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -4px;
    color: #3d3d3d;
    max-width: 920px;
    margin-bottom: 20px;
}
.hero-title .blue { color: #1900FF; }

.hero-sub {
    font-size: 16px; font-weight: 400;
    line-height: 1.65; color: #545454;
    max-width: 520px; margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.hero-proof {
    font-size: 12px;
    color: rgba(7,4,32,0.54);
    background: rgba(255,255,255,0.52);
    border: 1px solid rgba(255,255,255,0.7);
    padding: 10px 16px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

/* =============================================
   SHOWCASE (DESKTOP)
   ============================================= */
.showcase-wrap {
    width: 100%;
    max-width: 640px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 30px;
}

.showcase-card {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 0 0 1px rgba(160, 148, 220, 0.25),
        0 24px 64px -12px rgba(20, 10, 80, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.5);
    height: 292px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.98), rgba(255,255,255,0.66) 26%, transparent 46%),
        linear-gradient(135deg, rgba(255,255,255,0.64), rgba(25,0,255,0.16)),
        #f2f1ff;
}

.showcase-wrap .watch-label {
    margin-top: 10px; color: #fff; font-size: 0.9em;
}

/* Sequence animations */
@keyframes showSearch {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes typeText {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes showResult {
    0% { opacity: 0; height: 0; padding-top: 0; }
    100% { opacity: 1; height: 75px; padding-top: 12px; }
}
@keyframes showBrowser {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes showEnquiry {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.search-card {
    position: absolute; right: 38px; top: 58px; width: 236px;
    border-radius: 17px; background: rgba(255,255,255,0.74);
    backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 16px 42px rgba(21,10,80,0.16); padding: 17px; text-align: left;
    opacity: 0; animation: showSearch 0.8s forwards 0.5s;
}
.search-box strong {
    display: inline-block; overflow: hidden; white-space: nowrap;
    width: 0; animation: typeText 1s steps(20) forwards 1.2s;
}
.search-result {
    overflow: hidden; opacity: 0; border-top: 1px solid rgba(7,4,32,0.06);
    animation: showResult 0.6s forwards 2.4s;
}

.mini-browser {
    position: absolute; left: 42px; top: 38px; width: 318px; height: 188px;
    border-radius: 18px; background: rgba(255,255,255,0.86);
    backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.84);
    box-shadow: 0 22px 50px rgba(21,10,80,0.18); overflow: hidden; text-align: left;
    opacity: 0; animation: showBrowser 0.8s forwards 3.5s;
}

.enquiry-card {
    position: absolute; right: 76px; bottom: 36px; width: 245px;
    border-radius: 18px; background: #101010; color: #fff;
    border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 48px rgba(0,0,0,0.22);
    padding: 16px 17px; text-align: left;
    opacity: 0; animation: showEnquiry 0.6s forwards 4.8s;
}

.browser-top {
    height: 34px; display: flex; align-items: center; gap: 6px;
    padding: 0 13px; border-bottom: 1px solid rgba(7,4,32,0.06);
}
.dot { width: 7px; height: 7px; border-radius: 999px; background: #d9d7e8; }
.browser-body { padding: 20px 22px; }
.browser-kicker {
    font-size: 9px; text-transform: uppercase; letter-spacing: .12em;
    font-weight: 400; color: var(--blue); margin-bottom: 12px;
}
.browser-title {
    font-size: 28px; line-height: .95; letter-spacing: -1.5px;
    font-weight: 400; color: #111; margin-bottom: 18px;
}
.browser-lines span {
    display: block; height: 8px; border-radius: 999px;
    background: #e8e7f4; margin-bottom: 8px;
}
.browser-lines span:nth-child(1) { width: 82% }
.browser-lines span:nth-child(2) { width: 58% }

.search-label { font-size: 10px; color: #76728e; margin-bottom: 9px; font-weight: 600; }
.search-box {
    display: flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid rgba(7,4,32,0.08);
    border-radius: 999px; padding: 10px 12px; color: #111;
    font-size: 12px; box-shadow: 0 10px 24px rgba(7,4,32,0.06);
}
.result-title { font-size: 13px; font-weight: 600; color: #130a52; margin-bottom: 4px; }
.result-url { font-size: 10px; color: #0a8f4c; margin-bottom: 7px; }
.result-copy { font-size: 11px; color: #666; line-height: 1.35; }

.enquiry-card .small {
    font-size: 10px; color: rgba(255,255,255,0.52); margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.enquiry-card .lead { font-size: 15px; font-weight: 600; letter-spacing: -.25px; margin-bottom: 8px; }
.enquiry-card .copy { font-size: 11px; color: rgba(255,255,255,0.62); line-height: 1.4; }

.orbit-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: 0.52;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-tag {
    display: inline-block; font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #a0a0aa; margin-bottom: 24px;
    background: none; padding: 0;
}

.section-heading {
    font-size: 56px; font-weight: 400; letter-spacing: -3.5px;
    line-height: 1.05; color: #070420; max-width: 800px; margin-bottom: 28px;
}

.section-intro {
    font-size: 18px; line-height: 1.6; color: var(--muted);
    max-width: 600px; margin-bottom: 80px;
}

/* =============================================
   FEATURES
   ============================================= */
#features {
    position: relative;
    background: #ffffff;
    padding: 140px 60px 160px;
    overflow: hidden;
}
.gap-bg-visual {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.4;
}
.gap-line {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent, var(--line), transparent);
    transform: translateX(-50%);
}
.feat-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

.interactive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1000px;
}

.reveal-card {
    background: #fbfbfd;
    border: 1px solid #ececf2;
    border-radius: 28px;
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reveal-card:hover {
    background: #ffffff;
    border-color: #d1d1e0;
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(7, 4, 32, 0.04),
        0 40px 80px rgba(7, 4, 32, 0.03);
}
.interactive-grid:hover .reveal-card:not(:hover) {
    opacity: 0.7;
    filter: none;
    transform: scale(0.98);
}

.card-icon-wrap {
    width: 48px; height: 48px; margin-bottom: 32px;
    display: flex; align-items: center; justify-content: center;
}
.card-icon-wrap svg { opacity: 0.8; }
.card-title { font-size: 24px; font-weight: 400; letter-spacing: -1px; color: #070420; margin-bottom: 16px; }
.card-desc { font-size: 15px; line-height: 1.7; color: var(--muted); font-weight: 400; margin-bottom: 32px; }

.card-proof {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: auto;
}
.proof-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 16px;
}
.proof-author { display: flex; align-items: center; gap: 10px; }
.author-info p:first-child { font-size: 12px; font-weight: 600; }
.author-info p:last-child { font-size: 11px; color: var(--muted); }

.card-accent-line {
    position: absolute; bottom: 0; left: 0; width: 0%; height: 3px;
    background: var(--blue);
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-card:hover .card-accent-line { width: 100%; }

/* =============================================
   WHY WHATSAPP
   ============================================= */
#why-whatsapp {
    padding: 120px 60px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.ww-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 80px; align-items: center;
}

.ww-image-wrap { position: relative; }
.ww-image {
    width: 100%; aspect-ratio: 1.2;
    background: #e6e0da; border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(7,4,32,0.1);
    object-fit: cover;
}

.ww-accordion { margin-top: 40px; }
.ww-item { border-bottom: 1px solid rgba(7,4,32,0.08); padding: 28px 0; cursor: pointer; }
.ww-header { display: flex; justify-content: space-between; align-items: center; }
.ww-header h3 { font-size: 22px; font-weight: 400; letter-spacing: -0.5px; }
.ww-toggle { color: var(--whatsapp); font-size: 24px; font-weight: 300; transition: transform 0.3s; }
.ww-content { height: 0; overflow: hidden; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.ww-content p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-top: 16px; max-width: 440px; }

.ww-item.active .ww-content { height: auto; padding-bottom: 10px; }
.ww-item.active .ww-toggle { transform: rotate(45deg); color: #ff4d4d; }

/* =============================================
   PRICING
   ============================================= */
#pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
    padding: 140px 60px 160px;
    overflow: hidden;
    position: relative;
}
.pricing-shell {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.pricing-copy { padding-right: 40px; }
.pricing-card-shell { perspective: 1000px; }
.pricing-card {
    position: relative;
    background: linear-gradient(145deg, #0b0730 0%, #11085c 55%, #1900ff 140%);
    color: #fff; border-radius: 38px; padding: 64px 54px;
    box-shadow: 0 40px 100px rgba(7, 4, 32, 0.22);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d; overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px) rotateX(1deg);
    box-shadow: 0 60px 130px rgba(7, 4, 32, 0.28);
}
.card-glow {
    position: absolute; top: -150px; right: -150px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(25, 0, 255, 0.5) 0%, transparent 70%);
    filter: blur(20px); pointer-events: none; opacity: 0.8;
}
.launch-tag {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
    font-weight: 600; color: rgba(255, 255, 255, 0.5); margin-bottom: 24px; display: block;
}
.pricing-card-title { font-size: 32px; font-weight: 400; letter-spacing: -1.5px; margin-bottom: 12px; }
.pricing-card-desc { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 34px; line-height: 1.6; }
.price-row { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 34px; }
.price { font-size: 64px; font-weight: 400; letter-spacing: -3.5px; line-height: 0.9; }
.gst { font-size: 14px; color: rgba(255, 255, 255, 0.4); margin-bottom: 6px; }
.includes-list { list-style: none; display: grid; gap: 16px; margin-bottom: 48px; }
.includes-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: rgba(255, 255, 255, 0.8); line-height: 1.4;
}
.check-icon {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: grid; place-items: center; font-size: 9px; font-weight: 600;
    flex-shrink: 0;
}
.light-btn {
    background: #ffffff; color: var(--ink);
    width: 100%; justify-content: center; padding: 18px 24px; font-size: 15px;
}

/* =============================================
   FINAL CTA
   ============================================= */
#cta-final {
    padding: 160px 24px 180px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(25, 0, 255, 0.035), transparent 70%);
    position: relative;
}
.cta-box { max-width: 800px; margin: 0 auto; position: relative; }
.cta-box h2 {
    font-size: 68px; font-weight: 400; letter-spacing: -4px;
    margin-bottom: 28px; line-height: 1.05; color: #070420;
}
.cta-icon-wrap {
    width: 120px; height: 120px; margin: 0 auto 32px;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.cta-svg-bridge { width: 100%; height: 100%; }
@keyframes draw-line {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}
.animate-bridge { stroke-dasharray: 50; animation: draw-line 4s linear infinite; }

.dual-cta {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 48px;
}
.email-btn {
    background: #fff; color: var(--ink);
    border: 1px solid var(--line); padding: 22px 48px;
    border-radius: 40px; font-size: 16px; font-weight: 600;
    text-decoration: none; transition: all 0.25s;
}

/* =============================================
   FOOTER
   ============================================= */
footer { background: #070420; color: #fff; padding: 40px 60px; }
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.footer-brand { font-weight: 600; letter-spacing: -0.4px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].active { opacity: 1; transform: translateY(0); }

/* =============================================
   FLOAT CTA (WhatsApp)
   ============================================= */
.float-cta {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    background: var(--whatsapp); border-radius: 14px;
    padding: 10px 18px 10px 10px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: #fff;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.float-cta-icon {
    width: 34px; height: 34px; background: #fff;
    border-radius: 8px; display: grid; place-items: center;
}

/* =============================================
   TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .interactive-grid { grid-template-columns: repeat(2, 1fr); }
    .ww-inner { gap: 48px; }
    .pricing-shell { gap: 40px; }
}

/* =============================================
   MOBILE (≤ 768px) — PREMIUM REDESIGN
   ============================================= */
@media (max-width: 768px) {

    /* -- Header -- */
    header {
        padding: 16px 20px;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-pill {
        padding: 6px 8px 6px 14px;
        gap: 8px;
    }
    .nav-pill span { display: none; }
    .contact-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* -- Hero -- */
    .hero-shell {
        min-height: unset;
        height: auto;
    }

    #hero {
        padding-top: 88px;
        padding-bottom: 60px;
        min-height: unset;
    }

    #heroInner { padding: 0 20px; }
    #heroInner.hero-compact { transform: scale(0.97); }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
        line-height: 1.12;
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        color: #4a4a5a;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 28px;
        width: 100%;
        max-width: 340px;
    }

    .hero-actions .contact-btn {
        padding: 16px 24px;
        font-size: 15px;
        justify-content: center;
        border-radius: 16px;
    }

    .hero-proof {
        font-size: 12px;
        padding: 10px 16px;
        text-align: center;
    }

    /* -- Showcase: scale desktop card down to fit mobile -- */
    .showcase-wrap {
        max-width: 100%;
        padding: 6px;
        overflow: hidden;
    }

    .showcase-card {
        zoom: 0.55;
    }

    .showcase-wrap .watch-label {
        font-size: 12px;
        margin-top: 14px;
        opacity: 0.85;
        letter-spacing: 0.01em;
    }

    /* -- Features -- */
    #features {
        padding: 80px 20px 100px;
    }

    .section-heading {
        font-size: 34px;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 48px;
        line-height: 1.65;
    }

    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reveal-card {
        padding: 32px 28px;
        border-radius: 24px;
    }

    .reveal-card:hover {
        transform: none;
    }

    .interactive-grid:hover .reveal-card:not(:hover) {
        opacity: 1;
        transform: none;
    }

    .card-title { font-size: 22px; }
    .card-desc { font-size: 14px; margin-bottom: 24px; }
    .proof-quote { font-size: 13.5px; }

    /* -- Why WhatsApp -- */
    #why-whatsapp {
        padding: 80px 20px;
    }

    .ww-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ww-image { aspect-ratio: 4/3; border-radius: 24px; }
    .ww-header h3 { font-size: 18px; }
    .ww-accordion { margin-top: 0; }
    .ww-item { padding: 22px 0; }

    /* -- Pricing -- */
    #pricing {
        padding: 80px 20px 100px;
    }

    .pricing-shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pricing-copy { padding-right: 0; }

    .pricing-card {
        padding: 40px 32px;
        border-radius: 28px;
    }

    .price { font-size: 52px; letter-spacing: -2.5px; }
    .pricing-card-title { font-size: 26px; }
    .includes-list { gap: 14px; margin-bottom: 36px; }
    .includes-list li { font-size: 14px; }

    /* -- CTA Final -- */
    #cta-final {
        padding: 100px 20px 120px;
    }

    .cta-box h2 {
        font-size: 36px;
        letter-spacing: -2px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .cta-icon-wrap { width: 80px; height: 80px; margin-bottom: 24px; }

    #cta-final p {
        font-size: 16px !important;
        margin-bottom: 36px !important;
    }

    .dual-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 32px;
    }

    .dual-cta .contact-btn,
    .email-btn {
        padding: 18px 24px;
        font-size: 15px;
        text-align: center;
        justify-content: center;
        border-radius: 16px;
    }

    /* -- Footer -- */
    footer { padding: 32px 20px; }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* -- Float WhatsApp CTA -- */
    .float-cta {
        bottom: 20px;
        right: 16px;
        border-radius: 16px;
        padding: 12px 20px 12px 12px;
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    }

    .float-cta-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

/* =============================================
   SMALL PHONES (≤ 380px)
   ============================================= */
@media (max-width: 380px) {
    .hero-title {
        font-size: 33px;
        letter-spacing: -1.8px;
    }

    .section-heading {
        font-size: 30px;
        letter-spacing: -1.2px;
    }

    .cta-box h2 {
        font-size: 30px;
        letter-spacing: -1.5px;
    }

    .showcase-card {
        zoom: 0.50;
    }
}
