/* ==========================================================================
   Credterra Investimento — Premium Design System
   ========================================================================== */

:root {
    /* Brand */
    --black: #0a0a0a;
    --black-2: #111111;
    --black-3: #161616;
    --graphite: #1c1c1f;
    --graphite-2: #232328;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);

    --green: #22c55e;
    --green-bright: #4ade80;
    --green-deep: #16a34a;
    --green-glow: rgba(34, 197, 94, 0.35);

    --gold: #d4af37;
    --gold-bright: #f1c956;
    --gold-deep: #a88824;
    --gold-glow: rgba(212, 175, 55, 0.3);

    --white: #ffffff;
    --cream: #f5f1e8;
    --muted: rgba(255, 255, 255, 0.62);
    --muted-2: rgba(255, 255, 255, 0.42);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.14);

    /* Typography */
    --font-display: 'Sora', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Easings */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

    /* Sizing */
    --container: 1280px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }

::selection { background: var(--green); color: var(--black); }

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* Glass utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out);
}

.text-gradient {
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ==========================================================================
   Background grain (subtle premium texture)
   ========================================================================== */

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
}

/* Cursor glow (desktop only) */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

@media (hover: hover) {
    .cursor-glow { opacity: 1; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out);
}

.btn:hover svg { transform: translateX(4px); }

.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--lg { padding: 20px 36px; font-size: 17px; }
.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: var(--white);
    box-shadow:
        0 0 0 1px rgba(34, 197, 94, 0.5) inset,
        0 8px 32px -8px rgba(34, 197, 94, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(34, 197, 94, 0.6) inset,
        0 16px 48px -8px rgba(34, 197, 94, 0.6),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.btn--primary:hover::before { opacity: 1; }

.btn--primary > * { position: relative; z-index: 1; }

.btn--ghost {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn--ghost:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 24px;
    font-size: 14px;
    box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.5);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.6);
}

.btn--whatsapp svg { width: 20px; height: 20px; }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.header.is-scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-bottom: 1px solid var(--glass-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: var(--font-display);
    transition: opacity 0.3s ease;
    line-height: 1;
    gap: 6px;
}

.logo:hover { opacity: 0.85; }

.logo__main {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo__cred {
    color: var(--white);
}

.logo__terra {
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-right: 8px;
}

.logo__investimento {
    font-weight: 200;
    color: var(--cream);
    opacity: 0.85;
    letter-spacing: 0.01em;
}

.logo__divider {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
    opacity: 0.6;
}

.logo__sub {
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    opacity: 0.85;
    line-height: 1;
    white-space: nowrap;
}

.logo--footer {
    align-items: flex-start;
    text-align: left;
}

.logo--footer .logo__divider {
    background: linear-gradient(to right, var(--gold-bright), transparent);
}

@media (max-width: 600px) {
    .logo__main { font-size: 19px; }
    .logo__divider { width: 30px; }
    .logo__sub { font-size: 8.5px; letter-spacing: 0.18em; }
}

@media (max-width: 380px) {
    .logo__main { font-size: 17px; }
    .logo__divider { display: none; }
    .logo__sub { font-size: 8px; letter-spacing: 0.14em; }
    .logo { gap: 3px; }
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav__link {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: var(--white);
    background: var(--glass-bg-hover);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav, .header__cta { display: none; }
    .menu-toggle { display: flex; }

    .nav.is-open {
        display: flex;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 24px;
        border-radius: var(--radius-lg);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        gap: 8px;
    }

    .nav.is-open .nav__link {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    position: absolute;
    inset: -10%;
    background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=85');
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    filter: brightness(0.55) contrast(1.05) saturate(0.9);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.7) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.3) 40%, var(--black) 100%);
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--green-glow), transparent 50%),
        radial-gradient(circle at 80% 70%, var(--gold-glow), transparent 50%);
    opacity: 0.35;
    mix-blend-mode: screen;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--green-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green-bright);
    opacity: 0;
    animation: float-particle 8s linear infinite;
}

