﻿/* ============================================================
    DESIGN TOKENS — dark theme (default)
============================================================ */
:root,
[data-theme="dark"] {
    --lime:        #2dd4bf;
    --lime-glow:   rgba(45, 212, 191, 0.20);
    --lime-dark:   #14b8a6;

    --bg:          #0e0e0e;
    --bg-alt:      #111111;
    --bg-card:     #1a1a1a;
    --bg-card2:    #1f1f1f;

    --border:      #252525;
    --border-mid:  #2e2e2e;

    --text:        #f0f0f0;
    --text-muted:  #888888;
    --text-faint:  #444444;

    --nav-bg:      rgba(14, 14, 14, 0.88);
    --ticker-bg:   #0b0b0b;

    --shadow-card: 0 2px 24px rgba(0,0,0,0.45);
    --shadow-phone:0 40px 80px rgba(0,0,0,0.65), 0 0 60px rgba(45,212,191,0.08);

    --blob1-opacity: 0.16;
    --blob2-opacity: 0.10;

    --pricing-featured-text: #0e0e0e;
    --pricing-featured-sub:  #0f3330;
    --pricing-featured-btn-bg: #0e0e0e;
    --pricing-featured-btn-color: #2dd4bf;

    --phone-border:  #2a2a2a;
    --phone-body:    #141414;
    --phone-notch:   #222222;
    --app-block-bg:  #1c1c1c;
    --btn-lime:      #0e0e0e;
    --brand-mark:    #ffffff;
}

/* ============================================================
    DESIGN TOKENS — light theme
============================================================ */
[data-theme="light"] {
    --lime:        #009688;
    --lime-glow:   rgba(0, 150, 136, 0.18);
    --lime-dark:   #00796b;

    --bg:          #f4f3ee;
    --bg-alt:      #eceae3;
    --bg-card:     #ffffff;
    --bg-card2:    #fafaf6;

    --border:      #dddbd3;
    --border-mid:  #ccc9c0;

    --text:        #111111;
    --text-muted:  #666666;
    --text-faint:  #aaa8a0;

    --nav-bg:      rgba(244, 243, 238, 0.90);
    --ticker-bg:   #e5e3db;

    --shadow-card: 0 2px 24px rgba(0,0,0,0.07);
    --shadow-phone:0 40px 80px rgba(0,0,0,0.13), 0 0 60px rgba(0,150,136,0.10);

    --blob1-opacity: 0.20;
    --blob2-opacity: 0.10;

    --pricing-featured-text: #ffffff;
    --pricing-featured-sub:  rgba(255,255,255,0.80);
    --pricing-featured-btn-bg: #fff;
    --pricing-featured-btn-color: #009688;

    --phone-border:  #d0cec7;
    --phone-body:    #eeede8;
    --phone-notch:   #d0cec7;
    --app-block-bg:  #e6e4dc;
    --btn-lime:      #fff;
    --brand-mark:    #009688;
}

/* ============================================================
    RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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.9' 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");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .font-display { font-family: 'Outfit', sans-serif; }

/* ============================================================
    LAYOUT
============================================================ */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }

.section-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

/* ============================================================
    UTILITIES
============================================================ */
.lime  { color: var(--lime); }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-mid);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.pill .dot {
    width: 7px; height: 7px;
    border-radius: 9999px;
    background: var(--lime);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ============================================================
    BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 9999px;
    padding: 13px 30px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-lime {
    background: var(--lime);
    color: var(--btn-lime);
}
.btn-lime:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px var(--lime-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-mid);
}
.btn-outline:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* ============================================================
    THEME TOGGLE
============================================================ */
.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label {
    font-size: 14px;
    user-select: none;
    transition: opacity 0.3s;
}

.theme-toggle {
    position: relative;
    width: 50px; height: 28px;
    border-radius: 9999px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.4s ease, border-color 0.4s ease;
    appearance: none;
    -webkit-appearance: none;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 18px; height: 18px;
    border-radius: 9999px;
    background: var(--text-muted);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.35s ease;
}

[data-theme="light"] .theme-toggle::after {
    transform: translateX(22px);
    background: var(--lime);
}

