/* BAKATKU POTENSIKU - Premium Landing Page Styles */
/* Brand Colors: Primary #3D2A22, Secondary #F7F2EB, Accent Gold #E8B14D, WhatsApp #25D366 */

:root {
    --primary: #3D2A22;
    --primary-light: #5A4035;
    --primary-dark: #2A1C17;
    --secondary: #F7F2EB;
    --secondary-dark: #EDE4D8;
    --accent: #E8B14D;
    --accent-light: #F0C878;
    --accent-dark: #C9942E;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;
    
    --font-heading: 'Segoe UI', 'Arial', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 40px -10px rgba(232, 177, 77, 0.3);
    
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
}

[v-cloak] { display: none; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(232, 177, 77, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(61, 42, 34, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 42, 34, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--secondary);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-lg {
    padding: 10px 18px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 60px;
}

.logo-image {
    width: 120px;
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    border-radius: 1px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 12px;
    color: var(--accent-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-visible {
    transform: translateY(0);
}

.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-text {
    font-weight: 600;
    color: var(--primary);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 50%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -150px;
    right: -100px;
    opacity: 0.2;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    opacity: 0.08;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    top: 50%;
    left: 30%;
    opacity: 0.15;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.hero-label i {
    color: var(--accent-dark);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 540px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.trust-badge i {
    color: var(--whatsapp);
    font-size: 18px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    isolation: isolate;
}

.hero-main-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fallback-illustration {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.illustration-parent-child {
    position: relative;
    width: 70%;
    height: 70%;
}

.parent-figure {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 45%;
    height: 75%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 100px 100px 20px 20px;
    box-shadow: var(--shadow-lg);
}

.child-figure {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 35%;
    height: 55%;
    background: var(--secondary);
    border-radius: 80px 80px 16px 16px;
    box-shadow: var(--shadow-lg);
}

.heart-float {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.heart-float i {
    color: #EF4444;
    font-size: 24px;
}

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

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

.card-learning {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-character {
    top: 45%;
    right: -30px;
    animation-delay: 1s;
}

.card-report {
    bottom: 15%;
    left: -10px;
    animation-delay: 2s;
}

.fc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(232, 177, 77, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 18px;
}

.fc-content {
    display: flex;
    flex-direction: column;
}

.fc-label {
    font-size: 12px;
    color: var(--gray-500);
}

.fc-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

/* Quiz Section */
.quiz-section {
    padding: 120px 0;
    background: var(--white);
}

.quiz-container {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 48px;
    border: 1px solid var(--gray-100);
}

.quiz-loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--secondary);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.quiz-intro {
    text-align: center;
    padding: 20px 0;
}

.quiz-intro-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(232, 177, 77, 0.2) 0%, rgba(232, 177, 77, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-dark);
    font-size: 36px;
}

.quiz-intro h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.quiz-intro p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.quiz-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto 32px;
    text-align: left;
}

.quiz-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.quiz-features li i {
    color: var(--whatsapp);
}

.quiz-progress {
    margin-bottom: 40px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.progress-bar {
    height: 10px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

.question-text {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--primary);
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.option-card:hover {
    border-color: var(--accent);
    background: rgba(232, 177, 77, 0.04);
}

.option-selected {
    border-color: var(--accent);
    background: rgba(232, 177, 77, 0.1);
    box-shadow: var(--shadow-gold);
}

.option-card input {
    display: none;
}

.option-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.option-selected .option-radio {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
}

.option-selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.option-text {
    font-weight: 500;
    color: var(--gray-700);
}

.option-selected .option-text {
    color: var(--primary);
    font-weight: 600;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.quiz-lead-form {
    max-width: 560px;
    margin: 0 auto;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.lead-form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(232, 177, 77, 0.2) 0%, rgba(232, 177, 77, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-dark);
    font-size: 32px;
}

.lead-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.lead-form-header p {
    color: var(--gray-500);
}

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

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

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

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232, 177, 77, 0.1);
}

.required {
    color: var(--error);
}

.optional {
    color: var(--gray-400);
    font-weight: 400;
}

.quiz-submitting {
    text-align: center;
    padding: 80px 20px;
}

/* Pain Points */
.pain-points {
    padding: 120px 0;
    background: var(--secondary);
}

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

.pain-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.pain-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 177, 77, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 24px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.pain-card p {
    color: var(--gray-500);
    font-size: 15px;
}

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

/* Discovery */
.discovery {
    padding: 120px 0;
    background: var(--white);
}

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

.discovery-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.discovery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.discovery-card-large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.discovery-card-large h3,
.discovery-card-large p {
    color: var(--white) !important;
}

.discovery-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 177, 77, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 22px;
    margin-bottom: 20px;
}

.discovery-card-large .discovery-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

.discovery-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.discovery-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

/* Report Preview */
.report-preview {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--white) 100%);
}

.report-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.report-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.report-track {
    display: flex;
    transition: transform 0.5s ease;
}

.report-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.report-card-visual {
    display: flex;
    justify-content: center;
}

.report-mockup {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.report-mockup-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.mockup-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mockup-header {
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.mockup-body {
    padding: 24px;
}

.mockup-chart {
    height: 120px;
    background: linear-gradient(180deg, rgba(232, 177, 77, 0.3) 0%, rgba(232, 177, 77, 0.05) 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    position: relative;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: rgba(232, 177, 77, 0.4);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-line {
    height: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.mockup-line.short {
    width: 70%;
}

.report-card-content {
    padding: 20px 0;
}

.report-icon {
    width: 70px;
    height: 70px;
    background: rgba(232, 177, 77, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 28px;
    margin-bottom: 24px;
}

.report-card-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.report-card-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.7;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent-dark);
    width: 32px;
    border-radius: var(--radius-full);
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary-light) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item-right {
    direction: rtl;
}

.timeline-item-right > * {
    direction: ltr;
}

.timeline-content {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    position: relative;
}

.timeline-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--gray-500);
}

.timeline-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent-dark);
    font-size: 36px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent);
}

/* Social Proof */
.social-proof {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.social-proof .section-header h2,
.social-proof .section-header p {
    color: var(--white);
}

.social-proof .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--gray-800);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 32px;
    font-style: italic;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--gray-500);
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-nav .carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.testimonial-nav .carousel-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Founder Story */
.founder-story {
    padding: 120px 0;
    background: var(--secondary);
}

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

.founder-visual {
    display: flex;
    justify-content: center;
}

.founder-image {
    position: relative;
    display: inline-block;
    width: min(100%, 550px);
}

.founder-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 11 / 12;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.founder-placeholder {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 120px;
    box-shadow: var(--shadow-xl);
}

.fallback-founder {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 36px;
    box-shadow: var(--shadow-lg);
}

.founder-content {
    padding: 20px 0;
}

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

.founder-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--primary);
}

