:root {
    --color-primary: #1E3A8A; /* Deep Trust Blue */
    --color-secondary: #0D9488; /* Teal */
    --color-accent: #D97706; /* Amber Gold */
    --color-bg-light: #F8FAFC;
    --color-text-dark: #1E293B;
    --color-text-muted: #64748B;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #0F172A;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-accent);
    color: #fff;
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.2s;
    text-decoration: none;
    font-weight: bold;
}
.skip-link:focus {
    top: 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    transition: color var(--transition-speed);
}
.nav-links a:hover {
    color: var(--color-secondary);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.1), transparent), #ffffff;
    text-align: center;
}
.hero h1 {
    font-size: 2.75rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}
.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 2rem;
}
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color var(--transition-speed);
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: #b45309;
}
.btn-secondary {
    background-color: var(--color-primary);
}
.btn-secondary:hover {
    background-color: #172554;
}

/* Stats Section */
.stats {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.stat-item h3 {
    color: var(--color-accent);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* How It Works & Trust Principles */
.section-padding {
    padding: 5rem 0;
}
.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}
.steps-grid, .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-top: 4px solid var(--color-secondary);
}
.card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

/* Features Block (Asymmetric) */
.features-asym {
    background: #ffffff;
    padding: 5rem 0;
}
.asym-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}
.asym-image {
    flex: 1 1 450px;
}
.asym-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.asym-content {
    flex: 1 1 450px;
}
.asym-content ul {
    list-style: none;
    margin-top: 1.5rem;
}
.asym-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.asym-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.price-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}
.price-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.03);
}
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 9999px;
    text-transform: uppercase;
}
.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

/* Form Section */
.form-section {
    background-color: #F1F5F9;
    padding: 5rem 0;
}
.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-body);
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-checkbox input {
    margin-top: 0.3rem;
}

/* Trust Layer (Global Compliance Widget) */
.trust-layer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #334155;
}
.trust-layer h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.trust-layer p {
    margin-bottom: 1rem;
}
.trust-layer a {
    color: #38BDF8;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #0F172A;
    color: #64748B;
    padding: 3rem 0;
    font-size: 0.85rem;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #94A3B8;
    text-decoration: none;
}
.footer-nav a:hover {
    color: #ffffff;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #CBD5E1;
    padding: 1.5rem 0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    margin-top: 1rem;
    color: var(--color-text-muted);
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    z-index: 9999;
    border-left: 5px solid var(--color-primary);
    display: none;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .price-card.featured {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}