/* 
   DESIGN SYSTEM: PADDLE-INSPIRED
   Theme: Deep Charcoal / Forest Gradient / Emerald Accents
   Font: Inter (Sans-serif)
*/

:root {
    /* Color Palette */
    --accent-primary: #1bd69c;
    --accent-soft: #16c488;
    --accent-muted: #13b37a;

    --surface-primary: rgba(22, 30, 48, 0.9);
    --surface-secondary: rgba(15, 22, 38, 0.95);

    --bg-overlay: rgba(0, 0, 0, 0.6);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);

    --border-subtle: rgba(27, 214, 156, 0.12);
    --glow-soft: rgba(27, 214, 156, 0.18);

    --bg-hero-img: url('isobarlogo.png');
    --bg-section-img: url('isobarbackround.png');
    --impact-img: url('isobarbackroundv2.png');

    /* Retained Structural Variables */
    --bg-dark: #0a0c10;
    --bg-panel: #1c1f24;
    --bg-gradient-start: #1c1f24;
    --bg-gradient-end: #0a0c10;
    --border-highlight: rgba(27, 214, 156, 0.3);
    --shadow-soft: rgba(0, 0, 0, 0.5);

    /* Spacing */
    --container-width: 1140px;
    --section-spacing: 120px;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.theme-purple {
    --accent-primary: #a855f7;
    --accent-soft: #c084fc;
    --accent-muted: #7c3aed;
    --border-subtle: rgba(168, 85, 247, 0.2);
    --glow-soft: rgba(168, 85, 247, 0.25);
    --border-highlight: rgba(168, 85, 247, 0.4);
    --bg-hero-img: url('isobarlogov2.png');
    --bg-section-img: url('isobarbackroundv3.png');
    --impact-img: url('isobarstructurelogov1.png');
}

body.theme-onyx {
    --accent-primary: #e2e8f0; /* Slate 200 (Silver/White) */
    --accent-soft: #f8fafc;    /* Slate 50 */
    --accent-muted: #94a3b8;   /* Slate 400 */
    --border-subtle: rgba(255, 255, 255, 0.15);
    --glow-soft: rgba(255, 255, 255, 0.15);
    --border-highlight: rgba(255, 255, 255, 0.3);
    /* We use the V3 (Purple) backgrounds but desaturate them via CSS filters below */
    --bg-hero-img: url('isobarlogov2.png');
    --bg-section-img: url('isobarbackroundv3.png');
    --impact-img: url('isobarstructurelogov1.png');
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Prevents side-scrolling/zooming issues on mobile */
    width: 100%;
}

/* Force Grayscale for Onyx Theme to create "Structural" look */
body.theme-onyx img,
body.theme-onyx .impact-visual-img {
    filter: grayscale(100%) contrast(1.1);
}

/* Ensure button text is legible on light Onyx accent */
body.theme-onyx .btn-primary {
    color: #000000;
}