.value-item i {
    color: var(--accent-dark);
}

/* Packages */
.packages {
    padding: 120px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    align-items: stretch;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-recommended {
    border-color: var(--accent);
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.package-premium {
    border-color: var(--primary);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.package-badge.premium {
    background: var(--primary);
    color: var(--white);
}

.package-header {
    text-align: center;
    margin-bottom: 24px;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.package-tagline {
    color: var(--gray-500);
    font-size: 14px;
}

.package-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-original {
    display: block;
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 4px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.package-description {
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-50);
    color: var(--gray-700);
    font-size: 14px;
}

.package-features li i {
    color: var(--whatsapp);
    margin-top: 3px;
    flex-shrink: 0;
}

.package-card .btn-block {
    margin-bottom: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--secondary);
    font-weight: 700;
}

.comparison-feature {
    padding: 18px 24px;
    color: var(--primary);
}

.comparison-plan {
    padding: 18px;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.recommended-tag {
    display: block;
    font-size: 10px;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.check-yes {
    color: var(--whatsapp);
    font-size: 20px;
}

.check-no {
    color: var(--gray-300);
    font-size: 20px;
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: var(--secondary);
}

.faq-search {
    max-width: 560px;
    margin: 0 auto 48px;
    position: relative;
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.faq-search input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232, 177, 77, 0.1);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}

.faq-icon {
    transition: var(--transition);
    color: var(--accent-dark);
}

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

.faq-answer {
    padding: 0 28px 24px;
    color: var(--gray-500);
    line-height: 1.8;
    white-space: pre-line;
}

.faq-empty {
    text-align: center;
    padding: 40px;
    color: var(--gray-500);
}

.faq-empty i {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

/* Final CTA */
.final-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.final-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
}

.final-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.final-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.ft-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    opacity: 0.9;
}

.ft-item i {
    color: var(--accent);
}

/* Page Static */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--primary);
}

.page-content {
    padding: 60px 0 80px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.privacy-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.privacy-content ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.8;
}

.privacy-content ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--whatsapp);
    font-size: 12px;
    top: 10px;
}

.privacy-content strong {
    color: var(--primary);
}

