/* ===== CSS Variables ===== */
:root {
    /* Colors from app theme */
    --primary: #C28AB4;
    --blush: #F9B2C4;
    --orchid: #C28AB4;
    --success: #22C55E;
    --error: #EF4444;
    --mint: #C0F3E8;

    /* Backgrounds */
    --bg-dark: #1E1A28;
    --bg-darker: #151320;
    --bg-elevated: #332E40;
    --bg-card: #1A1821;
    --bg-card-hover: #252131;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.5);

    /* Borders */
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #F9B2C4 0%, #C28AB4 100%);
    --gradient-primary-reverse: linear-gradient(90deg, #C28AB4 0%, #F9B2C4 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(194, 138, 180, 0.3);

    /* Typography */
    --font-display: 'League Spartan', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1440px;
    --section-padding: 80px;
    --section-padding-sm: 56px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(30, 26, 40, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: -3px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

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

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    color: var(--text-primary);
    border-color: var(--primary);
}

.lang-switcher {
    position: relative;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.open {
    display: flex;
    flex-direction: column;
}

.lang-option {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.lang-option.active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

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

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(194, 138, 180, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

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

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(194, 138, 180, 0.15);
    border: 1px solid rgba(194, 138, 180, 0.3);
    border-radius: 100px;
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.95);
}

/* Rotating teaser */
.hero-teaser {
    position: relative;
    height: 30px;
    margin-bottom: 16px;
    overflow: hidden;
}

.hero-teaser-line {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 600;
    color: #F9B2C4;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
}

.hero-teaser-line.active {
    opacity: 1;
    transform: translateY(0);
}

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

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mobile below-phone CTA + trust: hidden on desktop */
.hero-below-phone {
    display: none;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-platforms {
    margin-top: 16px;
    padding: 10px 20px;
    background: rgba(194, 138, 180, 0.1);
    border: 1px solid rgba(194, 138, 180, 0.2);
    border-radius: 100px;
    display: inline-block;
}

.hero-platforms span {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

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

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    position: relative;
    width: 260px;
    background: linear-gradient(145deg, #2a2a2f, #1a1a1f, #222228);
    border-radius: 52px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.18),
        0 0 0 3px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 40px 100px rgba(0,0,0,0.7),
        0 0 80px rgba(194,138,180,0.12);
}

.phone-frame.small {
    width: 220px;
    border-radius: 32px;
    padding: 10px;
}

/* Dynamic Island */
.phone-dynamic-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-screen {
    border-radius: 28px;
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.phone-frame.small .phone-screen {
    border-radius: 22px;
}

/* Larger phone frames on big screens */
@media (min-width: 1400px) {
    .phone-frame {
        width: 300px;
        border-radius: 54px;
        padding: 12px;
    }

    .phone-frame.small {
        width: 240px;
        border-radius: 44px;
    }

    .phone-dynamic-island {
        width: 100px;
        height: 30px;
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 10px;
}

.card-icon.purple {
    background: rgba(194, 138, 180, 0.15);
}

.card-1 {
    top: 20%;
    right: -20px;
    z-index: 3;
}

.card-2 {
    bottom: 25%;
    left: -40px;
    z-index: 3;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-subtle);
    font-size: 13px;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    transform: rotate(180deg);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(194, 138, 180, 0.15);
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
}

/* ===== Problems Section ===== */
.problems {
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

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

.problem-card {
    background: var(--bg-dark);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 28px;
    transition: all var(--transition-normal);
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 14px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

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

.solution-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 48px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

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

.solution-card {
    background: var(--bg-dark);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 28px;
    transition: all var(--transition-normal);
}

.solution-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.solution-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 14px;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

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

/* ===== Audience Section ===== */
.audience {
    background: var(--bg-dark);
}

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

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all var(--transition-normal);
}

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

.audience-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 138, 180, 0.1);
    border-radius: 18px;
    margin-bottom: 24px;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.audience-card > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.audience-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.audience-benefits li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Results Section ===== */
.results {
    background: var(--bg-darker);
}

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

.result-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.result-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.result-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.results-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-dark);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.results-quote blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.results-quote cite {
    font-size: 14px;
    color: var(--primary);
    font-style: normal;
}

/* ===== Features Section (Legacy) ===== */
.features {
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-normal);
    opacity: 1;
    visibility: visible;
}

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

.feature-card.feature-main {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(194, 138, 180, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.feature-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 138, 180, 0.15);
    border-radius: 20px;
    margin-bottom: 28px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-main h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

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

.feature-main p {
    font-size: 17px;
    max-width: 400px;
}

.feature-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== How It Works Section ===== */
.how-it-works {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(194,138,180,0.04) 0%,
        transparent 40%,
        transparent 60%,
        rgba(249,178,196,0.03) 100%
    );
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    color: var(--bg-darker);
    border-radius: 50%;
}

.step-visual {
    width: 200px;
    height: 400px;
    margin: 0 auto 24px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Large screens - bigger step visuals */
@media (min-width: 1400px) {
    .step-visual {
        width: 240px;
        height: 480px;
        border-radius: 28px;
    }

    .step {
        max-width: 380px;
    }
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
}

/* ===== Demo Section ===== */
.demo-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.demo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.demo-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.demo-phone {
    transition: transform var(--transition-normal);
}

.demo-phone-left,
.demo-phone-right {
    opacity: 0.7;
}

.demo-phone-left {
    transform: translateX(40px) scale(0.9);
}

.demo-phone-right {
    transform: translateX(-40px) scale(0.9);
}

.demo-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.demo-text p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--bg-dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--success);
    background: rgba(34, 197, 94, 0.15);
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all var(--transition-normal);
    opacity: 1;
    visibility: visible;
}

.pricing-card:hover {
    border-color: rgba(194, 138, 180, 0.3);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(194, 138, 180, 0.1) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 0 60px rgba(194,138,180,0.1), 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 0 80px rgba(194,138,180,0.15), 0 24px 60px rgba(0,0,0,0.25);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-darker);
    background: var(--gradient-primary);
    border-radius: 100px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-name {
    font-size: 20px;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    align-self: flex-start;
    margin-top: 4px;
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-description {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-trial-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(249, 178, 196, 0.12);
    border: 1px solid rgba(249, 178, 196, 0.3);
    color: rgba(249, 178, 196, 0.95);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-features {
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-features li.pricing-features-section {
    display: block;
    padding: 14px 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(249, 178, 196, 0.85);
    border-top: 1px solid rgba(194, 138, 180, 0.15);
    margin-top: 4px;
}

.pricing-features li.pricing-features-section:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

/* Early Bird Banner */
.pricing-early-bird {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(194,138,180,0.08), rgba(249,178,196,0.06));
    border: 1px solid rgba(249,178,196,0.2);
    border-radius: 14px;
    text-align: center;
}

.pricing-early-bird p {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Save Badge (Pro Yearly) */
.pricing-save-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #22C55E, #16a34a);
    border-radius: 100px;
    white-space: nowrap;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    align-items: start;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(194, 138, 180, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(194, 138, 180, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

.faq-question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--section-padding-sm) 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--bg-darker);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(26, 24, 33, 0.8);
    margin-bottom: 32px;
}

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

.cta-section .btn-primary {
    background: white;
    color: #1a1821;
    font-weight: 700;
    border: none;
}

.cta-section .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ===== Section Dividers ===== */
.how-it-works,
.app-showcase,
.faq {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.problems::before,
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,178,196,0.15), transparent);
}
.problems,
.pricing {
    position: relative;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: var(--section-padding-sm) 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-subtle);
}

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

.footer-social a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* ===== Social Proof Bar ===== */
.social-proof {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

/* ===== Premium Value Bar ===== */
.value-bar {
    padding: 0 0 0;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(194,138,180,0.04) 0%, transparent 70%);
}

.value-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
}