/* ============================================================
    NAV
============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

[data-theme="light"] .nav-logo {
    color: var(--brand-mark);
}

.nav-logo-mark {
    display: block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-label {
    font-size: 13px;
    color: var(--text-muted);
}

.lang-select {
    height: 32px;
    border-radius: 9999px;
    border: 1px solid var(--border-mid);
    background: var(--bg-card);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0 12px;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

@media (max-width: 780px) {
    .nav-links { display: none; }
    .nav-inner { padding: 0 20px; }
    .lang-label { display: none; }
}

/* ============================================================
    BLOB
============================================================ */
.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(100px);
    pointer-events: none;
    transition: opacity 0.5s;
}

/* ============================================================
    HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-animal {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: clamp(840px, 26vw, 720px);
    height: auto;
    z-index: 4;
    pointer-events: none;
    user-select: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-sub  { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .avatars   { justify-content: center; }
    .hero-phone-wrap { display: flex; justify-content: center; }
    .hero-animal {
        right: 8px;
        bottom: 10px;
        width: clamp(140px, 34vw, 220px);
    }
}

.hero-title {
    font-size: clamp(44px, 6vw, 64px);
    font-weight: 800;
    /* line-height: 1.05; */
    letter-spacing: -0.03em;
    margin: 24px 0 24px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.avatars {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-stack { display: flex; }

.avatar {
    width: 36px; height: 36px;
    border-radius: 9999px;
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-left: -8px;
    transition: border-color 0.4s ease;
}
.avatar:first-child { margin-left: 0; }

.avatar-stars { color: var(--lime); font-size: 13px; }
.avatar-text  { font-size: 11px; color: var(--text-muted); }

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: var(--border-mid);
    animation: bounce-y 1.6s ease-in-out infinite;
}
@keyframes bounce-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
    PHONE MOCKUP
============================================================ */
.phone-wrap { 
    position: relative; 
    /* display: inline-block;  */
     display: flex;
    justify-content: center;
}

.phone-glow {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 9999px;
    background: var(--lime);
    opacity: var(--blob1-opacity);
    filter: blur(90px);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    transition: opacity 0.5s;
}

.phone {
    width: 300px; height: 640px;
    border-radius: 40px;
    border: 2px solid var(--phone-border);
    background: #009688;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 8px var(--bg-card), var(--shadow-phone);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.phone::before {
    content: '';
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 58px; height: 6px;
    background: var(--phone-notch);
    border-radius: 9999px;
    z-index: 5;
    transition: background 0.4s ease;
}

.phone-screen {
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    overflow: hidden;
}

.app-block {
    background: var(--app-block-bg);
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.app-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 7px;
}

.app-row { display: flex; align-items: center; gap: 8px; }
.app-dot { width: 8px; height: 8px; border-radius: 9999px; flex-shrink: 0; }

