/* ===========================
   DESIGN SYSTEM — TOKENS
   =========================== */
:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --primary-ultra-light: #86efac;
    --bg-dark: #000c07;
    --bg-surface: #041d11;
    --bg-card: rgba(10, 45, 28, 0.4);
    --bg-card-hover: rgba(10, 45, 28, 0.6);
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-body: #c8d4e0;
    --glow: 0 0 20px rgba(34, 197, 94, 0.3);
    --glow-strong: 0 0 40px rgba(34, 197, 94, 0.4), 0 0 80px rgba(34, 197, 94, 0.15);
    --glow-subtle: 0 0 60px rgba(34, 197, 94, 0.08);
    --border: 1px solid rgba(255, 255, 255, 0.08);
    --border-glow: 1px solid rgba(34, 197, 94, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.5s var(--ease-out-expo);
}

/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
picture,
canvas {
    max-width: 100%;
}

h1, h2, h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
}

h1 span {
    color: var(--primary);
    text-shadow: var(--glow);
}

a {
    text-decoration: none;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

header,
section,
footer {
    overflow-x: clip;
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 100%;
    animation: gradientFlow 2s ease infinite;
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 20px rgba(34, 197, 94, 0.2);
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===========================
   FLOATING NAVBAR — REMOVED
   =========================== */


/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
    opacity: 0;
    transition: opacity 1.8s var(--ease-out-expo),
                transform 1.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none !important;
        transition: none;
    }
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-up {
    transform: translateY(40px);
}

.reveal:not(.reveal-left):not(.reveal-right):not(.reveal-up) {
    transform: translateY(25px);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* ===========================
   SECTION TAGS (Labels)
   =========================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.18);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag .icon {
    font-size: 0.8rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

/* ===========================
   PREMIUM BUTTONS
   =========================== */
.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    color: #000;
    padding: 18px 40px;
    border-radius: var(--radius-sm);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-elastic);
    box-shadow: var(--glow);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--primary-light);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5), 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Button glow effect */
.btn-glow-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(34, 197, 94, 0.3),
        transparent,
        transparent
    );
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Premium button variant with shimmer + ripple */
.btn-premium {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border-radius: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, #15803d 50%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: btnGradientShift 4s ease infinite;
    color: #000;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35), 0 0 0 0 rgba(34, 197, 94, 0);
    transition: all 0.4s var(--ease-elastic);
    z-index: 1;
}

.btn-premium:hover {
    box-shadow: var(--glow-strong);
}

.btn-premium:active {
    transform: scale(0.97) !important;
}

.btn-premium .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-premium .btn-content .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-content .icon {
    transform: scale(1.2) rotate(-5deg);
}

/* Shimmer sweep effect */
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    z-index: 3;
    animation: shimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes btnGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Pulse ring (for final CTA) */
.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    border: 2px solid var(--primary);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseRing {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.25, 1.6);
    }
}

/* Ripple on click */
.btn-ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes rippleEffect {
    to {
        transform: scale(40);
        opacity: 0;
    }
}

/* Larger button variants */
.btn-lg {
    padding: 22px 56px;
    font-size: 1.2rem;
    border-radius: 18px;
}

.btn-xl {
    padding: 24px 60px;
    font-size: 1.25rem;
    border-radius: 20px;
}

/* ===========================
   LAYOUT
   =========================== */
section {
    padding: 110px 0;
    position: relative;
}

#for-who,
#benefits,
#proof,
#final-cta {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}

.bg-alt {
    background-color: var(--bg-surface);
}

.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
    border-color: rgba(34, 197, 94, 0.12);
    box-shadow: var(--glow-subtle);
}

