/* ========================================
   ORUVIAN - Strategy & Growth
   ======================================== */

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e94560;
    --accent-hover: #d63851;
    --gold: #f0a500;
    --gold-light: #f5c542;
    --teal: #0f9b8e;
    --teal-light: #14c4b4;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navy: #0d2238;
    --navy-mid: #1a3a5c;
    --gold-warm: #c9a44a;
    --gold-warm-light: #e8c86a;
    --cream: #f7f4ee;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: #c9a44a !important;
    color: #0d2238 !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #e8c86a !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1002;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    background:
        /* Subtle grid pattern */
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        /* Diagonal accent lines */
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(168,85,247,0.03) 80px,
            rgba(168,85,247,0.03) 81px
        ),
        /* Base gradient */
        linear-gradient(160deg, #0f0f1e 0%, #1a1a2e 25%, #16213e 50%, #0d1b2a 100%);
    background-size: 60px 60px, 60px 60px, auto, auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, rgba(124,58,237,0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroOrb1 20s ease-in-out infinite;
}

@keyframes heroOrb1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, rgba(15,148,136,0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroOrb2 25s ease-in-out infinite;
}

@keyframes heroOrb2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: #c9a44a;
    color: #0d2238;
    box-shadow: 0 4px 15px rgba(201,164,74,0.3);
}

.btn-primary:hover {
    background: #e8c86a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,164,74,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(240,165,0,0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,165,0,0.4);
}

.btn-outline {
    background: transparent;
    color: #c9a44a;
    border: 2px solid #c9a44a;
}

.btn-outline:hover {
    background: #c9a44a;
    color: #0d2238;
    transform: translateY(-2px);
}

/* ========================================
   PYRAMID
   ======================================== */
.hero-pyramid {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pyramid-wrapper {
    position: relative;
    width: 500px;
    height: 340px;
}

.pyramid-svg {
    width: 100%;
    height: 100%;
}

.pyramid-level {
    cursor: pointer;
    transition: var(--transition);
}

.pyramid-level:hover {
    filter: brightness(1.25) drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

.pyramid-fill {
    transition: var(--transition);
}

.pyramid-label {
    font-family: var(--font-heading);
    font-weight: 700;
    fill: white;
    text-anchor: middle;
    pointer-events: none;
}

.pyramid-sublabel {
    font-family: var(--font-main);
    font-size: 11px;
    fill: rgba(255,255,255,0.8);
    text-anchor: middle;
    pointer-events: none;
}

.pyramid-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, rgba(245,158,11,0.06) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Corporate geometric shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 2px;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    transform: rotate(25deg);
    border-color: rgba(168,85,247,0.06);
    animation: shapeFloat 30s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 55%;
    right: 5%;
    transform: rotate(-15deg);
    border-color: rgba(20,184,166,0.05);
    animation: shapeFloat 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 25%;
    transform: rotate(45deg);
    border-color: rgba(245,158,11,0.05);
    animation: shapeFloat 20s ease-in-out infinite 5s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    transform: rotate(30deg);
    border-color: rgba(255,255,255,0.04);
    animation: shapeFloat 22s ease-in-out infinite 3s;
}

@keyframes shapeFloat {
    0%, 100% { transform: rotate(var(--r, 25deg)) translate(0, 0); }
    25% { transform: rotate(var(--r, 25deg)) translate(10px, -15px); }
    50% { transform: rotate(var(--r, 25deg)) translate(-5px, 10px); }
    75% { transform: rotate(var(--r, 25deg)) translate(8px, 5px); }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201,164,74,0.12);
    color: #c9a44a;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================
   PAIN POINTS (Home)
   ======================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pain-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #c9a44a;
}

.pain-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.pain-card:nth-child(1) .pain-icon { background: rgba(233,69,96,0.1); }
.pain-card:nth-child(2) .pain-icon { background: rgba(240,165,0,0.1); }
.pain-card:nth-child(3) .pain-icon { background: rgba(15,155,142,0.1); }