.hero__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { left: 25%; top: 65%; animation-delay: 1.5s; }
.hero__particles span:nth-child(3) { left: 40%; top: 30%; animation-delay: 3s; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.hero__particles span:nth-child(4) { left: 60%; top: 80%; animation-delay: 4.5s; }
.hero__particles span:nth-child(5) { left: 75%; top: 25%; animation-delay: 6s; }
.hero__particles span:nth-child(6) { left: 85%; top: 60%; animation-delay: 2s; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.hero__particles span:nth-child(7) { left: 15%; top: 85%; animation-delay: 5s; }
.hero__particles span:nth-child(8) { left: 50%; top: 15%; animation-delay: 7s; }
.hero__particles span:nth-child(9) { left: 90%; top: 90%; animation-delay: 0.5s; }
.hero__particles span:nth-child(10) { left: 30%; top: 45%; animation-delay: 3.5s; background: var(--gold); box-shadow: 0 0 8px var(--gold); }

@keyframes float-particle {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 8px var(--green-bright);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.hero__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hero__brand-name {
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--green-bright);
    text-transform: uppercase;
    opacity: 0.95;
    line-height: 1;
}

.hero__brand-sub {
    font-size: clamp(11px, 1.1vw, 12px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--gold-bright);
    opacity: 0.8;
    line-height: 1;
}

.hero__tagline {
    display: block;
    font-size: clamp(48px, 8vw, 104px);
    font-weight: 300;
    line-height: 0.95;
}

.hero__line {
    display: block;
}

.hero__line em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__line--accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero__subtitle {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero__stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 12px 24px;
}

.stat__number,
.stat__prefix,
.stat__suffix {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.stat__prefix {
    font-size: clamp(20px, 2vw, 24px);
    color: var(--green-bright);
    margin-right: 4px;
}

.stat__suffix {
    font-size: clamp(20px, 2vw, 28px);
    color: var(--green-bright);
    margin-left: 2px;
}

.stat:has(.stat__prefix) {
    display: inline-block;
}

.stat__prefix,
.stat__number,
.stat__suffix {
    display: inline-block;
    vertical-align: baseline;
}

.stat__label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.4;
}

.stat__divider {
    width: 1px;
    background: var(--glass-border);
    margin: 16px 0;
}

@media (max-width: 768px) {
    .hero__stats { flex-direction: column; }
    .stat__divider { width: 100%; height: 1px; margin: 0; }
    .stat { padding: 16px; }
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
    color: var(--muted-2);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--green-bright), transparent);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--green-bright);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -50%; }
    100% { top: 100%; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; }
    .hero__scroll { display: none; }
    .hero__actions { margin-bottom: 56px; }
}

/* ==========================================================================
   Section Header (shared)
   ========================================================================== */

.section__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--green-bright));
}

.section__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}

.section__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--green-bright);
}

.section__lead {
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
    padding: 140px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 968px) {
    .services { padding: 80px 0; }
    .services__grid { grid-template-columns: 1fr; }
    .section__header { margin-bottom: 56px; }
}

.service-card {
    position: relative;
    padding: 48px 40px;
    overflow: hidden;
    isolation: isolate;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--glass-border-hover) 50%, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--green-bright);
    transition: all 0.5s var(--ease-out);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.1));
    border-color: rgba(34, 197, 94, 0.4);
    transform: scale(1.05);
}

.service-card__number {
    position: absolute;
    top: 36px;
    right: 40px;
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 64px;
    color: var(--white);
    opacity: 0.06;
    line-height: 1;
    letter-spacing: -0.04em;
}

.service-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card__desc {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
    font-size: 15px;
}

.service-card__features {
    list-style: none;
    margin-bottom: 36px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 14px;
    color: var(--cream);
}

.service-card__features li:last-child { border-bottom: none; }

