/* ═══════════════════════════════════════════════════════
   LAUNCHOPS — Premium Launch Agency Landing Page
   Design: Dark/Light Alternating + Orange Accent (Máquina V4)
   ═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    /* Dark backgrounds (Deep premium navy) */
    --bg-primary: #040a17;
    --bg-secondary: #0a1224;
    --bg-card: #101c36;
    --bg-card-hover: #18284c;
    --bg-elevated: #1e325e;

    /* Light backgrounds (White & soft ice blue) */
    --bg-light: #FFFFFF;
    --bg-light-alt: #f4f7fc;
    --bg-light-card: #FFFFFF;
    --border-light: #e2eaf4;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.15);

    /* Text — dark bg */
    --text-primary: #FFFFFF;
    --text-secondary: #b8c7e0;
    --text-tertiary: #7b8fa8;
    --text-muted: #4f637d;

    /* Text — light bg */
    --text-dark: #040a17;
    --text-dark-secondary: #334460;
    --text-dark-muted: #64748b;

    /* Premium Light Blue / Cyan Accent (replacing Orange) */
    --accent: #00d2ff;
    --accent-light: #8ae8ff;
    --accent-dark: #009ebd;
    --accent-glow: rgba(0, 210, 255, 0.12);
    --accent-glow-strong: rgba(0, 210, 255, 0.25);

    /* CTA Green */
    --cta-green: #00c2ff;
    --cta-green-hover: #33d9ff;
    --cta-green-glow: rgba(0, 210, 255, 0.3);

    --gradient-accent: linear-gradient(135deg, #8ae8ff, #00d2ff, #006b80);
    --gradient-accent-2: linear-gradient(135deg, #00d2ff, #8ae8ff);
    --gradient-dark: linear-gradient(180deg, #040a17 0%, #0a1224 100%);

    --red: #ef4444;
    --orange: #f97316;
    --yellow: #eab308;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter Tight', 'Inter', sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container-max: 1200px;
    --container-px: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}


/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}


/* ─── Reusable ─── */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}


/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--cta-green);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 30px var(--cta-green-glow), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--cta-green-hover);
    box-shadow: 0 0 50px rgba(0, 163, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 32px;
    border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-strong);
    color: var(--text-primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}


/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(4, 10, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--accent);
    font-size: 1.4rem;
}

.logo-accent {
    color: var(--accent);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    /* border-radius: var(--radius-sm); */
}

.navbar-cta {
    padding: 10px 24px;
    background: var(--cta-green);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-out);
}

.navbar-cta:hover {
    transform: translateY(-1px);
    background: var(--cta-green-hover);
    box-shadow: 0 0 30px var(--cta-green-glow);
}


/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Grid background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

/* Glows */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.hero-glow--2 {
    width: 500px;
    height: 500px;
    background: var(--accent-light);
    bottom: -150px;
    left: -100px;
    opacity: 0.08;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    border: 1px solid rgba(0, 210, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-tertiary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-medium);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeInUp 1s var(--ease-out) 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.4;
        transform: scaleY(0.6);
    }
}


/* ═══════════════════════════════════════════════════════
   PAIN SECTION
   ═══════════════════════════════════════════════════════ */
.pain-section {
    background: var(--bg-light);
    border-top: none;
    border-bottom: none;
    color: var(--text-dark);
}

.pain-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pain-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.pain-card:hover {
    border-color: var(--border-medium);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.pain-card-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pain-card:nth-child(1) .pain-card-line {
    background: var(--red);
}

.pain-card:nth-child(2) .pain-card-line {
    background: var(--orange);
}

.pain-card:nth-child(3) .pain-card-line {
    background: var(--yellow);
}

.pain-card:hover .pain-card-line {
    opacity: 1;
}

.pain-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-card-icon svg {
    width: 24px;
    height: 24px;
}

.pain-card-icon--red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
}

.pain-card-icon--orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.pain-card-icon--yellow {
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
}

.pain-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.pain-card-text {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

.pain-bottom-text {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-light-alt);
    border: 1px solid var(--border-light);
}

.pain-bottom-text strong {
    color: var(--accent);
}