/* Turbo Method Page */
.page-hero.turbo-hero {
    background:
        radial-gradient(circle at top left, rgba(232, 177, 77, 0.22), transparent 32%),
        radial-gradient(circle at top right, rgba(37, 211, 102, 0.14), transparent 26%),
        linear-gradient(135deg, #2f221b 0%, #4d3528 100%);
    position: relative;
    overflow: hidden;
}

.page-hero.turbo-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero.turbo-hero h1 {
    color: #fffdf9;
}

.page-hero.turbo-hero p {
    color: rgba(255, 255, 255, 0.92);
}

.page-hero.turbo-hero::before,
.page-hero.turbo-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    z-index: 0;
}

.page-hero.turbo-hero::before {
    width: 220px;
    height: 220px;
    top: 40px;
    left: -60px;
}

.page-hero.turbo-hero::after {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -40px;
}

.turbo-page-section {
    padding: 80px 0;
    background:
        linear-gradient(180deg, rgba(247, 242, 235, 0.65) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.turbo-intro {
    max-width: 880px;
    margin: 0 auto 32px;
    text-align: center;
}

.turbo-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 14px;
}

.turbo-intro p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.9;
}

.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    margin-top: 40px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 6%;
    right: 6%;
    height: 3px;
    background: linear-gradient(90deg, rgba(61,42,34,0.12), rgba(232,177,77,0.85), rgba(61,42,34,0.12));
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, #fffefb 0%, #fff8ef 100%);
    border: 1px solid rgba(61, 42, 34, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(61, 42, 34, 0.08);
    padding: 24px 18px 22px;
    text-align: center;
    min-height: 100%;
    transition: var(--transition);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, #b37d29 100%);
}

.process-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 26px 50px rgba(61, 42, 34, 0.14);
}

.process-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #704f3f 100%);
    color: var(--white);
    font-size: 1.55rem;
    margin: 4px auto 8px;
    box-shadow: 0 12px 24px rgba(61, 42, 34, 0.22);
}

.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 2px;
    color: var(--primary);
    letter-spacing: 0.2px;
}

.process-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.72;
    min-height: 120px;
    margin: 0;
}

.process-result {
    display: inline-block;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(61, 42, 34, 0.16);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-result span {
    color: var(--accent-dark);
    font-weight: 800;
}

.turbo-quote {
    margin-top: 42px;
    text-align: center;
    padding: 22px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232, 177, 77, 0.12), rgba(61, 42, 34, 0.06));
    color: var(--primary);
    font-size: 1.02rem;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(61, 42, 34, 0.06);
}

.turbo-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-flow::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-card p {
        min-height: auto;
    }
}

/* 404 Page */
.error-404-section {
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(232, 177, 77, 0.18), transparent 20%),
        radial-gradient(circle at bottom right, rgba(37, 211, 102, 0.16), transparent 24%),
        linear-gradient(135deg, #fefbf7 0%, #f8f1e7 100%);
}

.error-404-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 42px;
}

.error-404-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 12vw, 8rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(61, 42, 34, 0.08);
    z-index: 0;
}

.error-404-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.orb-one {
    width: 220px;
    height: 220px;
    background: rgba(232, 177, 77, 0.24);
    top: 20px;
    left: 20px;
}

.orb-two {
    width: 180px;
    height: 180px;
    background: rgba(37, 211, 102, 0.18);
    right: 20px;
    bottom: 30px;
}

.error-404-icon {
    position: relative;
    z-index: 1;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #6a4837 100%);
    color: var(--white);
    font-size: 3.2rem;
    box-shadow: 0 20px 45px rgba(61, 42, 34, 0.18);
}

.error-404-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.error-404-content p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 650px;
}