.check {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.check::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    width: 7px;
    height: 4px;
    border-left: 1.5px solid var(--green-bright);
    border-bottom: 1.5px solid var(--green-bright);
    transform: rotate(-45deg);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--green-bright);
    transition: all 0.3s ease;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card__link:hover svg { transform: translateX(4px); }

.service-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
    pointer-events: none;
    z-index: -1;
}

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

/* ==========================================================================
   Audience
   ========================================================================== */

.audience {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.audience__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.18) saturate(0.5) contrast(1.05);
    opacity: 0.55;
    pointer-events: none;
}

.audience__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--black) 0%, rgba(10, 10, 10, 0.55) 25%, rgba(10, 10, 10, 0.55) 75%, var(--black) 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.2) 100%);
    pointer-events: none;
}

.audience__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 25%, var(--gold-glow), transparent 55%),
        radial-gradient(ellipse at 15% 75%, var(--green-glow), transparent 55%);
    opacity: 0.3;
    mix-blend-mode: screen;
    pointer-events: none;
}

@media (max-width: 968px) {
    .audience__bg::before {
        background:
            linear-gradient(180deg, var(--black) 0%, rgba(10, 10, 10, 0.75) 20%, rgba(10, 10, 10, 0.75) 80%, var(--black) 100%);
    }
}

.audience__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .audience { padding: 80px 0; }
    .audience__container { grid-template-columns: 1fr; gap: 56px; }
}

.audience__content .section__eyebrow {
    margin-bottom: 16px;
}

.audience__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.audience__text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 40px;
}

.audience__text strong {
    color: var(--white);
    font-weight: 500;
}

.audience__points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience__point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.audience__point-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.audience__point-icon svg {
    width: 18px;
    height: 18px;
}

.audience__point h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 4px;
}

.audience__point p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Audience visual */
.audience__visual {
    position: relative;
    min-height: 480px;
}

.audience__card {
    padding: 32px;
}

.audience__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 8px var(--green-bright);
    animation: pulse-dot 2s ease-in-out infinite;
}

.audience__metric {
    margin-bottom: 24px;
}

.audience__metric-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.audience__metric-value {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.audience__metric-value .prefix {
    font-size: 24px;
    color: var(--gold-bright);
    font-weight: 400;
}

.audience__metric-value .suffix {
    font-size: 32px;
    color: var(--gold-bright);
    font-weight: 400;
}

.audience__metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--green-bright);
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 999px;
}

.audience__metric-trend svg { width: 14px; height: 14px; }

.audience__chart {
    margin: 24px 0;
    height: 100px;
}

.audience__chart svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 2.5s var(--ease-out) forwards;
}

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

.audience__card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.audience__pill {
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--cream);
    font-weight: 500;
}

.audience__card--small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

@media (max-width: 968px) {
    .audience__card--small { right: 0; }
}

.audience__small-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    flex-shrink: 0;
}

.audience__small-icon svg { width: 22px; height: 22px; }

.audience__small-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 2px;
}

.audience__small-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}

.float {
    animation: float-anim 6s ease-in-out infinite;
}

@keyframes float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================================================
   Differentials
   ========================================================================== */

.differentials {
    padding: 140px 0;
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.differentials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .differentials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .differentials { padding: 80px 0; }
    .differentials__grid { grid-template-columns: 1fr; }
}

.diff-card {
    padding: 36px 28px;
    text-align: left;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    transform: translateY(-6px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.diff-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-bright);
    transition: all 0.5s var(--ease-out);
}

.diff-card:hover .diff-card__icon-wrap {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--green-bright);
}

.diff-card:nth-child(2):hover .diff-card__icon-wrap,
.diff-card:nth-child(4):hover .diff-card__icon-wrap {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
}

.diff-card__icon {
    width: 26px;
    height: 26px;
}

.diff-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--white);
}

.diff-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ==========================================================================
   Specialist Section
   ========================================================================== */