/* ═══════════════════════════════════════════════════════
   METHOD SECTION (360º)
   ═══════════════════════════════════════════════════════ */
.method-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

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

.method-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.method-card:hover {
    border-color: rgba(0, 210, 255, 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.05);
}

.method-card-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.method-card:hover .method-card-number {
    color: rgba(0, 210, 255, 0.07);
}

.method-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 210, 255, 0.15);
}

.method-card-icon svg {
    width: 24px;
    height: 24px;
}

.method-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.method-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--accent-glow);
    margin-bottom: 16px;
}

.method-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.method-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.method-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.method-card-list li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════
   AUTHORITY SECTION
   ═══════════════════════════════════════════════════════ */
.authority-section {
    background: var(--bg-light);
    border-top: none;
    border-bottom: none;
    color: var(--text-dark);
}

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

.authority-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.authority-years {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    box-shadow: 0 0 60px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.authority-years-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.authority-years-plus {
    color: var(--accent);
}

.authority-years-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.authority-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
}

.authority-ring--1 {
    width: 260px;
    height: 260px;
    animation: ring-rotate 20s linear infinite;
}

.authority-ring--2 {
    width: 340px;
    height: 340px;
    animation: ring-rotate 30s linear infinite reverse;
}

.authority-ring--3 {
    width: 400px;
    height: 400px;
    border-style: dashed;
    opacity: 0.5;
    animation: ring-rotate 40s linear infinite;
}

@keyframes ring-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.authority-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.authority-floating-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.authority-floating-badge--1 {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
}

.authority-floating-badge--2 {
    bottom: 60px;
    left: 10px;
    animation-delay: 1.3s;
}

.authority-floating-badge--3 {
    bottom: 30px;
    right: 50px;
    animation-delay: 2.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.authority-content {
    max-width: 520px;
}

.authority-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.authority-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.authority-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
}

.authority-highlight:hover {
    border-color: rgba(234, 134, 0, 0.25);
    background: rgba(234, 134, 0, 0.04);
}

.authority-highlight svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.authority-highlight strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.authority-highlight span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}


/* ═══════════════════════════════════════════════════════
   SOCIAL PROOF / RESULTS SECTION
   ═══════════════════════════════════════════════════════ */
.social-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.result-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.result-card:hover {
    border-color: rgba(234, 134, 0, 0.2);
    transform: translateY(-4px);
}

.result-card-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.result-card-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.result-card-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.result-card-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 1.5s var(--ease-out);
}

.result-card.animated .result-card-bar-fill {
    width: var(--bar-width);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #facc15;
    fill: #facc15;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(234, 134, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}


/* ═══════════════════════════════════════════════════════
   DEBRIEFING SECTION
   ═══════════════════════════════════════════════════════ */
.debriefing-section {
    background: var(--bg-light-alt);
    border-top: none;
    border-bottom: none;
    color: var(--text-dark);
}

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

.debriefing-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.debriefing-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.debriefing-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out);
}

.debriefing-metric:hover {
    border-color: rgba(234, 134, 0, 0.25);
}

.debriefing-metric-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.debriefing-metric-icon svg {
    width: 20px;
    height: 20px;
}

.debriefing-metric strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
}

.debriefing-metric span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Cycle Visual */
.debriefing-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.debriefing-cycle {
    display: grid;
    grid-template-columns: repeat(7, auto);
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    min-width: 100px;
    transition: all 0.4s var(--ease-out);
}

.cycle-step:hover {
    border-color: rgba(234, 134, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(234, 134, 0, 0.1);
}

.cycle-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(234, 134, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

.cycle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cycle-arrow {
    color: var(--text-muted);
}

.cycle-arrow svg {
    width: 20px;
    height: 20px;
}

.cycle-arrow--return {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--accent);
}

.cycle-arrow--return svg {
    width: 24px;
    height: 24px;
}

.debriefing-cycle-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 24px;
    text-align: center;
}


