/* ============================================
   WIT DATING - LANDING PAGE STYLES
   Brand: Neon Purple (#A855F7) → Hot Pink (#EC4899)
   ============================================ */

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

:root {
    --primary: #A855F7;
    --primary-light: #C084FC;
    --primary-dark: #9333EA;
    --accent: #EC4899;
    --bg: #0F0A1A;
    --surface: #1A1230;
    --surface-elevated: #241B3A;
    --surface-light: #2D2145;
    --text-primary: #FFFFFF;
    --text-secondary: #B0A4C8;
    --text-muted: #6B5A8A;
    --safe: #22C55E;
    --bold: #EAB308;
    --error: #EF4444;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--surface-light);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.08);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(15, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--surface-light);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-menu-cta {
    margin-top: 8px;
    text-align: center;
    padding: 14px !important;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50px;
    color: white !important;
    font-weight: 600 !important;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    top: 10%;
    left: 20%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-stars {
    color: var(--bold);
    font-size: 16px;
    letter-spacing: 2px;
}

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

.phone-mockup {
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 300px;
    background: var(--surface);
    border-radius: 36px;
    border: 2px solid var(--surface-light);
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(168, 85, 247, 0.1);
}

.phone-screen {
    background: var(--bg);
    border-radius: 26px;
    padding: 20px 16px;
    min-height: 500px;
    overflow: hidden;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--surface-light);
}

.mock-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

.mock-header span {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-secondary);
}

.mock-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.mock-bubble-them {
    background: var(--surface-elevated);
    color: var(--text-primary);
    border-bottom-left-radius: 6px;
    max-width: 90%;
}

.mock-result {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid var(--surface-light);
}

.mock-tone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.mock-tone-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-tone-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--bold);
}

.mock-interest {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.mock-interest-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mock-interest-bar {
    flex: 1;
    height: 6px;
    background: var(--surface-light);
    border-radius: 3px;
    overflow: hidden;
}

.mock-interest-fill {
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.mock-interest-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--safe);
}

.mock-flags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mock-flag {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.mock-flag-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--safe);
}

.mock-replies-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.mock-reply {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
    cursor: default;
    border: 1px solid transparent;
}

.mock-reply-safe {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
    color: var(--text-primary);
}

.mock-reply-bold {
    background: rgba(234, 179, 8, 0.08);
    border-color: rgba(234, 179, 8, 0.15);
    color: var(--text-primary);
}

.mock-reply-playful {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.15);
    color: var(--text-primary);
}

/* --- Section Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* --- Features --- */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.1);
}

.feature-card.animate-in:hover {
    transform: translateY(-4px);
}

.feature-card-large {
    grid-column: span 2;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tag-safe {
    background: rgba(34, 197, 94, 0.1);
    color: var(--safe);
}

.tag-bold {
    background: rgba(234, 179, 8, 0.1);
    color: var(--bold);
}

.tag-playful {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent);
}

/* --- Personalities --- */
.personalities {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg), var(--surface), var(--bg));
}

.personalities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.personality-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.personality-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.personality-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.1);
}

.personality-card.animate-in:hover {
    transform: translateY(-4px);
}

.personality-emoji {
    font-size: 42px;
    margin-bottom: 12px;
}

.personality-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.personality-tagline {
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.personality-preview {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* --- Games --- */
.games {
    padding: 100px 0;
}

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

.game-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.game-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.game-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.1);
}

.game-card.animate-in:hover {
    transform: translateY(-4px);
}

.game-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.game-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg), var(--surface), var(--bg));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), var(--surface));
    transform: scale(1.02) translateY(20px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.15);
}

.pricing-card-featured.animate-in {
    transform: scale(1.02) translateY(0);
}

.pricing-popular, .pricing-save {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-popular {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.pricing-save {
    background: var(--safe);
    color: var(--bg);
}

.pricing-tier {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(107, 90, 138, 0.15);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--text-primary);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 32px;
}

/* --- Download CTA --- */
.download {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 28px;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.download-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.download-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--surface-light);
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--surface-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Legal Page Styles (shared) --- */
.legal-page {
    padding: 120px 0 60px;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 6px;
}

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

.legal-content a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(192, 132, 252, 0.3);
    text-underline-offset: 3px;
}

.legal-content a:hover {
    text-decoration-color: var(--primary-light);
}

.legal-content hr {
    border: none;
    border-top: 1px solid var(--surface-light);
    margin: 40px 0;
}

/* --- Support Page --- */
.support-page {
    padding: 120px 0 60px;
}

.support-page .container {
    max-width: 800px;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 48px;
}

.support-card {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.1);
}

.support-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.support-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.support-faq {
    margin-top: 48px;
}

.support-faq h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--surface-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--primary-light);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

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

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .personalities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .feature-card-large {
        grid-column: span 2;
    }

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

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

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

    .feature-card-large {
        grid-column: span 1;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured.animate-in {
        transform: none;
    }

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

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

    .support-cards {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: 260px;
    }
}

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

    .btn {
        width: 100%;
    }

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