.specialist {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.specialist__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, var(--gold-glow), transparent 55%),
        radial-gradient(ellipse at 80% 80%, var(--green-glow), transparent 55%),
        var(--black);
    opacity: 0.4;
    pointer-events: none;
}

.specialist__container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .specialist { padding: 80px 0; }
    .specialist__container { grid-template-columns: 1fr; gap: 56px; }
}

/* Photo */
.specialist__visual {
    position: relative;
}

.specialist__photo-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.specialist__photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--graphite);
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px var(--glass-border) inset;
    transform: perspective(1200px) rotateY(-3deg);
    transition: transform 0.8s var(--ease-out);
}

.specialist__photo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(212, 175, 55, 0.08));
    z-index: 2;
    pointer-events: none;
}

.specialist__photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.5));
    z-index: 2;
    pointer-events: none;
}

.specialist__visual:hover .specialist__photo-frame {
    transform: perspective(1200px) rotateY(0deg);
}

.specialist__photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05) saturate(0.95);
    transition: transform 1s var(--ease-out);
}

.specialist__visual:hover .specialist__photo {
    transform: scale(1.04);
}

/* Decorative corners */
.specialist__corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid var(--gold-bright);
    z-index: 3;
    opacity: 0.7;
    transition: all 0.4s var(--ease-out);
}

.specialist__corner--tl { top: 16px; left: 16px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.specialist__corner--tr { top: 16px; right: 16px; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.specialist__corner--bl { bottom: 16px; left: 16px; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.specialist__corner--br { bottom: 16px; right: 16px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }

.specialist__visual:hover .specialist__corner {
    opacity: 1;
    width: 40px;
    height: 40px;
}

/* Floating badges */
.specialist__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    z-index: 4;
    background: rgba(20, 20, 22, 0.85);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.6);
}

.specialist__badge:first-of-type {
    bottom: 24px;
    left: -32px;
}

.specialist__badge--alt {
    top: 32px;
    right: -32px;
}

@media (max-width: 600px) {
    .specialist__badge:first-of-type { left: 0; bottom: -8px; }
    .specialist__badge--alt { right: 0; top: -8px; }
}

.specialist__badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    flex-shrink: 0;
}

.specialist__badge-icon--gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
}

.specialist__badge-icon svg {
    width: 18px;
    height: 18px;
}

.specialist__badge-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.specialist__badge-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    margin-top: 2px;
}

/* Content */
.specialist__content .section__eyebrow {
    margin-bottom: 16px;
}

.specialist__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.specialist__text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.specialist__text strong {
    color: var(--white);
    font-weight: 500;
}

/* Quote */
.specialist__quote {
    position: relative;
    padding: 28px 28px 28px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--gold-bright);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.specialist__quote-mark {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 28px;
    height: 28px;
    color: var(--gold-bright);
    opacity: 0.25;
}

.specialist__quote p {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.specialist__quote footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    color: var(--gold-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.specialist__quote-line {
    width: 24px;
    height: 1px;
    background: var(--gold-bright);
}

/* Credentials */
.specialist__credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

@media (max-width: 480px) {
    .specialist__credentials { grid-template-columns: 1fr; gap: 12px; }
}

.specialist__cred {
    padding: 18px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-out);
}

.specialist__cred:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.specialist__cred-num {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.specialist__cred-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.specialist__cta {
    margin-top: 0;
}

/* ==========================================================================
   Form Section
   ========================================================================== */

.form-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.form-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, var(--green-glow), transparent 60%),
        radial-gradient(ellipse at 70% 50%, var(--gold-glow), transparent 60%),
        var(--black-2);
    opacity: 0.3;
}

.form-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .form-section { padding: 80px 0; }
    .form-section__container { grid-template-columns: 1fr; gap: 48px; }
}

.form-section__content .section__eyebrow { margin-bottom: 16px; }

.form-section__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.form-section__lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-section__lead strong {
    color: var(--white);
    font-weight: 500;
}