/* ===========================
   HERO — FULLSCREEN BACKGROUND
   =========================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% 58%;
    display: block;
}

.hero-subject-backdrop {
    position: absolute;
    right: 4%;
    bottom: -2%;
    width: min(44vw, 560px);
    height: min(88vh, 760px);
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 30%, rgba(20, 70, 44, 0.52) 0%, rgba(20, 70, 44, 0.36) 28%, rgba(8, 24, 16, 0.18) 54%, transparent 74%),
        linear-gradient(90deg, rgba(3, 12, 8, 0.34) 0%, rgba(3, 12, 8, 0.08) 34%, transparent 100%);
    filter: blur(22px);
    opacity: 0.95;
}

.hero-subject-backdrop::before,
.hero-subject-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-subject-backdrop::before {
    background:
        radial-gradient(circle at 42% 34%, rgba(58, 154, 98, 0.22) 0%, rgba(58, 154, 98, 0.16) 18%, rgba(58, 154, 98, 0.08) 34%, transparent 58%),
        radial-gradient(circle at 68% 58%, rgba(16, 52, 34, 0.22) 0%, rgba(16, 52, 34, 0.12) 26%, transparent 62%);
    filter: blur(18px);
    opacity: 0.95;
}

.hero-subject-backdrop::after {
    background:
        linear-gradient(90deg, rgba(4, 16, 10, 0.38) 0%, rgba(8, 28, 18, 0.18) 22%, transparent 46%),
        radial-gradient(circle at 58% 26%, rgba(103, 224, 149, 0.12) 0%, rgba(103, 224, 149, 0.06) 24%, transparent 52%);
    filter: blur(26px);
    opacity: 0.88;
}

.hero-sales-notifications {
    position: absolute;
    right: 28%;
    bottom: 12%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none;
}

.hero-sale-note {
    --hero-sale-x: 0px;
    width: min(320px, 26vw);
    padding: 11px 14px;
    border-radius: 18px;
    background: rgba(18, 28, 24, 0.78);
    border: 1px solid rgba(163, 255, 198, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    color: #f4fff7;
    position: relative;
    overflow: hidden;
    transform: translateX(var(--hero-sale-x)) translateY(18px) scale(0.97);
    opacity: 0;
    animation:
        hero-sale-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
        hero-sale-float 7.2s cubic-bezier(0.37, 0, 0.2, 1) 980ms infinite,
        hero-sale-glow 7.2s ease-in-out 980ms infinite;
}

.hero-sale-note-top {
    --hero-sale-x: -6px;
    animation-delay: 0ms, 1200ms, 1200ms;
}

.hero-sale-note-bottom {
    --hero-sale-x: 28px;
    animation-delay: 180ms, 1680ms, 1680ms;
}

.hero-sale-note::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.12) 32%, transparent 48%);
    transform: translateX(-135%);
    opacity: 0;
    animation: hero-sale-sheen 7.2s ease-in-out 1.6s infinite;
    pointer-events: none;
}

.hero-sale-note-bottom::before {
    animation-delay: 2.1s;
}

.hero-sale-note-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.hero-sale-app {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hero-sale-app-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    background: linear-gradient(145deg, #f5fff8 0%, #dbefe2 100%);
    color: #08130d;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-sale-app-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

@keyframes hero-sale-float {
    0%, 100% {
        transform: translateX(var(--hero-sale-x)) translateY(0);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    }
    35% {
        transform: translateX(var(--hero-sale-x)) translateY(-4px);
        box-shadow: 0 21px 48px rgba(0, 0, 0, 0.24);
    }
    70% {
        transform: translateX(var(--hero-sale-x)) translateY(-7px);
        box-shadow: 0 26px 56px rgba(0, 0, 0, 0.3);
    }
}

@keyframes hero-sale-enter {
    0% {
        transform: translateX(calc(var(--hero-sale-x) + 10px)) translateY(18px) scale(0.97);
        opacity: 0;
    }
    65% {
        transform: translateX(var(--hero-sale-x)) translateY(-3px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(var(--hero-sale-x)) translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes hero-sale-glow {
    0%, 100% {
        border-color: rgba(163, 255, 198, 0.08);
    }
    50% {
        border-color: rgba(163, 255, 198, 0.16);
    }
}

@keyframes hero-sale-sheen {
    0%, 72%, 100% {
        transform: translateX(-135%);
        opacity: 0;
    }
    78% {
        opacity: 0.9;
    }
    92% {
        transform: translateX(135%);
        opacity: 0;
    }
}

.hero-sale-app strong,
.hero-sale-app span,
.hero-sale-note-head time {
    display: block;
}

.hero-sale-app strong {
    font-size: 0.92rem;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-sale-app span,
.hero-sale-note-head time {
    font-size: 0.72rem;
    color: rgba(232, 245, 237, 0.54);
}

.hero-sale-note-head time {
    white-space: nowrap;
    font-weight: 600;
}

.hero-subject {
    position: absolute;
    right: 5%;
    bottom: 0;
    z-index: 2;
    height: min(92%, 820px);
    width: auto;
    max-width: 46vw;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(0, 12, 7, 0.88) 0%,
            rgba(0, 12, 7, 0.7) 20%,
            rgba(0, 12, 7, 0.3) 40%,
            transparent 60%
        ),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 25%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: none;
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    margin: 0;
}

.hero-text {
    max-width: 420px;
}

/* Hero elements are always visible — no entry animation */
.hero-logo,
.hero-title,
.hero-subtitle,
.cta-wrapper {
    opacity: 1;
    transform: none;
}

.hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 18px 0;
    font-weight: 800;
}

.title-gold {
    color: #2bd46a;
    background: linear-gradient(
        115deg,
        #0c4b24 0%,
        #11853d 14%,
        #5af09a 28%,
        #b8ffd3 36%,
        #1cb45a 48%,
        #0d5f2d 62%,
        #7ff3af 78%,
        #138546 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 0 rgba(184, 255, 211, 0.22), 0 0 18px rgba(28, 180, 90, 0.16);
}

.title-highlight {
    color: var(--primary);
    text-shadow: var(--glow);
    position: relative;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.7;
}

.hero-logo {
    max-height: 55px;
    width: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    display: block;
}

/* Trust bar under CTA */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 0;
}

.trust-avatars {
    display: flex;
    gap: 4px;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: trustPulse 2s ease-in-out infinite;
}

.trust-dot:nth-child(2) { animation-delay: 0.3s; opacity: 0.7; }
.trust-dot:nth-child(3) { animation-delay: 0.6s; opacity: 0.4; }

@keyframes trustPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.trust-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===========================
   STATS BANNER
   =========================== */
.stats-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(4, 29, 17, 0.95), rgba(0, 12, 7, 0.95));
    border-top: 1px solid rgba(34, 197, 94, 0.08);
    border-bottom: 1px solid rgba(34, 197, 94, 0.08);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(34, 197, 94, 0.2), transparent);
}

/* ===========================
   CHECKLIST
   =========================== */
.check-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.check-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.check-item:hover {
    transform: translateX(10px);
}

.check-item:hover::before {
    opacity: 1;
}

.check-icon-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.check-item:hover .check-icon-wrap {
    background: rgba(34, 197, 94, 0.18);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.1);
}

.check-item .icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.check-item p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ===========================
   MOTIVO CARDS (Benefits)
   =========================== */
.section-title .highlight {
    color: var(--primary);
    font-style: italic;
    position: relative;
}

.motivo-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.motivo-card {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(10, 45, 28, 0.5), rgba(0, 12, 7, 0.7));
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo),
                box-shadow 0.6s var(--ease-out-expo),
                border-color 0.4s ease;
    will-change: transform;
}

.motivo-card:hover {
    box-shadow: 0 25px 70px rgba(34, 197, 94, 0.12), 0 0 40px rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.25);
}

.motivo-card.reverse {
    flex-direction: row-reverse;
}

.motivo-img-area {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 12, 7, 0.2), transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.motivo-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
    transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.motivo-card:hover .motivo-img-area img {
    transform: scale(1.08);
}

