/* ============================================== */
/* CSS DESIGN TOKENS (from EasyDash app theme)   */
/* ============================================== */

:root {
    /* Primary Colors (from Color.kt) */
    --primary: #4B7BC0;
    --primary-container: #DCEAF8;
    --on-primary-container: #162B45;
    --secondary: #0CA678;
    --secondary-container: #D4F5E9;
    --tertiary: #5A7A94;
    --tertiary-container: #D6E8F5;

    /* Background & Surface */
    --bg-page: #F8F9FB;
    --bg-surface: #FFFFFF;
    --bg-surface-variant: #F0F1F5;
    --bg-container-low: #F3F4F7;
    --bg-container: #EDEEF2;
    --bg-container-high: #E7E8EC;

    /* Animated gradient background colors */
    --gradient-blue: #E3EDF8;
    --gradient-yellow: #F5F2E4;
    --gradient-blue-grey: #E8EEF4;

    /* Text Colors */
    --text-primary: #1A1C1E;
    --text-secondary: #545B66;
    --text-tertiary: #6B7280;
    --text-muted: #9CA3AF;

    /* Accent Colors (from EasyDashLoadingIndicator) */
    --accent-blue: #5C7CFA;
    --accent-teal: #38D9A9;
    --accent-coral: #FF8787;
    --accent-amber: #FFA94D;
    --accent-sky: #74C0FC;

    /* Semantic */
    --positive: #2E7D32;
    --negative: #C62828;
    --error: #E03131;

    /* Borders / Outlines */
    --outline: #AEB5BD;
    --outline-variant: #CDD2D9;
    --outline-light: #E1E2E6;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;

    /* Border Radius (matching app's 16dp cards) */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

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

    /* Container */
    --container-max: 1100px;
}

/* ============================================== */
/* BASE RESET & TYPOGRAPHY                        */
/* ============================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.375rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================== */
/* LAYOUT                                          */
/* ============================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.section {
    padding: var(--spacing-4xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
}

/* ============================================== */
/* BUTTONS                                         */
/* ============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(75, 123, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(75, 123, 192, 0.4);
    color: #FFFFFF;
    background: #3A6AAF;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--primary);
    border: 2px solid var(--outline-variant);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ============================================== */
/* HERO SECTION                                    */
/* ============================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-blue) 0%, var(--gradient-yellow) 50%, var(--gradient-blue-grey) 100%);
    animation: gradientShift 20s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-dots {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-xl);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.hero-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 24px rgba(75, 123, 192, 0.25);
    flex-shrink: 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.2;
}

.hero-title-sub {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.hero-badge {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    border: 1.5px solid rgba(75, 123, 192, 0.3);
    background: rgba(75, 123, 192, 0.08);
    border-radius: var(--radius-full);
    padding: 4px 14px;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Google Play Store Badge */
.play-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--spacing-xl);
    padding: 8px 20px 8px 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--outline-variant);
    background: transparent;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.play-store-badge:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(75, 123, 192, 0.15);
    color: var(--text-primary);
}