.value-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    gap: 6px;
    text-align: center;
    transition: background var(--transition-fast);
}

.value-bar-item:hover {
    background: rgba(255,255,255,0.03);
}

.value-bar-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.value-bar-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.value-bar-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    align-self: stretch;
    flex-shrink: 0;
}

.proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.proof-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 14px;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== Why Instagram Section ===== */
.instagram-section {
    background: var(--bg-dark);
    padding: var(--section-padding) 0;
}

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

.instagram-point {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all var(--transition-normal);
}

.instagram-point:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.instagram-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 138, 180, 0.1);
    border-radius: 18px;
    margin: 0 auto 24px;
}

.instagram-point h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.instagram-point p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== AI Features Section ===== */
.ai-features {
    background: var(--bg-darker);
    padding: var(--section-padding) 0;
}

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

.ai-feature {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.ai-feature:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.ai-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 138, 180, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
}

.ai-feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* ===== Pricing Guarantee ===== */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 16px 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-guarantee span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Trust Badges ===== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
}
.trust-badge svg {
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .trust-badges {
        gap: 16px;
    }
    .trust-badge {
        font-size: 0.7rem;
    }
}

/* ===== CTA Note ===== */
.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(26, 24, 33, 0.6);
}

/* ===== Footer Platforms ===== */
.footer-platforms {
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(194, 138, 180, 0.1);
    border: 1px solid rgba(194, 138, 180, 0.2);
    border-radius: 100px;
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
}

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

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

    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-teaser-line {
        justify-content: center;
    }

    /* Reorder: text -> phone -> CTA+trust below phone */
    .hero-text {
        order: 1;
    }
    .hero-phone-showcase {
        order: 2;
    }
    .hero-below-phone {
        display: block;
        order: 3;
        margin-top: 16px;
    }
    .hero-cta-desktop,
    .hero-trust-desktop {
        display: none;
    }
    .hero-below-phone .hero-cta {
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 28px;
    }
    .hero-below-phone .hero-cta .btn {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    .hero-below-phone .hero-trust {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .hero-below-phone .hero-trust .trust-item {
        opacity: 1 !important;
        transform: none !important;
    }

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

    .feature-card.feature-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .step {
        max-width: 100%;
    }

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

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

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

    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero-teaser {
        height: 44px;
    }

    .hero-teaser-line {
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        font-size: 15px;
    }

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

    .proof-grid {
        gap: 24px;
    }

    .proof-divider {
        display: none;
    }

    .proof-number {
        font-size: 28px;
    }

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

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

    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

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

    .result-value {
        font-size: 36px;
    }

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

    .feature-card.feature-main {
        grid-column: span 1;
        padding: 32px;
    }

    .demo-phones {
        flex-direction: column;
    }

    .demo-phone-left,
    .demo-phone-right {
        display: none;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

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

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

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 24px;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .hero-teaser {
        height: 40px;
        margin-bottom: 10px;
    }

    .hero-teaser-line {
        font-size: 13px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-below-phone .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 24px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in {
    opacity: 0;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

/* Animation Classes */
.animated {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated.visible {
    opacity: 1;
    transform: none;
}

/* ===== Section Dividers / Monotony Breakers ===== */
.section-divider {
    width: 100%;
    height: 1px;
    border: none;
    margin: 0;
    background: linear-gradient(90deg, transparent, rgba(249,178,196,0.15) 25%, rgba(194,138,180,0.2) 50%, rgba(249,178,196,0.15) 75%, transparent);
}

.section-divider--subtle {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
}

.section-divider--glow {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(249,178,196,0.25) 30%, rgba(194,138,180,0.3) 50%, rgba(249,178,196,0.25) 70%, transparent);
    box-shadow: 0 0 20px rgba(249,178,196,0.05);
}

/* ===== Legal / Support Pages ===== */
.legal-page {
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 40px 0 80px;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 32px;
    transition: color var(--transition-fast);
}

.legal-back:hover {
    color: var(--text-primary);
}

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

.legal-header h1 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-meta {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.legal-lang-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.legal-lang-btn {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.legal-lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.legal-lang-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #1A1821;
    font-weight: 600;
}

.legal-content {
    display: none;
}

.legal-content.active {
    display: block;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

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

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

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

.legal-content a {
    color: var(--blush);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.highlight-box strong {
    color: var(--text-primary);
}

.highlight-box a {
    color: var(--blush);
    text-decoration: none;
}

.highlight-box a:hover {
    text-decoration: underline;
}

.legal-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.legal-related-title {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-related-links a {
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.legal-related-links a:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .legal-header h1 {
        font-size: 30px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-page {
        padding: 24px 0 60px;
    }

    .legal-related-links {
        flex-direction: column;
        gap: 10px;
    }
}