.motivo-text {
    flex: 1;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.motivo-badge {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 6px 16px;
    border-radius: 8px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
    transition: all 0.3s ease;
}

.motivo-card:hover .motivo-badge {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.motivo-text h3 {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.motivo-text p {
    font-size: 1.08rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 400;
}

/* ===========================
   MID-PAGE CTA
   =========================== */
.mid-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mid-cta-text {
    font-size: 1.4rem;
    color: var(--text-body);
    margin-bottom: 30px;
    font-weight: 400;
}

/* ===========================
   PROOF / TESTIMONIALS
   =========================== */
.proof-quote-text {
    max-width: 900px;
    margin: 0 auto 70px;
    font-size: 1.45rem;
    line-height: 2.15;
    color: var(--text-body);
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
}

.proof-quote-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.proof-quote-text em {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

/* Slider */
.proof-slider {
    --proof-gap: 20px;
    padding: 20px 0 10px;
    overflow: visible;
    position: relative;
}

.proof-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--proof-gap);
    align-items: stretch;
    width: 100%;
}

.proof-card {
    margin: 0;
    width: 100%;
}

.proof-card:nth-child(n+4) {
    display: none;
}

.proof-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.proof-card:hover img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.15);
}

.proof-mobile-dots {
    display: none;
}

/* ===========================
   MENTOR
   =========================== */
.mentor-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.mentor-image {
    flex: 1;
}

.mentor-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: var(--border-glow);
    box-shadow: var(--glow);
    transition: box-shadow 0.5s ease, transform 0.6s var(--ease-out-expo);
    will-change: transform;
}

.mentor-frame:hover {
    box-shadow: var(--glow-strong);
}

.mentor-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s var(--ease-out-expo);
}

/* Mentor name tag overlay */
.mentor-name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(to top, rgba(0, 12, 7, 0.95), rgba(0, 12, 7, 0.6), transparent);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 3;
}

.mentor-name-tag strong {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 700;
}

.mentor-name-tag span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.mentor-bio {
    flex: 1.5;
}

.mentor-bio .section-header {
    margin-bottom: 30px;
}

.mentor-bio p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 400;
}

.mentor-bio strong {
    color: var(--text-white);
    font-weight: 600;
}

.mentor-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-top: var(--border);
    position: relative;
}

.mentor-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.mentor-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
#final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-wrap {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 50px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(10, 45, 28, 0.5), rgba(0, 20, 12, 0.85));
    border: 1px solid rgba(34, 197, 94, 0.12);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), var(--glow-subtle);
}

.final-cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
    animation: glowRotate 12s linear infinite;
    pointer-events: none;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.final-cta-wrap h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.final-cta-wrap p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Urgency bar */
.final-cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.final-cta-urgency span {
    font-size: 0.82rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: var(--border);
    color: var(--text-gray);
    font-size: 0.9rem;
    background: var(--bg-dark);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.15), transparent);
}

/* ===========================
   RESPONSIVE — TABLET (992px)
   =========================== */
