

/* ============================================
   REAXIO LANDING PAGE STYLES
   Modern Orange & Navy Theme
   ============================================ */

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

:root {
    --primary-orange: #FF6D00;
    --primary-navy: #1A237E;
    --navy-light: #3949AB;
    --orange-light: #FF9100;
    --gradient-navy: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
    --gradient-orange: linear-gradient(135deg, #FF6D00 0%, #FF9100 100%);
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 10px 40px rgba(26, 35, 126, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 35, 126, 0.15);
    --shadow-orange: 0 10px 40px rgba(255, 109, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

body.landing-page {
    background: var(--bg-white);
}

/* ============================================
   QUIZ PAGE STYLES
   ============================================ */

#quizPage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--navy-light) 100%);
    padding: 20px;
}

.quiz-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.quiz-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-loading {
    text-align: center;
    color: var(--text-light);
}

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

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

.quiz-content {
    width: 100%;
}

.quiz-category {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.quiz-question {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.quiz-stats {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 20px;
}

.open-app-btn {
    width: 100%;
    max-width: 500px;
    padding: 18px 32px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
}

.open-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 109, 0, 0.3);
}

.open-app-btn:active {
    transform: translateY(0);
}

.download-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    align-items: center;
}

.download-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.error-message {
    text-align: center;
    color: var(--text-dark);
}

.error-message h3 {
    color: #e53e3e;
    margin-bottom: 10px;
    font-size: 20px;
}

.error-message p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.error-details {
    font-size: 12px;
    color: var(--text-lighter);
    background: var(--bg-light);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-family: monospace;
}

/* Responsive */
@media (max-width: 640px) {
    .quiz-card {
        padding: 30px 20px;
    }
    
    .quiz-question {
        font-size: 20px;
    }
    
    .open-app-btn {
        font-size: 16px;
        padding: 16px 28px;
    }
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.logo-icon {
    font-size: 1.8rem;
    filter: none;
}

.logo-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.btn-nav {
    background: var(--gradient-orange);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 109, 0, 0.3);
}

/* Hero Section */
.hero {
    background: var(--gradient-navy);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, #FF9100 0%, #FFB74D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 109, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.btn-appstore {
    background: white;
    color: var(--primary-navy);
    box-shadow: var(--shadow-orange);
}

.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.35);
    background: var(--bg-light);
}

.btn-playstore {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-playstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 109, 0, 0.35);
}

.store-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-4px);
}

.store-badge {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.store-btn:hover .store-badge {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

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

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

.btn-icon {
    font-size: 1.3rem;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    color: white;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--primary-navy);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: var(--primary-navy);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-preview {
    padding: 32px 24px;
    width: 100%;
}

.quiz-header {
    margin-bottom: 24px;
}

.quiz-category {
    display: inline-block;
    background: var(--gradient-navy);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.quiz-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    position: relative;
    padding: 16px;
    border-radius: 12px;
    background: white;
    border: 2px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 60px;
}

.option-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gradient-orange);
    opacity: 0.15;
    transition: width 0.5s ease;
}

.quiz-option span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--text-dark);
}

.option-percent {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 700;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.feature-card {
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: var(--primary-orange);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-chip {
    padding: 12px 24px;
    background: white;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: default;
    border: 2px solid transparent;
}

.category-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    background: var(--gradient-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,109,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-title .gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

/* New Elements */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge-icon {
    font-size: 1.1rem;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08) 0%, rgba(57, 73, 171, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08) 0%, rgba(57, 73, 171, 0.08) 100%);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--primary-orange);
    transform: scale(1.15);
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chip-emoji {
    font-size: 1.2rem;
}

.chip-text {
    font-weight: 600;
}

.category-chip-highlight {
    background: var(--gradient-orange);
    color: white;
    border-color: var(--primary-orange);
}

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

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-orange);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -120px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -140px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 45%;
    left: -120px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-emoji {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.cta-stat-icon {
    font-size: 2rem;
}

.cta-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.cta-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 109, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-orange);
    color: white;
    transform: translateY(-2px);
}

.footer-made {
    margin-top: 8px;
    opacity: 0.7;
}

.quiz-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-icon {
    font-size: 1rem;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.option-emoji {
    font-size: 1.5rem;
}

.option-text {
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-lighter);
    padding: 60px 0 30px;
}

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

.footer-brand {
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-lighter);
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-lighter);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   QUIZ DETAIL PAGE STYLES (for /quiz/:id)
   ============================================ */

body:not(.landing-page) {
    background: var(--gradient-navy);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

body:not(.landing-page) .container {
    max-width: 600px;
    width: 100%;
}

.content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 2.5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.quiz-card {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--primary-orange);
}

.loading {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.quiz-content {
    text-align: center;
}

.quiz-stats {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-section {
    text-align: center;
    margin-bottom: 30px;
}

.info-section h2 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature p {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 500;
    margin: 0;
}

.error-message {
    text-align: center;
    color: #e53e3e;
    padding: 20px;
}

.error-message h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .floating-cards {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-column a {
        margin-bottom: 12px;
    }
    
    .cta-stats {
        gap: 24px;
    }
    
    .cta-stat {
        padding: 12px 20px;
    }
}

@media (max-width: 640px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .quiz-question {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: var(--primary-orange);
    color: white;
}






