/* CSS Variables - Cosmos Theme */
:root {
    /* Purple palette */
    --purple-1: #F9FAFC;
    --purple-2: #F4F5FD;
    --purple-3: #ECEDFD;
    --purple-4: #E1E3FF;
    --purple-5: #D3D7FF;
    --purple-6: #C4C9FF;
    --purple-7: #AFB4FF;
    --purple-8: #9397F9;
    --purple-9: #7267FF;
    --purple-10: #665AF1;
    --purple-11: #5445D1;
    --purple-12: #2A256A;

    /* Neutrals palette */
    --neutral-1: #F9F9FD;
    --neutral-2: #F5F5FD;
    --neutral-3: #ECEBF9;
    --neutral-4: #E3E2F5;
    --neutral-5: #DBDAF1;
    --neutral-6: #D3D2EC;
    --neutral-7: #C8C7E7;
    --neutral-8: #B4B2DC;
    --neutral-9: #8884AD;
    --neutral-10: #7C7AA0;
    --neutral-11: #5E5C7C;
    --neutral-12: #1F1D34;

    /* Semantic colors */
    --content-primary: #1F1D34;
    --content-secondary: #7C7AA0;
    --accent-color: #7267FF;
    --background-main: #ECEBF9;
    --background-raise: #F9F9FD;

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

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(31, 29, 52, 0.08);
    --shadow-md: 0 4px 8px rgba(31, 29, 52, 0.08), 0 2px 4px rgba(31, 29, 52, 0.04);
    --shadow-lg: 0 8px 16px rgba(31, 29, 52, 0.08), 0 4px 8px rgba(31, 29, 52, 0.04), 0 2px 4px rgba(31, 29, 52, 0.02);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: white;
    color: var(--content-primary);
    line-height: 1.5;
    min-height: 100vh;
}

/* ===================== */
/* NEW LANDING PAGE HERO */
/* ===================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #4a3a8a 25%, #7a5ab8 50%, #a86ab8 75%, #c87ab0 100%);
    z-index: 0;
}

/* Add texture/noise overlay */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

/* Navigation */
.nav {
    position: relative;
    z-index: 10;
    padding: var(--space-lg) var(--space-2xl);
}

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

.nav-logo {
    text-decoration: none;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

.nav-btn {
    background: white;
    color: var(--content-primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.btn-cta {
    position: relative;
    z-index: 100;
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--content-primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    background: white;
}

/* Hero Image / Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.phone-mockup-placeholder {
    position: relative;
    width: 480px;
    height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.placeholder-text {
    display: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.5;
}

.phone-mockup-placeholder.placeholder-visible {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
}

.phone-mockup-placeholder.placeholder-visible .placeholder-text {
    display: block;
}

/* Curved Bottom */
.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
    pointer-events: none;
}

.hero-curve svg {
    width: 100%;
    height: 120px;
}

/* ===================== */
/* MEET COSMEE SECTION   */
/* ===================== */

.cosmee-section {
    background: white;
    padding: var(--space-2xl) var(--space-2xl);
}

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

.cosmee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.cosmee-mascot-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cosmee-mascot-placeholder.placeholder-visible {
    background: var(--purple-3);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--purple-6);
}

.cosmee-mascot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mascot-placeholder-text {
    display: none;
    color: var(--purple-9);
    font-size: 0.75rem;
    font-weight: 600;
}

.cosmee-mascot-placeholder.placeholder-visible .mascot-placeholder-text {
    display: block;
}

.cosmee-mascot-placeholder.placeholder-visible .cosmee-mascot-image {
    display: none;
}

.cosmee-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--content-primary);
    line-height: 1.2;
}

.cosmee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.cosmee-phone {
    display: flex;
    justify-content: center;
}