/* Invert colors on hover for Onyx theme */
body.theme-onyx .btn-primary:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: var(--accent-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero container override */
.hero-section .container {
    max-width: 1500px;   /* Wider than default 1140px */
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #ffffff;
    box-shadow: 0 10px 30px var(--glow-soft);
    border: 1px solid var(--border-subtle);
}

.btn-primary:hover {
    background-color: var(--accent-soft);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    background-color: rgba(255,255,255,0.02);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.accent {
    color: var(--accent-primary);
}

.logo-icon {
    height: 32px;
    width: auto;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 8px rgba(27, 214, 156, 0.4));
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-email:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(27, 214, 156, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: linear-gradient(to bottom, var(--bg-overlay), var(--bg-dark)), var(--bg-hero-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Abstract UI Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
    width: 100%;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.abstract-ui-panel {
    background: rgba(20, 23, 28, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.ui-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-subtle);
}

.metric-row {
    margin-bottom: 16px;
}

.metric-row .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bar-container {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 3px;
}

.fill-high { width: 85%; background: var(--accent-primary); }
.fill-low { width: 20%; background: #ef4444; }
.fill-med { width: 60%; background: #f59e0b; }

.graph-area {
    margin-top: 30px;
    height: 100px;
    position: relative;
    border-top: 1px solid var(--border-subtle);
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-gradient-end);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.trust-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    margin-right: 10px;
    opacity: 0.6;
}

/* Products Section */
.products-section {
    padding: 140px 0;
    position: relative;
    background-image: var(--bg-section-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, var(--surface-primary), var(--surface-secondary));
    backdrop-filter: none;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 32px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px var(--shadow-soft);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
}

.highlight-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, var(--surface-secondary) 100%);
    border-color: var(--border-subtle);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.tier-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 32px;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--text-primary);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.card-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Process Section */
.process-section {
    padding: 140px 0;
    position: relative;
    background-image: var(--bg-section-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
}

.process-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Process Layout Grid */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: linear-gradient(145deg, var(--surface-primary), var(--surface-secondary));
    backdrop-filter: none;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 32px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px var(--shadow-soft);
}

.step::before {
    display: none;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
}

.step-number {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: monospace;
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-tool-wrapper {
    width: 100%;
    position: sticky;
    top: 100px; /* Optional: keeps tool visible while scrolling steps */
}

/* Impact Section */
.impact-section {
    position: relative;
    padding: 140px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: var(--bg-section-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
}

.impact-section .container {
    position: relative;
    z-index: 1;
    z-index: 2;
    max-width: 1150px;
}

.impact-section h2 {
    font-weight: 600;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.impact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.impact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.impact-visual-col {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.impact-visual-img {
    width: 100%;
    height: 100%;
    background-image: var(--impact-img);
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: background-image 0.3s ease;
}

.impact-card {
    position: relative;
    background: linear-gradient(145deg, var(--surface-primary), var(--surface-secondary));
    border: 1px solid var(--border-subtle);
    backdrop-filter: none;
    padding: 40px;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px var(--shadow-soft);
}

/* Micro Index Markers */
.impact-card .index {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Left Edge Structural Accent */
.impact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 3px;
    height: 60px;
    background: var(--accent-primary);
}

.impact-card h5 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.impact-card p {
    opacity: 0.75;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Analytical Watermark */
.impact-card .watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    opacity: 0.05;
    pointer-events: none;
    color: var(--text-primary);
}

.impact-card .watermark svg {
    width: 80px;
    height: 80px;
}

/* About Section */
.about-section {
    padding: 140px 0;
    position: relative;
    background-image: var(--bg-section-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* CTA Section */
.cta-section {
    padding: 140px 0;
    position: relative;
    background-image: var(--bg-section-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.signup-group {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 480px;
}

.signup-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.signup-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
}

.contact-info-block {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 12px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    min-width: 280px;
}

.contact-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-soft);
    background: rgba(27, 214, 156, 0.05);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(27, 214, 156, 0.4);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.disabled {
    color: rgba(255,255,255,0.2);
    cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        overflow-x: hidden;
    }

    .hero-grid {
        padding: 0 16px;
    }
    
    .hero-section {
        padding-top: 80px; /* Account for fixed navbar */
        min-height: auto; /* Allow height to adjust naturally on mobile */
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2rem; /* 32px as requested */
        line-height: 1.2;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr; /* Force single column on mobile to prevent overflow */
        gap: 24px;
    }

    .process-steps, .impact-grid, .about-grid, .products-grid {
        grid-template-columns: 1fr;
    }

    .impact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-visual-col {
        display: none;
    }
    
    .nav-links {
        display: none;
    }

    .process-layout-grid {
        grid-template-columns: 1fr;
    }

    .process-layout {
        grid-template-columns: 1fr;
    }

    .products-section,
    .process-section,
    .impact-section,
    .about-section,
    .cta-section {
        background-attachment: scroll;
        padding: 60px 0; /* Reduce massive vertical spacing (was 140px) */
        background-position: center top; /* Keep the top of the image visible */
    }

    /* Compact Cards for Mobile to reduce scrolling */
    .product-card, .step, .impact-card {
        padding: 20px; /* Reduced to 20px as requested */
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2, .impact-section h2, .cta-container h2 {
        font-size: 1.5rem; /* 24px as requested */
    }

    .impact-card:nth-child(2),
    .impact-card:nth-child(3) {
        transform: none;
    }

    .impact-card:nth-child(2):hover,
    .impact-card:nth-child(3):hover {
        transform: translateY(-6px);
    }

    .signup-group {
        flex-direction: column;
    }

    .nav-email {
        display: none;
    }

    .navbar .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        width: auto;
        white-space: nowrap;
    }

    footer {
        padding: 40px 0;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }
}

/* Policy Pages (Privacy & Terms) */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

.policy-content {
    background: var(--bg-panel);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    color: var(--text-primary);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
}

.policy-content h2 {
    color: var(--accent-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.policy-content p, .policy-content li {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Contact Page Form */
.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-textarea {
    min-height: 200px;
    resize: vertical;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(27, 214, 156, 0.1);
}