.app-task { font-size: 11px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.app-check { margin-left: auto; font-size: 9px; color: var(--lime); }

.progress-bg {
    height: 4px;
    background: var(--border-mid);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 6px;
    transition: background 0.4s ease;
}
.progress-fill { height: 100%; border-radius: 9999px; }

/* floating badges */
.phone-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: 14px;
    padding: 10px 16px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: var(--shadow-card);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.badge-label { font-size: 10px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.badge-val   { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; }

/* ============================================================
    TICKER
============================================================ */
.ticker {
    background: var(--ticker-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-move 24s linear infinite;
}

.ticker-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-right: 0;
}

.ticker-sep { color: var(--lime); margin: 0 20px; }

@keyframes ticker-move {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
    SECTION HEADER
============================================================ */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .pill { margin: 0 auto 14px; }

.section-title {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 14px;
}

/* ============================================================
    FEATURES
============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

.features-col { display: flex; flex-direction: column; gap: 16px; }

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    transition: border-color 0.3s, transform 0.3s, background 0.4s ease, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
}
.feature-card:hover {
    border-color: var(--border-mid);
    transform: translateY(-3px);
}

.feature-icon  { font-size: 32px; margin-bottom: 16px; }
.feature-title { font-family: 'Outfit',sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-desc  { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 24px;
}
.f-stat-num { font-family: 'Outfit',sans-serif; font-weight: 800; font-size: 30px; color: var(--lime); }
.f-stat-lbl { font-size: 11px; color: var(--text-faint); margin-top: 2px; }

/* ============================================================
    STEPS / HOW IT WORKS
============================================================ */
.steps { display: flex; flex-direction: column; }

.step {
    position: relative;
    padding: 0 0 48px 80px;
    border-left: 1px solid var(--border);
    margin-left: 14px;
    transition: border-color 0.4s ease;
}
.step:last-child { padding-bottom: 0; border-left-color: transparent; }

.step-num {
    position: absolute;
    top: 0;
    left: 0;

    transform: translate(-50%, 0); /* 👈 corrige o alinhamento */

    width: 48px;
    height: 48px;
    border-radius: 9999px;

    display: flex;                /* 👇 centraliza o número dentro do círculo */
    align-items: center;
    justify-content: center;

    background: var(--lime);
    color: #0e0e0e;

    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700; }
    
.step-desc  { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 500px; }

/* ============================================================
    TESTIMONIALS
============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.testi-stars { color: var(--lime); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text  { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 38px; height: 38px;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.testi-name { font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 14px; }
.testi-role { font-size: 11px; color: var(--text-faint); }

/* ============================================================
    PRICING
============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 36px 32px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.pricing-card.featured {
    background: var(--lime);
    border-color: var(--lime);
    position: relative;
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(45, 212, 191, 0.35);
}

.pricing-card.featured .pricing-pill  { border-color: rgba(0,0,0,0.15); color: var(--pricing-featured-sub); }
.pricing-card.featured .pricing-price { color: var(--pricing-featured-text); }
.pricing-card.featured .pricing-per   { color: var(--pricing-featured-sub); }
.pricing-card.featured .pricing-hr    { border-color: rgba(0,0,0,0.12); }
.pricing-card.featured .pricing-feat  { color: var(--pricing-featured-text); }
.pricing-card.featured .pricing-feat.off { opacity: 0.35; }

.pricing-pill  { font-size: 11px; margin-bottom: 18px; }
.pricing-price { font-family: 'Outfit',sans-serif; font-size: 48px; font-weight: 800; line-height: 1; color: var(--text); }
.pricing-per   { font-size: 13px; color: var(--text-faint); margin: 4px 0 24px; }
.pricing-hr    { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.pricing-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feat  { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.pricing-feat.off { color: var(--text-faint); }

.pricing-featured-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 9999px;
    background: rgba(14, 14, 14, 0.12);
    border: 1px solid rgba(14, 14, 14, 0.18);
    color: var(--pricing-featured-text);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.btn-featured {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 9999px;
    padding: 13px 30px;
    cursor: pointer;
    border: none;
    background: var(--pricing-featured-btn-bg);
    color: var(--pricing-featured-btn-color);
    transition: transform 0.2s, box-shadow 0.2s, background 0.4s, color 0.4s;
}
.btn-featured:hover { transform: scale(1.03); }

/* ============================================================
    FAQ
============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 720px; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    gap: 16px;
}
.faq-summary::-webkit-details-marker { display: none; }

.faq-chevron { color: var(--lime); font-size: 18px; flex-shrink: 0; transition: transform 0.3s; }
details[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
    padding: 0 26px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
    CTA FINAL
============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 120px 0;
    text-align: center;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.cta-title {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 20px 0 16px;
}

.cta-sub { color: var(--text-muted); font-size: 18px; margin-bottom: 44px; }

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 52px;
}

.cta-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cta-stat-num { font-family: 'Outfit',sans-serif; font-size: 26px; font-weight: 800; color: var(--lime); }
.cta-stat-lbl { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
.cta-div { width: 1px; height: 36px; background: var(--border); transition: background 0.4s ease; }

/* ============================================================
    FOOTER
============================================================ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 36px 0;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text-faint); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 12px; color: var(--text-faint); }

/* ============================================================
    FADE-UP
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding-top: 96px; }
    .hero-ctas, .cta-btns { flex-direction: column; align-items: center; }
    .phone-badge { display: none; }
}

