        :root {
            --color-bg: #FAFAF8;
            --color-bg-warm: #F5F4F0;
            --color-text: #1A1A1A;
            --color-text-muted: #6B6B6B;
            --color-accent: #C9A227;
            --color-accent-dark: #A68520;
            --color-border: #E5E4E0;
            --font-serif: 'Instrument Serif', Georgia, serif;
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.25rem 2rem;
            background: rgba(250, 250, 248, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--color-border);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--color-text);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
        }

        .logo-text {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        .logo-image {
            height: 80px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

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

        .lang-switcher {
            position: relative;
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: none;
            border: 1px solid var(--color-border);
            padding: 0.4rem 0.75rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-muted);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--font-sans);
        }

        .lang-btn:hover {
            border-color: var(--color-text-muted);
            color: var(--color-text);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 0.5rem;
            min-width: 120px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }

        .lang-switcher:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-dropdown a {
            display: block;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            text-decoration: none;
            transition: all 0.15s ease;
        }

        .lang-dropdown a:hover {
            background: var(--color-bg-warm);
            color: var(--color-text);
        }

        .lang-dropdown a.active {
            color: var(--color-accent-dark);
            font-weight: 500;
        }

        .nav-cta {
            background: var(--color-text);
            color: var(--color-bg);
            padding: 0.65rem 1.5rem;
            border-radius: 100px;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .nav-cta:hover {
            background: var(--color-accent-dark);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-bg-warm);
            border: 1px solid var(--color-border);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
        }

        .hero-badge svg {
            width: 14px;
            height: 14px;
            fill: var(--color-accent);
        }

        .hero-service-name {
            font-family: 'Instrument Serif', Georgia, serif;
            font-size: clamp(4rem, 10vw, 7rem);
            font-weight: 400;
            color: var(--color-accent-dark);
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--color-accent-dark);
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            max-width: 480px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-text);
            color: var(--color-bg);
            padding: 1rem 2rem;
            border-radius: 100px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--color-accent-dark);
            transform: translateY(-2px);
        }

        .coming-soon {
            cursor: default;
            opacity: 0.9;
        }

        .btn-primary.coming-soon:hover,
        .nav-cta.coming-soon:hover,
        .pricing-cta.coming-soon:hover,
        .footer-download.coming-soon:hover {
            transform: none;
            background: var(--color-text);
        }

        .footer-download.coming-soon:hover {
            background: rgba(250, 250, 248, 0.1);
        }

        .btn-primary svg {
            width: 20px;
            height: 20px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .btn-secondary:hover {
            color: var(--color-text);
        }

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

        .hero-phone {
            position: relative;
            width: 340px;
            height: 680px;
            background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
            border-radius: 40px;
            padding: 12px;
            box-shadow:
                0 50px 100px -20px rgba(0, 0, 0, 0.25),
                0 30px 60px -30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .hero-phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 32px;
            overflow: hidden;
        }

        .hero-phone-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .floating-element {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            font-size: 0.85rem;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element.watch {
            top: 8%;
            right: -12%;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation-delay: 0s;
        }

        .floating-element.watch svg {
            width: 18px;
            height: 18px;
            fill: var(--color-accent);
        }

        .floating-element.ai {
            bottom: 8%;
            left: -8%;
            animation-delay: 2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-element.ai span {
            color: var(--color-accent-dark);
            font-weight: 600;
        }

        .floating-element.sound {
            top: 8%;
            left: -12%;
            animation-delay: 0.5s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-element.sound svg {
            width: 18px;
            height: 18px;
            fill: var(--color-accent);
        }

        .floating-element.continuous {
            top: 35%;
            right: -18%;
            animation-delay: 1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-element.continuous svg {
            width: 18px;
            height: 18px;
            fill: var(--color-accent);
        }

        .floating-element.background {
            top: 62%;
            right: -16%;
            animation-delay: 1.5s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-element.background svg {
            width: 18px;
            height: 18px;
            fill: var(--color-accent);
        }

        .floating-element.bookmark {
            top: 35%;
            left: -6%;
            animation-delay: 2.5s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-element.bookmark svg {
            width: 18px;
            height: 18px;
            fill: var(--color-accent);
        }

        .floating-element.focus {
            top: 62%;
            left: -12%;
            animation-delay: 3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .floating-element.focus svg {
            width: 18px;
            height: 18px;
            fill: var(--color-accent);
        }

        /* Mobile floating tags container - hidden on desktop */
        .floating-tags-mobile {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: var(--color-bg-warm);
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-accent-dark);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            background: var(--color-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .feature-title {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            letter-spacing: 0.01em;
        }

        .feature-description {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            padding: 6rem 2rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

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

        .step::after {
            content: '';
            position: absolute;
            top: 2rem;
            left: calc(50% + 2.5rem);
            width: calc(100% - 1rem);
            height: 2px;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-border) 100%);
        }

        .step:last-child::after {
            display: none;
        }

        .step-number {
            width: 4rem;
            height: 4rem;
            background: var(--color-bg-warm);
            border: 2px solid var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--color-accent-dark);
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }

        .step-title {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.01em;
        }

        .step-description {
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        /* Recommended Workflow */
        .recommended-workflow {
            padding: 6rem 2rem;
            background: var(--color-bg-warm);
        }

        .workflow-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .workflow-step {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .workflow-number {
            width: 3rem;
            height: 3rem;
            min-width: 3rem;
            background: var(--color-bg);
            border: 2px solid var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1.25rem;
            color: var(--color-accent-dark);
        }

        .workflow-content {
            flex: 1;
        }

        .workflow-title {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.01em;
        }

        .workflow-description {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }

        .workflow-description ul {
            margin-top: 0.5rem;
            padding-left: 1.25rem;
        }

        .workflow-description li {
            margin-bottom: 0.35rem;
        }

        @media (max-width: 640px) {
            .workflow-step {
                gap: 1rem;
            }

            .workflow-number {
                width: 2.5rem;
                height: 2.5rem;
                min-width: 2.5rem;
                font-size: 1rem;
            }
        }

        /* Screenshots */
        .screenshots {
            padding: 6rem 2rem;
            background: var(--color-bg-warm);
            overflow: hidden;
        }

        .screenshots-track {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            animation: scroll 30s linear infinite;
        }

        .screenshot-item {
            flex-shrink: 0;
            width: 220px;
            height: 476px;
            background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
            border-radius: 28px;
            padding: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .screenshot-inner {
            width: 100%;
            height: 100%;
            background: var(--color-bg);
            border-radius: 22px;
            overflow: hidden;
        }

        .screenshot-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            display: block;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-220px * 13 - 1.5rem * 13)); }
        }

        /* Pricing */
        .pricing {
            padding: 6rem 2rem;
        }

        .pricing-card {
            max-width: 480px;
            margin: 3rem auto 0;
            background: var(--color-bg-warm);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid var(--color-border);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
        }

        .pricing-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-text-muted);
            margin-bottom: 0.5rem;
        }

        .pricing-title {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .pricing-currency {
            font-size: 1.5rem;
            color: var(--color-text-muted);
        }

        .pricing-amount {
            font-family: var(--font-serif);
            font-size: 4rem;
            font-weight: 400;
            line-height: 1;
        }

        .pricing-period {
            font-size: 1rem;
            color: var(--color-text-muted);
        }

        .pricing-alt {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--color-border);
            font-size: 0.95rem;
        }

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

        .pricing-features svg {
            width: 20px;
            height: 20px;
            fill: var(--color-accent);
            flex-shrink: 0;
        }

        .pricing-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            background: var(--color-text);
            color: var(--color-bg);
            padding: 1rem 2rem;
            border-radius: 100px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .pricing-cta:hover {
            background: var(--color-accent-dark);
        }

        /* FAQ */
        .faq {
            padding: 6rem 2rem;
            background: var(--color-bg-warm);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .faq-item {
            background: var(--color-bg);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            border: 1px solid var(--color-border);
        }

        .faq-question {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            letter-spacing: 0.01em;
        }

        .faq-answer {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* Developer Message */
        .developer {
            padding: 6rem 2rem;
        }

        .developer-inner {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: start;
        }

        .developer-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .developer-content h2 {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .developer-role {
            font-size: 0.9rem;
            color: var(--color-accent-dark);
            margin-bottom: 1.5rem;
        }

        .developer-message {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            line-height: 1.8;
        }

        .developer-message p {
            margin-bottom: 1rem;
        }

        .developer-message p:last-child {
            margin-bottom: 0;
        }

        .developer-signature {
            margin-top: 1.5rem;
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-style: italic;
            color: var(--color-text);
        }

        /* Footer */
        footer {
            padding: 4rem 2rem;
            background: var(--color-text);
            color: var(--color-bg);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

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

        .footer-name {
            font-family: var(--font-serif);
            font-size: 1.5rem;
        }

        .footer-logo-image {
            height: 48px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links a {
            color: rgba(250, 250, 248, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

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

        .footer-download {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(250, 250, 248, 0.1);
            padding: 0.75rem 1.5rem;
            border-radius: 100px;
            text-decoration: none;
            color: var(--color-bg);
            transition: background 0.2s ease;
        }

        .footer-download:hover {
            background: rgba(250, 250, 248, 0.2);
        }

        .footer-download svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .footer-copyright {
            width: 100%;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(250, 250, 248, 0.1);
            font-size: 0.85rem;
            color: rgba(250, 250, 248, 0.5);
        }

        /* Mobile line break */
        .mobile-break {
            display: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .mobile-break {
                display: block;
            }
            .hero-inner {
                grid-template-columns: 1fr;
            }

            .hero-actions {
                justify-content: flex-start;
            }

            .hero-visual {
                order: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-content {
                order: 0;
            }

            .floating-element {
                display: none !important;
            }

            .floating-tags-mobile {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                justify-content: center;
                margin-top: 1.5rem;
                position: static;
                width: 100%;
                max-width: 320px;
            }

            .floating-tags-mobile .tag {
                display: inline-flex;
                align-items: center;
                gap: 0.4rem;
                background: white;
                border-radius: 100px;
                padding: 0.5rem 0.75rem;
                font-size: 0.7rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                border: 1px solid var(--color-border);
            }

            .floating-tags-mobile .tag svg {
                width: 12px;
                height: 12px;
                fill: var(--color-accent);
            }

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

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

            .step::after {
                display: none;
            }

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

            .developer-inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 9rem 1.5rem 3rem;
            }

            .hero-service-name {
                margin-bottom: 1.5rem;
            }

            .hero-phone {
                width: 280px;
                height: 560px;
            }

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

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

            .pricing-card {
                padding: 2rem;
            }

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

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

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease forwards;
        }

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

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        /* Legal Pages (Terms, Privacy) */
        .legal-page {
            max-width: 800px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        .legal-page h1 {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .legal-page .last-updated {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-border);
        }

        .legal-page h2 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 400;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .legal-page h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .legal-page p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--color-text-muted);
            margin-bottom: 1rem;
        }

        .legal-page ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .legal-page li {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--color-text-muted);
            margin-bottom: 0.5rem;
        }

        .legal-page table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }

        .legal-page th,
        .legal-page td {
            text-align: left;
            padding: 0.75rem 1rem;
            border: 1px solid var(--color-border);
        }

        .legal-page th {
            background: var(--color-bg-warm);
            font-weight: 600;
            color: var(--color-text);
        }

        .legal-page td {
            color: var(--color-text-muted);
        }

        .legal-page td a {
            color: var(--color-accent-dark);
            text-decoration: none;
            word-break: break-all;
        }

        .legal-page td a:hover {
            text-decoration: underline;
        }

        .legal-page hr {
            border: none;
            border-top: 1px solid var(--color-border);
            margin: 2.5rem 0;
        }

        .legal-page .contact-info {
            font-size: 0.95rem;
            color: var(--color-text-muted);
        }

        .legal-page .contact-info a {
            color: var(--color-accent-dark);
            text-decoration: none;
        }

        .legal-page .contact-info a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .legal-page {
                padding: 7rem 1.5rem 3rem;
            }

            .legal-page table {
                font-size: 0.85rem;
            }

            .legal-page th,
            .legal-page td {
                padding: 0.5rem;
            }
        }