.play-store-badge-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.play-store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.play-store-badge-label {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.play-store-badge-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Hero staggered animation */
.hero-animate {
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 0.8s ease forwards;
}

.hero-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-animate:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-animate:nth-child(3) {
    animation-delay: 0.35s;
}

.hero-animate:nth-child(4) {
    animation-delay: 0.5s;
}

.hero-animate:nth-child(5) {
    animation-delay: 0.65s;
}

.hero-animate:nth-child(6) {
    animation-delay: 0.8s;
}

.hero-animate:nth-child(7) {
    animation-delay: 0.95s;
}

.hero-animate:nth-child(8) {
    animation-delay: 1.1s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    animation: fadeInUp 1s ease 1s both;
}

.scroll-text {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    color: var(--primary);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================== */
/* VALUE PROPOSITION SECTION                      */
/* ============================================== */

.value-section {
    background: var(--bg-surface);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.value-card {
    background: var(--bg-page);
    border: 1px solid var(--outline-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(75, 123, 192, 0.1);
}

.value-card-blue {
    border-top-color: var(--primary);
}

.value-card-teal {
    border-top-color: var(--secondary);
}

.value-card-amber {
    border-top-color: var(--accent-amber);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-icon-blue {
    background: rgba(75, 123, 192, 0.12);
    color: var(--primary);
}

.value-icon-teal {
    background: rgba(12, 166, 120, 0.12);
    color: var(--secondary);
}

.value-icon-amber {
    background: rgba(255, 169, 77, 0.12);
    color: var(--accent-amber);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    font-size: 0.9375rem;
}

/* ============================================== */
/* FEATURES SECTION                               */
/* ============================================== */

.features-section {
    background: var(--bg-page);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--outline-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.dot-blue {
    background: var(--accent-blue);
}

.dot-teal {
    background: var(--accent-teal);
}

.dot-coral {
    background: var(--accent-coral);
}

.dot-amber {
    background: var(--accent-amber);
}

.dot-sky {
    background: var(--accent-sky);
}

.dot-green {
    background: var(--secondary);
}

.feature-card h4 {
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    font-size: 0.9375rem;
}

/* ============================================== */
/* HOW IT WORKS SECTION                           */
/* ============================================== */

.how-section {
    background: var(--bg-surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.667% + 20px);
    right: calc(16.667% + 20px);
    height: 2px;
    background: var(--outline-variant);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-1 .step-number {
    background: rgba(75, 123, 192, 0.12);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.step-2 .step-number {
    background: rgba(12, 166, 120, 0.12);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.step-3 .step-number {
    background: rgba(255, 169, 77, 0.12);
    color: var(--accent-amber);
    border: 2px solid var(--accent-amber);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.step-card p {
    font-size: 0.9375rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================== */
/* PRIVACY / SECURITY SECTION                     */
/* ============================================== */

.privacy-section {
    background: var(--bg-page);
}

.privacy-card {
    background: var(--bg-surface);
    border: 1px solid var(--outline-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.privacy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-xl);
    background: rgba(12, 166, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

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

.privacy-card h2 {
    margin-bottom: var(--spacing-lg);
}

.privacy-card>p {
    margin-bottom: var(--spacing-xl);
    font-size: 1.0625rem;
}

.privacy-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.privacy-point {
    padding: var(--spacing-lg);
    background: var(--bg-page);
    border-radius: var(--radius-md);
}

.privacy-point-icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary);
}

.privacy-point strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.privacy-point p {
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================== */
/* BOTTOM CTA                                      */
/* ============================================== */

.bottom-cta-section {
    background: linear-gradient(135deg, #EAF1FB 0%, #F5F2E4 100%);
}

.bottom-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.bottom-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.bottom-cta > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 480px;
}

/* ============================================== */
/* FOOTER                                          */
/* ============================================== */

.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-2xl);
}

.footer-brand h3 {
    color: #FFFFFF;
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-3xl);
}

.footer-links-group h4 {
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-group a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-trademark {
    margin-top: var(--spacing-sm);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* ============================================== */
/* SCROLL ANIMATIONS                              */
/* ============================================== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-tagline {
        font-size: 1.0625rem;
    }

    .hero-dots {
        width: 160px;
        height: 160px;
    }

    .hero-brand {
        gap: var(--spacing-lg);
    }

    .hero-icon {
        width: 64px;
        height: 64px;
    }

    .hero-title-sub {
        font-size: 1.0625rem;
    }

    .container {
        padding: 0 var(--spacing-lg);
    }

    .section {
        padding: var(--spacing-3xl) 0;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .steps-grid::before {
        display: none;
    }

    .privacy-points {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        justify-content: center;
    }

    .footer-brand p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-dots {
        width: 140px;
        height: 140px;
    }

    .privacy-card {
        padding: var(--spacing-xl);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
}

/* ============================================== */
/* LEGAL PAGES (shared styles)                    */
/* ============================================== */

.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-nav {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--outline-light);
    padding: var(--spacing-lg) 0;
}

.legal-nav .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.legal-nav a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.legal-nav a:hover {
    color: var(--secondary);
}

.legal-nav span {
    color: var(--text-muted);
}

.legal-content {
    flex: 1;
    padding: var(--spacing-3xl) 0 var(--spacing-4xl);
}

.legal-content .container {
    max-width: 780px;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.legal-meta {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--outline-light);
}

.legal-content h2 {
    font-size: 1.375rem;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.legal-content p {
    margin-bottom: var(--spacing-lg);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.legal-content li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-xl);
    font-size: 0.9375rem;
}

.legal-content th,
.legal-content td {
    border: 1px solid var(--outline-light);
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
}

.legal-content th {
    background: var(--bg-container-low);
    font-weight: 600;
    color: var(--text-primary);
}

.legal-content td {
    color: var(--text-secondary);
}

.legal-highlight {
    background: rgba(12, 166, 120, 0.06);
    border-left: 4px solid var(--secondary);
    padding: var(--spacing-lg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: var(--spacing-xl);
}

.legal-highlight p {
    margin-bottom: 0;
}

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

/* ============================================== */
/* FAQ SECTION                                    */
/* ============================================== */

.faq-section {
    background: var(--bg-page);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--outline-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-2xl);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary-container);
    box-shadow: 0 4px 16px rgba(75, 123, 192, 0.08);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .faq-item {
        padding: var(--spacing-lg);
    }
}
