:root {
    --primary: #1E293B;
    --accent: #D97706;
    --accent-hover: #B45309;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #475569;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

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

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* Header */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    margin-right: 12px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover, .nav-links a:focus {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* Button */
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn:hover, .btn:focus {
    background-color: var(--accent-hover);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217,119,6,0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* Statistics */
.stats {
    padding: 60px 0;
    background-color: var(--primary);
    color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-item h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.stats-item p {
    font-size: 1.1rem;
    font-family: var(--font-serif);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-cols: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 6px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.step-num {
    font-size: 2.5rem;
    color: var(--accent);
    font-family: var(--font-serif);
    margin-bottom: 15px;
}

/* Principles / Trust block */
.principles {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.principles-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.principles-list {
    list-style: none;
}

.principles-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.principles-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    position: relative;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-val {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-serif);
    margin: 20px 0;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
}

/* Form */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    margin-top: 6px;
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #F1F5F9;
    padding: 40px 0;
    border-top: 1px solid #E2E8F0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-layer-inner {
    text-align: center;
}

.trust-layer a {
    color: var(--primary);
    text-decoration: underline;
}

footer {
    background-color: var(--primary);
    color: var(--bg-light);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-cols: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
}

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

.footer-copy {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #94A3B8;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-content {
    padding: 0 20px 20px 20px;
    display: none;
    color: var(--text-muted);
}

.faq-content.active {
    display: block;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

.cookie-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .steps-grid, .services-grid, .pricing-grid, .principles-grid {
        grid-template-cols: 1fr;
    }
    .stats-grid {
        grid-template-cols: 1fr;
    }
    .burger-menu {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 20px;
        border-bottom: 1px solid #E2E8F0;
    }
    .nav-links.active {
        display: flex;
    }
}

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