:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #d97706;
    --accent-hover: #b45309;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--text-light);
    padding: 8px;
    z-index: 100;
    transition: top 0.2s;
}
.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(--accent);
    outline-offset: 2px;
}

/* Header & Nav */
header {
    background-color: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-area img {
    height: 40px;
    width: 40px;
}
.logo-text {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: bold;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.nav-menu a:hover {
    color: var(--accent);
}
.btn-nav {
    background-color: var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-nav:hover {
    background-color: var(--accent-hover);
    color: var(--text-light) !important;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Base Sections */
section {
    padding: 5rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), url('images/hero.jpg') no-repeat center center/cover;
    color: var(--text-light);
    padding: 8rem 2rem;
    text-align: center;
}
.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}
.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
}

/* Statistics */
.stats {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem;
    border-top: 4px solid var(--accent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.step-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-5px);
}
.step-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-info {
    padding: 2rem;
}
.service-info h3 {
    margin-bottom: 1rem;
}

/* Features (Asymmetric) */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.features-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.features-list {
    list-style: none;
}
.features-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}
.features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}
.pricing-card {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card.popular {
    border: 3px solid var(--accent);
    transform: scale(1.03);
}
.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--text-light);
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}
.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1.5rem 0;
}
.price span {
    font-size: 1rem;
    color: #64748b;
}

/* Lead Capture Form */
.form-section {
    background-color: var(--primary);
    color: var(--text-light);
}
.form-section .section-title {
    color: var(--text-light);
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--primary-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-family: var(--font-body);
}
.form-control:focus {
    outline: 3px solid var(--accent);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checkbox-group input {
    margin-top: 5px;
}
.checkbox-group label {
    font-size: 0.95rem;
}
.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
}

/* Accordion FAQ */
details {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
summary {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition);
}
details[open] summary::after {
    transform: rotate(180deg);
}
details p {
    margin-top: 1rem;
    color: #475569;
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #f1f5f9;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
}
.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #475569;
}
.trust-title {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-col h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.8rem;
}
.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 2rem;
    z-index: 1000;
    display: none;
    border-left: 5px solid var(--accent);
}
.cookie-banner h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.cookie-banner p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #475569;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
.btn-cookie {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
}
.btn-accept {
    background-color: var(--accent);
    color: var(--text-light);
    border: none;
}
.btn-deny {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

/* Custom SVG Wave Pattern */
.wave-divider {
    width: 100%;
    height: 60px;
    display: block;
    fill: var(--bg-light);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid #1e293b;
    }
    .nav-menu.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .features-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .form-container {
        padding: 1.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}