.cosmee-phone-mockup {
    width: 420px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cosmee-phone-mockup.placeholder-visible {
    background: var(--purple-2);
    border-radius: 40px;
    border: 2px dashed var(--purple-5);
}

.cosmee-phone-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.cosmee-phone-placeholder-text {
    display: none;
    text-align: center;
    color: var(--purple-9);
    font-size: 1rem;
    line-height: 1.5;
}

.cosmee-phone-mockup.placeholder-visible .cosmee-phone-placeholder-text {
    display: block;
}

.cosmee-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--neutral-5);
    align-items: start;
}

.feature-item:first-child {
    padding-top: 0;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--content-primary);
    line-height: 1.3;
}

.feature-item p {
    font-size: 1rem;
    color: var(--content-secondary);
    line-height: 1.6;
}

/* Responsive for Cosmee Section */
@media (max-width: 868px) {
    .cosmee-header {
        flex-direction: column;
        text-align: center;
    }

    .cosmee-title {
        font-size: 1.75rem;
    }

    .cosmee-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .cosmee-mascot-placeholder {
        width: 100px;
        height: 100px;
    }

    .cosmee-phone-mockup {
        width: 340px;
        height: 560px;
    }
}

@media (max-width: 600px) {
    .cosmee-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    .cosmee-title {
        font-size: 1.5rem;
    }

    .cosmee-mascot-placeholder {
        width: 80px;
        height: 80px;
    }

    .cosmee-phone-mockup {
        width: 280px;
        height: 460px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.875rem;
    }
}

/* ======================== */
/* BUILT FOR SECTION        */
/* ======================== */

.built-for-section {
    background: linear-gradient(180deg, #a8c8e8 0%, #c8b8d8 50%, #b8d0e8 100%);
    padding: var(--space-3xl) var(--space-2xl);
}

.built-for-container {
    max-width: 1200px;
    margin: 0 auto;
}

.built-for-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: var(--space-2xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--content-primary);
    margin-bottom: var(--space-md);
}

.feature-card p {
    font-size: 1rem;
    color: var(--content-secondary);
    line-height: 1.6;
}

/* Responsive for Built For Section */
@media (max-width: 868px) {
    .built-for-title {
        font-size: 2.25rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 600px) {
    .built-for-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    .built-for-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: var(--space-lg);
    }

    .feature-card h3 {
        font-size: 1.125rem;
    }

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

/* ======================== */
/* READ WHAT YOU WANT       */
/* ======================== */

.read-section {
    background: white;
    padding: var(--space-3xl) var(--space-2xl);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #c8e8d8 0%, #d8e0f0 50%, #e8d8f0 100%) 1;
}

.read-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.read-image {
    display: flex;
    justify-content: center;
}

.read-phone-mockup {
    width: 500px;
    height: 380px;
    background: linear-gradient(135deg, #e8d8f8 0%, #d8e8f0 50%, #e0f0e8 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.read-phone-mockup.placeholder-visible {
    border: 2px dashed var(--purple-5);
}

.read-phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.read-phone-placeholder-text {
    display: none;
    text-align: center;
    color: var(--purple-9);
    font-size: 1rem;
    line-height: 1.5;
}

.read-phone-mockup.placeholder-visible .read-phone-placeholder-text {
    display: block;
}

.read-content {
    padding-right: var(--space-xl);
}

.read-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--content-primary);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.read-text {
    font-size: 1.125rem;
    color: var(--content-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.read-text:last-child {
    margin-bottom: 0;
}

/* Responsive for Read Section */
@media (max-width: 868px) {
    .read-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .read-content {
        padding-right: 0;
        order: 1;
    }

    .read-image {
        order: 0;
    }

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

    .read-phone-mockup {
        width: 100%;
        max-width: 450px;
        height: 320px;
    }
}

@media (max-width: 600px) {
    .read-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    .read-title {
        font-size: 1.5rem;
    }

    .read-title br {
        display: none;
    }

    .read-text {
        font-size: 1rem;
    }

    .read-phone-mockup {
        height: 280px;
    }
}

/* Footer CTA */
.footer-cta {
    position: relative;
    padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
    overflow: hidden;
}

.footer-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2a4a6a 0%, #4a5a8a 25%, #6a5a9a 50%, #8a5a9a 75%, #a860a0 100%);
    z-index: 0;
}

/* Add texture overlay */
.footer-cta-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
}

.footer-cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--content-primary);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    background: white;
}