@media (max-width: 992px) {
    .hero-sales-notifications {
        right: 24%;
        bottom: 10%;
    }
    .hero-sale-note {
        width: min(280px, 31vw);
        padding: 11px 14px;
        border-radius: 18px;
    }
    .hero-text {
        max-width: 380px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-overlay {
        background:
            linear-gradient(to right,
                var(--bg-dark) 0%,
                rgba(0, 12, 7, 0.95) 25%,
                rgba(0, 12, 7, 0.85) 40%,
                rgba(0, 12, 7, 0.6) 60%,
                rgba(0, 12, 7, 0.3) 80%
            ),
            linear-gradient(to top, var(--bg-dark) 0%, transparent 25%);
    }
    .mentor-content {
        flex-direction: column;
        text-align: center;
    }
    .section-title-left {
        text-align: center;
    }
    .btn-xl {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    .stats-grid {
        gap: 20px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-divider {
        display: none;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* ===========================
   RESPONSIVE — MOBILE (768px)
   =========================== */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: clip;
        overscroll-behavior-x: none;
    }

    /* === HERO MOBILE === */
    #hero {
        height: auto;
        min-height: auto;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 55vw;
        min-height: 280px;
        max-height: 400px;
        transform: none !important;
    }

    .hero-bg-img {
        object-position: 76% 15%;
    }

    .hero-subject-backdrop {
        right: -2%;
        width: min(58vw, 420px);
        height: min(70vh, 520px);
        opacity: 0.88;
    }

    .hero-subject {
        right: -3%;
        height: min(84%, 620px);
        max-width: 68vw;
    }

    .hero-sales-notifications {
        right: 6%;
        bottom: 12px;
        gap: 10px;
    }

    .hero-sale-note {
        width: min(240px, 62vw);
        padding: 10px 12px;
        border-radius: 18px;
    }

    .hero-sale-note-top,
    .hero-sale-note-bottom {
        --hero-sale-x: 0px;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 12, 7, 0.1) 20%,
            rgba(0, 12, 7, 0.35) 40%,
            rgba(0, 12, 7, 0.65) 60%,
            rgba(0, 12, 7, 0.9) 80%,
            var(--bg-dark) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        padding: 0 24px 40px;
        margin-top: -60px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.3;
        margin: 12px 0;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.95rem;
        color: var(--text-body);
    }

    .hero-logo {
        max-height: 50px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .hero-sales-notifications {
        display: none;
    }

    .hero-sale-note::before,
    .hero-sale-note::after,
    .hero-sale-app-icon::before,
    .hero-sale-app-icon::after {
        display: none !important;
        content: none !important;
    }

    .cta-wrapper .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .glass {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .scroll-progress,
    .btn-glow,
    .btn-shimmer,
    .btn-pulse,
    .final-cta-glow {
        animation: none !important;
    }

    /* === ANIMATIONS MOBILE (subtler for small screens) === */
    .reveal.reveal-left {
        transform: translateX(-20px);
    }
    .reveal.reveal-right {
        transform: translateX(20px);
    }
    .reveal.reveal-up {
        transform: translateY(25px);
    }
    .reveal:not(.reveal-left):not(.reveal-right):not(.reveal-up) {
        transform: translateY(15px);
    }

    /* === SECTIONS MOBILE === */
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .section-title-left {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .glass {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }

    /* === STATS MOBILE === */
    .stats-banner {
        padding: 35px 0;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    /* === CHECKLIST MOBILE === */
    .check-item {
        gap: 14px;
        padding: 10px 12px;
    }
    .check-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    .check-icon-wrap {
        width: 36px;
        height: 36px;
    }
    .check-item .icon {
        font-size: 1rem;
    }

    /* === MOTIVO CARDS MOBILE === */
    .motivo-card,
    .motivo-card.reverse {
        flex-direction: column;
    }
    .motivo-img-area {
        flex: 0 0 auto;
        max-height: 220px;
    }
    .motivo-img-area img {
        min-height: 200px;
    }
    .motivo-text {
        padding: 24px 20px;
    }
    .motivo-text h3 {
        font-size: 1.3rem;
    }
    .motivo-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* === MID CTA MOBILE === */
    .mid-cta {
        margin-top: 50px;
        padding-top: 40px;
    }
    .mid-cta-text {
        font-size: 1.15rem;
    }

    /* === PROOF QUOTE MOBILE === */
    .proof-quote-text {
        font-size: 1.15rem;
        line-height: 2;
        margin-bottom: 50px;
        padding: 0 8px;
    }

    /* === SWIPER MOBILE === */
    .proof-slider {
        overflow-x: auto;
        overflow-y: hidden;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .proof-slider::-webkit-scrollbar {
        display: none;
    }
    .proof-track {
        display: flex;
        --proof-gap: 14px;
        width: auto;
        animation: none;
        padding: 0 6vw;
    }
    .proof-card {
        flex: 0 0 88vw;
        max-width: 88vw;
        scroll-snap-align: center;
    }
    .proof-card:nth-child(n+4) {
        display: none;
    }

    .proof-mobile-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .proof-mobile-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.26);
    }

    .proof-mobile-dot-active {
        width: 18px;
        border-radius: 999px;
        background: rgba(34, 197, 94, 0.95);
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.28);
    }

    /* === MENTOR MOBILE === */
    .mentor-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .mentor-frame {
        aspect-ratio: 4/5;
        border-radius: var(--radius-lg);
        max-width: 100%;
    }

    .mentor-frame img {
        object-position: 60% 20%;
    }

    .mentor-bio p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .mentor-bio .section-header {
        text-align: center;
    }

    .mentor-footer {
        padding: 40px 16px;
    }
    .mentor-footer h3 {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    /* === BUTTONS MOBILE === */
    .btn-premium {
        padding: 16px 28px;
        font-size: 0.95rem;
        border-radius: 14px;
        width: 100%;
        max-width: 380px;
    }
    .btn-lg {
        padding: 18px 32px;
        font-size: 1rem;
    }
    .btn-xl {
        padding: 18px 24px;
        font-size: 0.9rem;
    }

    /* === FINAL CTA MOBILE === */
    #final-cta {
        padding: 70px 0;
    }
    .final-cta-wrap {
        padding: 50px 20px;
        border-radius: var(--radius-lg);
    }
    .final-cta-wrap h2 {
        font-size: 1.6rem;
    }
    .final-cta-wrap p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Nav mobile */
    .floating-nav {
        top: 10px;
        width: calc(100% - 24px);
    }
    .nav-inner {
        padding: 10px 16px;
    }
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    .nav-logo {
        height: 26px;
    }
}

/* ===========================
   VERY SMALL SCREENS (480px)
   =========================== */
@media (max-width: 480px) {
    .hero-bg {
        height: 60vw;
        min-height: 240px;
    }

    .hero-bg-img {
        object-position: 60% 10%;
    }

    .hero-content {
        margin-top: -40px;
        padding: 0 16px 30px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .proof-quote-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .motivo-text h3 {
        font-size: 1.2rem;
    }

    .final-cta-wrap h2 {
        font-size: 1.4rem;
    }

    .btn-premium {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .stats-grid {
        gap: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-item {
        padding: 6px 10px;
    }
}

/* ===========================
   EXTRA SMALL SCREENS (375px - iPhone SE)
   =========================== */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .motivo-text {
        padding: 20px 16px;
    }
    
    .motivo-text h3 {
        font-size: 1.1rem;
    }
    
    .motivo-text p {
        font-size: 0.95rem;
    }
    
    .btn-premium {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .final-cta-wrap {
        padding: 40px 16px;
    }
    
    .final-cta-wrap h2 {
        font-size: 1.3rem;
    }
    
    .mentor-footer {
        padding: 30px 12px;
    }
    
    .mentor-footer h3 {
        font-size: 1.15rem;
    }
    
    .check-item {
        padding: 8px 10px;
    }
    
    .check-item p {
        font-size: 0.95rem;
    }
    
    .glass {
        padding: 20px 16px;
    }
}

/* ===========================
   TOUCH / MOBILE INTERACTION
   =========================== */
@media (hover: none) {
    .check-item:hover {
        transform: none;
    }
    .salary-item:hover {
        transform: none;
    }
    .motivo-card:hover {
        transform: none;
    }
    .motivo-card:hover .motivo-img-area img {
        transform: none;
    }
    .btn:hover,
    .btn-premium:hover {
        transform: none;
    }
    .btn:active,
    .btn-premium:active {
        transform: scale(0.97);
    }
    .motivo-card:active {
        border-color: rgba(34, 197, 94, 0.3);
    }
    /* Disable 3D tilt on touch */
    .tilt-card {
        transform: none !important;
    }
}

.text-center {
    text-align: center;
}

/* ===========================
   SALARY LIST (kept for compat)
   =========================== */
.salary-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.salary-item {
    font-size: 1.05rem;
    color: var(--text-white);
    padding: 10px 18px;
    background: rgba(34, 197, 94, 0.06);
    border-left: 3px solid var(--primary);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.salary-item:hover {
    background: rgba(34, 197, 94, 0.12);
    transform: translateX(6px);
    border-left-color: var(--primary-light);
}

.salary-item .flag {
    margin-right: 8px;
    font-size: 1.2rem;
}

.salary-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===========================
   CUSTOM SELECTION
   =========================== */
::selection {
    background: rgba(34, 197, 94, 0.3);
    color: var(--text-white);
}

::-moz-selection {
    background: rgba(34, 197, 94, 0.3);
    color: var(--text-white);
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.4);
}