/* ═══════════════════════════════════════════════════════
   CTA / FORM SECTION
   ═══════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.cta-glow--1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -150px;
    left: -150px;
    opacity: 0.08;
}

.cta-glow--2 {
    width: 400px;
    height: 400px;
    background: var(--accent-light);
    bottom: -100px;
    right: -100px;
    opacity: 0.06;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content {
    padding-top: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cta-benefit svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Form */
.cta-form-wrapper {
    position: relative;
}

.cta-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-disclaimer svg {
    width: 14px;
    height: 14px;
}


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}


/* ═══════════════════════════════════════════════════════
   LIGHT SECTION OVERRIDES
   Pain, Authority, Debriefing sections on white bg
   ═══════════════════════════════════════════════════════ */

/* Pain Section — white bg overrides */
.pain-section .section-title {
    color: var(--text-dark);
}

.pain-section .section-tag {
    background: rgba(0, 210, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.25);
}

.pain-section .text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-section .pain-card {
    background: var(--bg-light-alt);
    border-color: var(--border-light);
}

.pain-section .pain-card:hover {
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pain-section .pain-card-icon--red {
    background: rgba(239, 68, 68, 0.08);
}

.pain-section .pain-card-icon--orange {
    background: rgba(249, 115, 22, 0.08);
}

.pain-section .pain-card-icon--yellow {
    background: rgba(234, 179, 8, 0.08);
}

/* Authority Section — white bg overrides */
.authority-section .section-title {
    color: var(--text-dark);
}

.authority-section .section-tag {
    background: rgba(0, 210, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.25);
}

.authority-section .text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.authority-section .authority-text {
    color: var(--text-dark-secondary);
}

.authority-section .authority-text strong {
    color: var(--text-dark);
}

.authority-section .authority-years {
    background: var(--bg-light-alt);
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(0, 210, 255, 0.15);
}

.authority-section .authority-years-number {
    color: var(--text-dark);
}

.authority-section .authority-years-label {
    color: var(--text-dark-muted);
}

.authority-section .authority-ring {
    border-color: var(--border-light);
}

.authority-section .authority-floating-badge {
    background: var(--bg-light-card);
    border-color: var(--border-light);
    color: var(--text-dark-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.authority-section .authority-highlight {
    background: var(--bg-light-alt);
    border-color: var(--border-light);
}

.authority-section .authority-highlight strong {
    color: var(--text-dark);
}

.authority-section .authority-highlight span {
    color: var(--text-dark-muted);
}

/* Debriefing Section — light-alt bg overrides */
.debriefing-section .section-title {
    color: var(--text-dark);
}

.debriefing-section .section-tag {
    background: rgba(0, 210, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.25);
}

.debriefing-section .text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.debriefing-section .debriefing-text {
    color: var(--text-dark-secondary);
}

.debriefing-section .debriefing-text strong {
    color: var(--text-dark);
}

.debriefing-section .debriefing-metric {
    background: var(--bg-light-card);
    border-color: var(--border-light);
}

.debriefing-section .debriefing-metric strong {
    color: var(--text-dark);
}

.debriefing-section .debriefing-metric span {
    color: var(--text-dark-muted);
}

.debriefing-section .debriefing-metric-icon {
    background: rgba(0, 210, 255, 0.08);
}

.debriefing-section .cycle-step {
    background: var(--bg-light-card);
    border-color: var(--border-light);
}

.debriefing-section .cycle-label {
    color: var(--text-dark-secondary);
}

.debriefing-section .cycle-arrow {
    color: var(--text-dark-muted);
}

.debriefing-section .debriefing-cycle-caption {
    color: var(--text-dark-muted);
}


/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .authority-grid,
    .debriefing-wrapper,
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .authority-visual {
        min-height: 300px;
    }

    .authority-ring--3 {
        display: none;
    }

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

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

    .debriefing-cycle {
        grid-template-columns: repeat(4, auto);
    }

    .cycle-arrow--return {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 16px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-stat-divider {
        width: 48px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .pain-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .debriefing-cycle {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cycle-arrow {
        display: none;
    }

    .cycle-arrow--return {
        display: block;
        grid-column: 1 / -1;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cta-form {
        padding: 24px;
    }

    .authority-floating-badge--3 {
        display: none;
    }
}


/* ─── Form success state ─── */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}