.pain-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   SERVICES (Home)
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c9a44a, #e8c86a);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201,164,74,0.2);
    margin-bottom: 12px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   LEVELS SECTION (Home)
   ======================================== */
.levels-section {
    background: linear-gradient(135deg, #0d2238 0%, #1a3a5c 100%);
    padding: 100px 0;
}

.levels-section .section-header h2 {
    color: var(--white);
}

.levels-section .section-header p {
    color: rgba(255,255,255,0.65);
}

.levels-section .section-badge {
    background: rgba(201,164,74,0.15);
    color: #e8c86a;
}

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

.level-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.level-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-6px);
}

.level-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.level-card:nth-child(1) .level-badge { background: rgba(15,155,142,0.2); color: var(--teal-light); }
.level-card:nth-child(2) .level-badge { background: rgba(240,165,0,0.2); color: var(--gold-light); }
.level-card:nth-child(3) .level-badge { background: rgba(233,69,96,0.2); color: var(--accent); }

.level-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.level-for {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-style: italic;
}

.level-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.level-features {
    list-style: none;
}

.level-features li {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.level-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.level-card:nth-child(1) .level-features li::before { background: var(--teal); }
.level-card:nth-child(2) .level-features li::before { background: var(--gold); }
.level-card:nth-child(3) .level-features li::before { background: var(--accent); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-box {
    background: #0d2238;
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-box .btn {
    position: relative;
}

/* ========================================
   HOW WE WORK (3 steps)
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--teal));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
}

.step-item:nth-child(1) .step-num { background: var(--accent); }
.step-item:nth-child(2) .step-num { background: var(--gold); color: var(--primary); }
.step-item:nth-child(3) .step-num { background: var(--teal); }

.step-item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   RONDA SECTION (Home)
   ======================================== */
.ronda-section {
    background: #0d2238;
    padding: 80px 0;
}

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

.ronda-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.ronda-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.ronda-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ronda-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.ronda-card:hover {
    background: rgba(201,164,74,0.08);
    transform: translateY(-3px);
}

.ronda-card h4 {
    font-family: var(--font-heading);
    color: #e8c86a;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.ronda-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin-bottom: 0;
}

/* ========================================
   METHODOLOGY PAGE
   ======================================== */
.method-hero {
    min-height: 50vh;
    background:
        radial-gradient(circle at 20% 50%, rgba(201,164,74,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(29,158,117,0.04) 0%, transparent 50%),
        linear-gradient(135deg, #0d2238 0%, #1a3a5c 40%, #0a3d62 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.method-hero .section-header {
    margin-bottom: 0;
}

.method-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.method-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto;
}

/* Plan comparison table */
.plans-table-wrapper {
    overflow-x: auto;
    margin: 48px 0;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13,34,56,0.10);
    background: #fff;
}

.plans-table thead th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 20px 24px;
    text-align: center;
}

.plans-table thead th:first-child {
    text-align: left;
}

.plans-table tbody td {
    padding: 16px 24px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.plans-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.plans-table tbody tr:hover {
    background: var(--gray-50);
}

.plans-table .check {
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 700;
}

.plans-table .no-check {
    color: var(--gray-400);
    font-size: 1.1rem;
}

/* Included services */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.included-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.included-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.included-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.included-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.included-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Problems table */
.problems-section {
    background: var(--gray-50);
}

.problems-grid {
    display: grid;
    gap: 24px;
}

.problem-row {
    display: grid;
    grid-template-columns: 150px 200px 1fr;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid;
    align-items: center;
    transition: var(--transition);
}

.problem-row:hover {
    box-shadow: var(--shadow-md);
}

.problem-row[data-level="visionario"] { border-color: var(--teal); }
.problem-row[data-level="momentum"] { border-color: var(--gold); }
.problem-row[data-level="scale"] { border-color: var(--accent); }

.problem-level {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-row[data-level="visionario"] .problem-level { color: var(--teal); }
.problem-row[data-level="momentum"] .problem-level { color: var(--gold); }
.problem-row[data-level="scale"] .problem-level { color: var(--accent); }

.problem-stage {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.problem-desc {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========================================
   ACADEMY PAGE
   ======================================== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.module-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.module-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.module-card:hover::after {
    transform: scaleX(1);
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.module-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 12px;
}

.module-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.academy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.academy-feature {
    text-align: center;
    padding: 32px 24px;
}

.academy-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.academy-feature:nth-child(1) .academy-feature-icon { background: rgba(233,69,96,0.1); }
.academy-feature:nth-child(2) .academy-feature-icon { background: rgba(240,165,0,0.1); }
.academy-feature:nth-child(3) .academy-feature-icon { background: rgba(15,155,142,0.1); }

.academy-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.academy-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========================================
   MENTORS PAGE
   ======================================== */
.mentor-areas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mentor-area {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.mentor-area:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.mentor-area-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(240,165,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
}

.mentor-area h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a44a;
    box-shadow: 0 0 0 3px rgba(201,164,74,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201,164,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-item p, .contact-item a {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.contact-item a:hover {
    color: #c9a44a;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 10px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 1.2rem;
    color: #c9a44a;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #0d2238;
    padding: 64px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-size: 1.4rem;
}

.footer-desc {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #e8c86a;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #e8c86a;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }

    .pyramid-wrapper {
        width: 320px;
        height: 260px;
    }

    .levels-grid,
    .services-grid,
    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .ronda-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

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

    .mentor-areas { grid-template-columns: repeat(3, 1fr); }

    .problem-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    /* --- Navbar & hamburger --- */
    .nav-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.08);
        border-radius: var(--radius-sm);
        padding: 8px;
    }

    .nav-toggle span {
        width: 20px;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
        display: block;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        transition: var(--transition);
        gap: 4px;
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
        z-index: 1001;
    }

    .nav-menu.open { right: 0; }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }

    .nav-menu a:hover, .nav-menu a.active {
        background: rgba(255,255,255,0.08);
    }

    .navbar {
        padding: 12px 0;
    }

    /* --- Hero --- */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* --- Pyramid mobile --- */
    .pyramid-wrapper {
        width: 100%;
        max-width: 340px;
        height: 220px;
        margin: 0 auto;
    }

    .pyramid-svg {
        overflow: visible;
    }

    /* --- Sections --- */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* --- Steps --- */
    .steps-grid::before { display: none; }
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 28px;
    }

    /* --- Cards --- */
    .pain-card, .service-card, .module-card {
        padding: 28px 22px;
    }

    .level-card {
        padding: 28px 22px;
    }

    /* --- Levels section --- */
    .levels-section {
        padding: 60px 0;
    }

    /* --- Ronda --- */
    .ronda-section {
        padding: 50px 0;
    }

    .ronda-text h2 {
        font-size: 1.6rem;
    }

    .ronda-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* --- CTA --- */
    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    /* --- Modules & Academy --- */
    .modules-grid { grid-template-columns: 1fr; }
    .academy-features { grid-template-columns: 1fr; }

    /* --- Mentors --- */
    .mentor-areas { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* --- Contact --- */
    .contact-form {
        padding: 28px 20px;
    }

    .form-row { grid-template-columns: 1fr; }

    /* --- FAQ --- */
    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 48px 0 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* --- Method hero (subpages) --- */
    .method-hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .method-hero h1 {
        font-size: 2rem;
    }

    /* --- Plans table --- */
    .plans-table thead th,
    .plans-table tbody td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }

    /* --- Included grid --- */
    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SURVEY PAGE
   ======================================== */
.survey-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

/* Progress bar */
.survey-progress {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.survey-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a44a, #e8c86a);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.survey-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

#surveyStepLabel {
    font-weight: 600;
    color: var(--gray-700);
}

/* Steps */
.survey-steps {
    position: relative;
    min-height: 420px;
}

.survey-step {
    display: none;
    opacity: 0;
}

.survey-step.active {
    display: block;
    animation: surveyFadeIn 0.3s ease forwards;
}

.survey-step.exit {
    display: none;
}

@keyframes surveyFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step header */
.survey-step-header {
    margin-bottom: 36px;
}

.survey-step-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201,164,74,0.12);
    color: #c9a44a;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.survey-step-num {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.survey-step-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.survey-step-header p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.survey-note {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 12px;
    background: rgba(201,164,74,0.1);
    color: #c9a44a;
    font-size: 0.78rem !important;
    font-weight: 600;
    border-radius: 50px;
}

/* Input fields (step 0) */
.survey-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.survey-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.survey-field input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}

.survey-field input:focus {
    outline: none;
    border-color: #c9a44a;
    box-shadow: 0 0 0 4px rgba(201,164,74,0.08);
}

.survey-field input.shake {
    animation: fieldShake 0.5s ease;
    border-color: var(--accent);
}

@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Next button */
.survey-next {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Options (question cards) */
.survey-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.survey-option {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.survey-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233,69,96,0.04), rgba(240,165,0,0.04));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.survey-option:hover {
    border-color: var(--gray-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.survey-option:hover::before {
    opacity: 1;
}

.survey-option.selected {
    border-color: var(--teal);
    background: rgba(15,155,142,0.04);
    box-shadow: 0 0 0 4px rgba(15,155,142,0.08);
    transform: translateY(-2px);
}

.survey-option.selected .survey-option-letter {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.survey-option-letter {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.survey-option-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.survey-option:hover .survey-option-letter {
    border-color: var(--gray-500);
    color: var(--gray-800);
}

/* ========================================
   SURVEY RESULTS
   ======================================== */
.survey-result {
    animation: surveyFadeIn 0.6s ease forwards;
}

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

.survey-result-header {
    text-align: center;
    margin-bottom: 40px;
}

.survey-result-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 12px;
}

.survey-result-level {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.survey-result-range {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* Score bar */
.survey-result-score {
    max-width: 400px;
    margin: 0 auto;
}

.survey-result-score-bar {
    position: relative;
    height: 10px;
    background: var(--gray-200);
    border-radius: 5px;
    overflow: visible;
    margin-bottom: 28px;
}

.survey-result-score-fill {
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition: none;
}

.survey-result-score-fill.animate {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.survey-result-score-markers {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
}

.survey-result-score-markers span {
    position: absolute;
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 600;
    transform: translateX(-50%);
}

.survey-result-score-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.survey-result-score-label strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Result body */
.survey-result-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.survey-result-desc {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Gestoria note */
.survey-result-gestoria {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    border-left: 3px solid var(--gold);
}

.survey-result-gestoria-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.survey-result-gestoria strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.survey-result-gestoria p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Recommendations */
.survey-result-recommendations {
    margin-bottom: 32px;
}

.survey-result-recommendations h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.survey-result-recommendations ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.survey-result-recommendations li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.survey-check {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1px;
}

/* CTA */
.survey-result-cta {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.survey-result-cta > p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.survey-result-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SURVEY RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .survey-wrapper {
        max-width: 100%;
    }

    .survey-step-header h2 {
        font-size: 1.3rem;
    }

    .survey-option {
        padding: 16px 18px;
        gap: 14px;
    }

    .survey-option-letter {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }

    .survey-option-text {
        font-size: 0.88rem;
    }

    .survey-result-level {
        font-size: 2.2rem;
    }

    .survey-result-body {
        padding: 28px 20px;
    }

    .survey-result-buttons {
        flex-direction: column;
    }

    .survey-result-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .survey-result-gestoria {
        flex-direction: column;
        gap: 10px;
    }
}