.footer-bottom {
    margin-top: var(--space-3xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

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

.footer-legal-links a:hover {
    color: white;
}

/* Responsive for Footer */
@media (max-width: 600px) {
    .footer-cta {
        padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    }

    .footer-cta-title {
        font-size: 1.75rem;
    }

    .footer-cta-btn {
        padding: var(--space-sm) var(--space-xl);
        font-size: 0.9375rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-container {
        gap: var(--space-xl);
    }

    .phone-mockup-placeholder {
        width: 400px;
        height: 600px;
    }
}

@media (max-width: 868px) {
    .nav-links {
        gap: var(--space-md);
    }

    .nav-link {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--space-xl);
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .phone-mockup-placeholder {
        width: 320px;
        height: 480px;
    }

    .btn-cta {
        margin-bottom: 60px;
    }
}

@media (max-width: 600px) {
    .nav {
        padding: var(--space-md);
    }

    .hero-container {
        padding: var(--space-lg);
    }

    .hero-title {
        font-size: 1.875rem;
    }

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

    .hero-subtitle br {
        display: none;
    }

    .phone-mockup-placeholder {
        width: 280px;
        height: 420px;
    }

    .footer-container {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* =================== */
/* LEGAL PAGES STYLES */
/* =================== */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

.legal-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #4a3a8a 25%, #7a5ab8 50%, #a86ab8 75%, #c87ab0 100%);
    z-index: 0;
}

.legal-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.legal-hero .nav {
    position: relative;
    z-index: 10;
}

.legal-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.legal-hero-content .last-updated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Legal Footer Adjustments */
.legal-footer {
    padding: var(--space-xl) var(--space-2xl);
}

.legal-footer .footer-bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Legal Pages Content */
.legal-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

.legal-body {
    background: var(--background-raise);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--neutral-5);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--content-primary);
    margin-bottom: var(--space-md);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--content-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    color: var(--content-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    margin-bottom: var(--space-md);
}

.legal-section ul li {
    position: relative;
    padding-left: var(--space-lg);
    color: var(--content-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--purple-9);
    border-radius: 50%;
}

.legal-section ul li:last-child {
    margin-bottom: 0;
}

.legal-section ul li strong {
    color: var(--content-primary);
}

.contact-info {
    background: var(--purple-2);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--purple-9);
}

.contact-info strong {
    color: var(--content-primary);
}

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

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

/* Intro section without border */
.intro-section {
    border-bottom: none;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
}

.intro-section p {
    font-size: 1.0625rem;
}

/* Closing section */
.closing-section {
    border-bottom: none;
    text-align: center;
    padding-top: var(--space-lg);
}

.closing-message {
    font-style: italic;
    color: var(--content-secondary);
    font-size: 1rem;
}

/* Links in legal content */
.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    text-decoration: underline;
    color: var(--purple-10);
}

/* Contact Page */
.contact-container {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.contact-text {
    font-size: 1.125rem;
    color: var(--content-secondary);
    margin-bottom: var(--space-sm);
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    background: var(--purple-2);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.contact-email:hover {
    background: var(--purple-3);
    transform: translateY(-2px);
}

/* Responsive adjustments for legal pages */
@media (max-width: 600px) {
    .legal-hero-content {
        padding: var(--space-xl) var(--space-lg);
    }

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

    .legal-body {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }

    .legal-section h2 {
        font-size: 1.125rem;
    }

    .contact-email {
        font-size: 1.125rem;
        padding: var(--space-sm) var(--space-md);
    }
}
