:root {
    --g: #25D366;
    --g2: #128C7E;
    --glow: rgba(37, 211, 102, 0.18);
    --dark: #0a0f0d;
    --dark2: #111810;
    --card: #131a14;
    --border: rgba(37, 211, 102, 0.15);
    --text: #e8f0ea;
    --muted: #7a9680;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 5%;
    background: rgba(10, 15, 13, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span {
    color: var(--g);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    transition: color .2s;
    letter-spacing: .3px;
}

.nav-links a:hover {
    color: var(--g);
}

.nav-cta {
    background: var(--g);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    letter-spacing: .3px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #1fbe58;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 13, 0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.mobile-menu a:hover {
    color: var(--g);
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(37, 211, 102, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(18, 140, 126, 0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.06;
    background-image: linear-gradient(var(--g) 1px, transparent 1px),
        linear-gradient(90deg, var(--g) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--border);
    color: var(--g);
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    animation: fadeUp .6s ease both;
}

.hero-badge::before {
    content: '●';
    font-size: .5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

h1.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.6rem;
    animation: fadeUp .6s .1s ease both;
}

h1.hero-title em {
    color: var(--g);
    font-style: normal;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 2.8rem;
    font-weight: 300;
    animation: fadeUp .6s .2s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s ease both;
}

.btn-primary {
    background: var(--g);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-primary:hover {
    background: #1fbe58;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-outline:hover {
    border-color: var(--g);
    color: var(--g);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    animation: fadeUp .6s .4s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--g);
    display: block;
}

.stat-label {
    font-size: .82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: rgba(37, 211, 102, 0.06);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 1.1rem 0;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.marquee-track span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.marquee-track span::before {
    content: '✦';
    color: var(--g);
    font-size: .6rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS ── */
section {
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--border);
    color: var(--g);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title em {
    color: var(--g);
    font-style: normal;
}

.section-sub {
    color: var(--muted);
    max-width: 520px;
    font-size: 1.05rem;
    font-weight: 300;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── SERVICES ── */
#services {
    padding: 6rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-sub {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem;
    transition: all .3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--g), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    border: 1px solid var(--border);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .7rem;
}

.service-card p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* ── HOW IT WORKS ── */
#how {
    padding: 6rem 0;
    background: var(--dark2);
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all .3s;
}

.step:hover {
    background: var(--card);
    border-color: var(--border);
}

.step-num {
    min-width: 44px;
    height: 44px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--g);
    font-size: 1rem;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: .35rem;
}

.step p {
    color: var(--muted);
    font-size: .92rem;
}

.how-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    padding: .9rem 1.2rem;
    border-radius: 12px;
    max-width: 82%;
    font-size: .9rem;
    line-height: 1.5;
}

.chat-bubble.bot {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid var(--border);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: var(--g);
    color: #000;
    font-weight: 500;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.bot strong {
    color: var(--g);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: .5rem;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chat-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
}

.chat-status {
    font-size: .75rem;
    color: var(--g);
}

/* ── WHY US ── */
#why {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-check {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--g);
    font-size: .85rem;
    margin-top: .1rem;
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem;
}

.why-item p {
    color: var(--muted);
    font-size: .9rem;
}

.metrics-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-val {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--g);
    display: block;
}

.metric-label {
    color: var(--muted);
    font-size: .82rem;
    text-align: center;
}

.metric-divider {
    grid-column: 1/-1;
    height: 1px;
    background: var(--border);
}

/* ── INDUSTRIES ── */
#industries {
    padding: 6rem 0;
    background: var(--dark2);
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-header .section-sub {
    margin: 0 auto;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.ind-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all .3s;
    cursor: default;
}

.ind-card:hover {
    border-color: rgba(37, 211, 102, .4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

.ind-icon {
    font-size: 2rem;
    margin-bottom: .7rem;
    display: block;
}

.ind-card span {
    font-size: .88rem;
    color: var(--muted);
    font-weight: 500;
    display: block;
}

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 6rem 0;
}

.test-header {
    text-align: center;
    margin-bottom: 4rem;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.test-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.test-stars {
    color: var(--g);
    font-size: .9rem;
    letter-spacing: 2px;
}

.test-text {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.75;
    font-weight: 300;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: auto;
}

.test-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .15);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--g);
    font-size: 1rem;
}

.test-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--white);
}

.test-role {
    font-size: .8rem;
    color: var(--muted);
}

/* ── PRICING ── */
#pricing {
    padding: 6rem 0;
    background: var(--dark2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    transition: all .3s;
}

.pricing-card.featured {
    border-color: var(--g);
    background: linear-gradient(160deg, rgba(37, 211, 102, .07) 0%, var(--card) 100%);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--g);
    color: #000;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: .3rem 1.2rem;
    border-radius: 0 0 8px 8px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.plan-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
}

.plan-price sup {
    font-size: 1.2rem;
    color: var(--muted);
    vertical-align: top;
    margin-top: .5rem;
    display: inline-block;
}

.plan-price small {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.plan-desc {
    color: var(--muted);
    font-size: .9rem;
}

.plan-divider {
    height: 1px;
    background: var(--border);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--muted);
    list-style: none;
}

.plan-features li::before {
    content: '✓';
    color: var(--g);
    font-weight: 700;
    flex-shrink: 0;
}

.plan-features li.no::before {
    content: '✕';
    color: #444;
}

.plan-features li.no {
    opacity: .5;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: .85rem;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .25s;
    margin-top: auto;
    cursor: pointer;
    border: none;
}

.plan-btn.solid {
    background: var(--g);
    color: #000;
}

.plan-btn.solid:hover {
    background: #1fbe58;
    box-shadow: 0 6px 20px var(--glow);
}

.plan-btn.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.plan-btn.ghost:hover {
    border-color: var(--g);
    color: var(--g);
}

/* ── FAQ ── */
#faq {
    padding: 6rem 0;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: var(--card);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--g);
}

.faq-q .icon {
    transition: transform .3s;
    color: var(--muted);
    font-size: 1.2rem;
    font-style: normal;
}

.faq-q.open .icon {
    transform: rotate(45deg);
    color: var(--g);
}

.faq-a {
    background: var(--card);
    padding: 0 1.5rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
}

.faq-a.open {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem;
}

/* ── CTA ── */
#cta {
    padding: 6rem 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    border-top: 1px solid var(--border);
}

.cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.cta-inner p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.cta-form {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-input {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .85rem 1.3rem;
    border-radius: 50px;
    font-size: .95rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color .2s;
}

.cta-input:focus {
    border-color: var(--g);
}

.cta-input::placeholder {
    color: var(--muted);
}

/* ── FOOTER ── */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: .9rem;
    margin-top: .8rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 1.2rem;
    letter-spacing: .5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--g);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--muted);
    font-size: .82rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .85rem;
    text-decoration: none;
    transition: all .2s;
}

.social-link:hover {
    border-color: var(--g);
    color: var(--g);
    background: rgba(37, 211, 102, .08);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px var(--glow);
    transition: all .25s;
    animation: floatIn .5s 1s ease both;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px var(--glow);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .how-inner,
    .why-grid,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media(max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .metrics-card {
        grid-template-columns: 1fr;
    }

    .metric-divider {
        display: none;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-input {
        max-width: 100%;
    }

    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