.form-section__benefits {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-section__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    font-size: 15px;
}

.bullet {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green-bright);
    flex-shrink: 0;
}

.form-section__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted-2);
    font-size: 13px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.form-section__divider span {
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.whatsapp-direct {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-out);
}

.whatsapp-direct:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.whatsapp-direct__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.whatsapp-direct__icon svg { width: 24px; height: 24px; }

.whatsapp-direct__text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.whatsapp-direct__label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 2px;
}

.whatsapp-direct__number {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.whatsapp-direct__arrow {
    width: 18px;
    height: 18px;
    color: var(--muted);
    transition: transform 0.3s ease;
}

.whatsapp-direct:hover .whatsapp-direct__arrow { transform: translateX(4px); color: var(--white); }

/* Form card */
.form-card {
    padding: 48px;
    position: relative;
}

@media (max-width: 600px) {
    .form-card { padding: 32px 24px; }
}

.form-card__header {
    margin-bottom: 32px;
}

.form-card__header h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--white);
}

.form-card__header p {
    color: var(--muted);
    font-size: 14px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.form__optional {
    color: var(--muted-2);
    font-weight: 400;
    font-size: 12px;
}

.form__field input,
.form__field textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: none;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
    color: var(--muted-2);
}

.form__field input:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form__field.has-error input,
.form__field.has-error textarea {
    border-color: rgba(239, 68, 68, 0.5);
}

.form__error {
    font-size: 12px;
    color: rgba(239, 68, 68, 0.9);
    min-height: 0;
    transition: all 0.3s ease;
}

.form__error:not(:empty) {
    margin-top: 4px;
}

.form__disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--muted-2);
    margin-top: 8px;
    line-height: 1.5;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 24px 0;
    animation: success-in 0.6s var(--ease-out) both;
}

@keyframes success-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
}

.form-success__icon svg { width: 40px; height: 40px; }

.form-success h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
}

.form-success p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 24px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta-final {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-final__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.8);
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 0%, var(--black) 100%),
        linear-gradient(180deg, var(--black) 0%, rgba(10, 10, 10, 0.8) 50%, var(--black) 100%);
    z-index: 1;
}

.cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, var(--green-glow), transparent 50%),
        radial-gradient(circle at 70% 50%, var(--gold-glow), transparent 50%);
    opacity: 0.4;
    z-index: 1;
    mix-blend-mode: screen;
}

.cta-final__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-final__title {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
    color: var(--white);
}

.cta-final__title em {
    font-style: italic;
    font-weight: 400;
}

.strike {
    position: relative;
    color: var(--muted);
}

.strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: linear-gradient(to right, var(--green-bright), var(--gold-bright));
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    animation: strike-line 1.2s var(--ease-out) 0.3s forwards;
}

.cta-final.is-visible .strike::after {
    animation: strike-line 1.2s var(--ease-out) 0.3s forwards;
}

@keyframes strike-line {
    to { transform: translateY(-50%) scaleX(1); }
}

@media (max-width: 768px) {
    .cta-final { padding: 80px 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 80px 0 32px;
    background: var(--black-2);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer { padding: 60px 0 24px; }
    .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

.footer__brand p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 280px;
}

.logo--footer { margin-bottom: 0; }

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 600px) {
    .footer__cols { grid-template-columns: 1fr; gap: 32px; }
}

.footer__col h5 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    color: var(--muted-2);
    font-size: 13px;
}

.footer__tagline { font-style: italic; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 90;
    box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
    transition: all 0.4s var(--ease-out);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
}

.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 600px) {
    .whatsapp-float { bottom: 16px; right: 16px; width: 56px; height: 56px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ==========================================================================
   Animations / Reveals
   ========================================================================== */

.fade-up,
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    transition-delay: var(--delay, 0ms);
}

.fade-up.is-visible,
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .fade-up { transition-delay: calc(var(--delay, 0ms) + 100ms); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-up, .reveal { opacity: 1; transform: none; }
}