.error-404-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .error-404-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .error-404-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .error-404-section {
        padding-top: 120px;
    }

    .error-404-visual {
        min-height: 280px;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo-brand,
.footer-brand .logo-tagline {
    color: var(--white);
}

.footer-brand p {
    margin: 20px 0;
    opacity: 0.8;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a,
.footer-bottom a:hover,
.footer-bottom a:focus,
.footer-bottom a:visited {
    color: #ffffff;
    text-decoration: none;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.sticky-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.sticky-whatsapp i {
    font-size: 24px;
}

.sw-text {
    font-size: 14px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 24px;
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.exit-modal,
.lead-magnet-modal {
    text-align: center;
}

.exit-icon,
.lead-magnet-image {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(232, 177, 77, 0.2) 0%, rgba(232, 177, 77, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-dark);
    font-size: 40px;
}

.exit-modal h3,
.lead-magnet-modal h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.exit-modal p,
.lead-magnet-modal p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

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

.exit-form input {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
}

.exit-form input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Quiz Result Modal */
.quiz-result-modal {
    max-width: 560px;
    padding: 0;
    overflow: visible;
}

.quiz-result-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.result-badge {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}

.quiz-result-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.result-category {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-result-body {
    padding: 32px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
}

.result-summary {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
}

.result-recommendation {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.result-recommendation h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.result-recommendation h4 i {
    color: var(--accent-dark);
}

.result-recommendation p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.result-breakdown h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.breakdown-item {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.breakdown-label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: capitalize;
}

.breakdown-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-full);
    transition: width 0.8s ease;
}

.breakdown-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

.quiz-result-footer {
    padding: 0 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, #fdfefe 0%, #f6f9fc 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    font-weight: 500;
    color: var(--white);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--error); }
.toast.info { background: var(--primary); }

/* Transitions */
.fade-scale-enter-active,
.fade-scale-leave-active {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-scale-enter-from,
.fade-scale-leave-to {
    opacity: 0;
    transform: scale(0.95);
}

.slide-fade-enter-active,
.slide-fade-leave-active {
    transition: all 0.3s ease;
}

.slide-fade-enter-from {
    opacity: 0;
    transform: translateX(20px);
}

.slide-fade-leave-to {
    opacity: 0;
    transform: translateX(-20px);
}

.accordion-enter-active,
.accordion-leave-active {
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-enter-from,
.accordion-leave-to {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.slide-up-enter-active,
.slide-up-leave-active {
    transition: all 0.3s ease;
}

.slide-up-enter-from,
.slide-up-leave-to {
    opacity: 0;
    transform: translate(-50%, 20px);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .trust-badges {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .pain-grid,
    .discovery-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discovery-card-large {
        grid-column: span 2;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-values {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .founder-story {
        padding: 80px 0;
    }

    .founder-image {
        width: min(100%, 420px);
    }

    .founder-img {
        max-width: 420px;
    }

    .founder-placeholder {
        width: min(100%, 280px);
        font-size: 80px;
    }
    
    .nav-active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hidden-mobile {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 420px;
    }
    
    .floating-card {
        display: flex;
        padding: 10px 12px;
        gap: 8px;
        z-index: 6;
    }

    .fc-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .fc-label {
        font-size: 11px;
    }

    .fc-value {
        font-size: 13px;
    }

    .card-learning {
        top: 10px;
        left: 10px;
    }

    .card-character {
        top: 42%;
        right: 8px;
    }

    .card-report {
        bottom: 10px;
        left: 10px;
    }
    
    .quiz-container {
        padding: 28px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .pain-grid,
    .discovery-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .discovery-card-large {
        grid-column: span 1;
    }
    
    .report-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .report-mockup {
        max-width: 220px;
    }
    
    .timeline-line {
        left: 24px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 64px;
        margin-bottom: 32px;
    }
    
    .timeline-item-right {
        direction: ltr;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 32px;
    }
    
    .testimonial-content {
        font-size: 1.1rem;
    }
    
    .founder-badge {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .founder-values {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .value-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
    
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .comparison-feature {
        padding: 14px 12px;
        font-size: 13px;
    }
    
    .comparison-plan {
        padding: 14px 8px;
        font-size: 12px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .social-links,
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .sticky-whatsapp {
        bottom: 120px;
        right: 16px;
        padding: 12px;
    }
    
    .sw-text {
        display: none;
    }
    
    .sticky-cta .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .sticky-text {
        font-size: 13px;
    }
    
    .modal-content {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .quiz-container,
    .report-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .modal-overlay {
        align-items: flex-start;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .modal-content {
        padding: 24px;
        max-height: calc(100vh - 32px);
    }
    
    .quiz-result-header {
        padding: 28px 24px;
    }

    .quiz-result-body {
        padding: 24px;
    }

    .quiz-result-footer {
        padding: 0 24px 24px;
    }
    
    .quiz-result-footer .btn {
        width: 100%;
    }
    
    .result-recommendation {
        padding: 16px;
    }
    
    .breakdown-item {
        grid-template-columns: 90px 1fr 40px;
    }
    
    .breakdown-bar {
        height: 7px;
    }
    
    .breakdown-label,
    .breakdown-value {
        font-size: 12px;
    }
    
    .result-summary {
        font-size: 1rem;
    }
    
    .quiz-result-header h3 {
        font-size: 1.25rem;
    }
    
    .result-recommendation h4 {
        font-size: 0.95rem;
    }
    
    .result-breakdown h4 {
        font-size: 0.95rem;
    }

    .package-card {
        padding: 32px 24px;
    }
    
    .carousel-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding: 48px 0;
    }
    
    .page-content {
        padding: 40px 0 60px;
    }
    
    .privacy-content h2 {
        font-size: 1.1rem;
    }
}