@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary: #FFD000;
    --primary-bright: #FFE135;
    --secondary: #FF8C00;
    --accent: #FF5500;
    --danger: #FF3333;
    --success: #00C853;
    --bg-light: #FFFDF5;
    --bg-warm: #FFF8E7;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --border: #E8E4DC;
    --shadow-color: rgba(255, 140, 0, 0.15);
    --gradient-hero: linear-gradient(135deg, #FFD000 0%, #FF8C00 50%, #FF5500 100%);
    --gradient-danger: linear-gradient(135deg, #FF5555 0%, #FF3333 100%);
    --gradient-success: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #FFD60A;
        --primary-bright: #FFE44D;
        --secondary: #FF9F0A;
        --accent: #FF6B00;
        --bg-light: #0D0D0D;
        --bg-warm: #141210;
        --surface: #1C1A17;
        --text-primary: #FAFAFA;
        --text-secondary: #B0B0B0;
        --text-muted: #707070;
        --border: #2A2824;
        --shadow-color: rgba(255, 214, 10, 0.1);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    opacity: 0.95;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: -1;
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(-3deg);
}

.logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 36px;
}

.nav-links a:not(.app-store-button) {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.app-store-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s ease;
}

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

.nav-links a:not(.app-store-button):hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: var(--bg-warm);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: var(--gradient-hero);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--noise);
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 28px;
    box-shadow: 0 2px 12px var(--shadow-color);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 .highlight {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow-color);
    transform: translateY(-2px);
}

.hero-feature-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--gradient-hero);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

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

.app-preview {
    max-width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.05),
        0 20px 50px -10px rgba(0,0,0,0.2),
        0 40px 100px -20px var(--shadow-color);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.app-preview:hover {
    transform: translateY(-12px) rotate(1deg);
}

.app-store-button {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-store-button:hover {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}

.app-store-badge {
    height: 54px;
    border-radius: 12px;
}

section {
    padding: 120px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-danger);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--danger);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.problem-card:hover {
    border-color: var(--danger);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 51, 51, 0.12);
}

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

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.problem-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--danger);
    letter-spacing: -0.01em;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.problem-quote {
    background: var(--gradient-danger);
    border-radius: 24px;
    padding: 50px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--noise);
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.problem-quote p {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.problem-quote p::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

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

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: var(--gradient-hero);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 50px var(--shadow-color);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--text-primary);
}

.feature-card:hover p {
    color: var(--text-primary);
}

.how-it-works {
    background: var(--surface);
}

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--gradient-hero);
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-color);
    border-color: var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 8px 24px var(--shadow-color);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.step-card h3 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-first {
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.privacy-first::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-success);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(100px);
}

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

.privacy-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-card:hover {
    border-color: var(--success);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 200, 83, 0.12);
}

.privacy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.privacy-card h3 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--success);
}

.privacy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-statement {
    background: var(--gradient-success);
    border-radius: 24px;
    padding: 50px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--noise);
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.privacy-statement p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.privacy-statement .shield-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.use-cases {
    background: var(--surface);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.use-case-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-color);
    border-color: var(--primary);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.use-case-card h3 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.faq-item details summary {
    padding: 24px 28px;
    padding-right: 60px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item details summary:hover {
    background: var(--bg-light);
}

.faq-content {
    padding: 0 28px 28px;
    padding-top: 8px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.98rem;
}

.faq-item details[open] {
    padding-bottom: 4px;
}

.faq-item details[open] summary {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.final-cta {
    background: var(--gradient-hero);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--noise);
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.final-cta .section-title {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.final-cta .section-subtitle {
    color: var(--text-primary);
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.footer {
    background: var(--surface);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
}

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

.footer-links {
    display: flex;
    gap: 36px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.floating-download {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-download.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-hero);
    color: var(--text-primary);
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow:
        0 4px 20px var(--shadow-color),
        0 12px 40px rgba(255, 140, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 8px 30px var(--shadow-color),
        0 20px 60px rgba(255, 140, 0, 0.4);
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1100px) {
    .feature-grid,
    .privacy-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .header .container {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

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

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

    .hero-image {
        order: -1;
    }

    .app-preview {
        max-height: 400px;
        border-radius: 30px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-grid,
    .feature-grid,
    .steps-grid,
    .privacy-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

    .problem-quote,
    .privacy-statement {
        padding: 36px 28px;
    }

    .problem-quote p,
    .privacy-statement p {
        font-size: 1.2rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .floating-download {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        padding: 14px 22px;
    }

    .download-text {
        display: none;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta .section-title {
        font-size: 1.8rem;
    }
}

.privacy-policy,
.terms-of-use {
    padding-top: 140px;
    padding-bottom: 100px;
    background: var(--bg-warm);
    min-height: 100vh;
}

.policy-content,
.terms-content {
    background: var(--surface);
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0 8px 40px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.policy-content h1,
.terms-content h1 {
    font-family: 'Archivo Black', sans-serif;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 36px;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.policy-content h2,
.terms-content h2 {
    color: var(--secondary);
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.policy-content p,
.policy-content ul,
.terms-content p,
.terms-content ul {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.policy-content ul,
.terms-content ul {
    padding-left: 28px;
}

.policy-content li,
.terms-content li {
    margin-bottom: 12px;
}

.policy-content a,
.terms-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-content a:hover,
.terms-content a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content,
    .terms-content {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .policy-content h1,
    .terms-content h1 {
        font-size: 1.8rem;
    }
}
