:root {
    --primary: #0F1A24;
    --primary-light: #1A2D3D;
    --accent: #C5A880;
    --accent-hover: #B3946C;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-muted: #627284;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Inter', Helvetica, Arial, sans-serif;
    --shadow: 0 10px 30px rgba(15, 26, 36, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Skip link accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 16px;
    z-index: 100;
    transition: var(--transition);
}
.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;
}

/* Base Layout & Wrapper */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Pattern Background Design */
.hero-pattern {
    background-image: radial-gradient(var(--accent) 0.5px, transparent 0.5px), radial-gradient(var(--accent) 0.5px, var(--primary) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.03;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
}

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

.nav-btn {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.nav-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Hamburger mobile */
.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 81px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 24px;
    z-index: 49;
    border-bottom: 2px solid var(--accent);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.mobile-nav.open {
    display: block;
}

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

.hero h1 {
    color: var(--bg-white);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--accent);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    margin-left: 16px;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Statistics Block */
.stats {
    background-color: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

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

.stat-item h3 {
    font-size: 44px;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works (Steps) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 8px;
    border-top: 4px solid var(--accent);
    box-shadow: var(--shadow);
    text-align: center;
}

.step-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-card-content {
    padding: 32px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

/* Features Block (Asymmetric) */
.features-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background-color: var(--bg-white);
}

.features-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.features-content ul {
    list-style: none;
    margin-top: 24px;
}

.features-content li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}

.features-content li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Trust block (No fake reviews) */
.trust-block {
    background-color: var(--primary-light);
    color: var(--bg-white);
    border-radius: 12px;
    padding: 48px;
    margin-top: 48px;
    box-shadow: var(--shadow);
}

.trust-block h3 {
    color: var(--accent);
    margin-bottom: 16px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 48px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 3px solid var(--accent);
    position: relative;
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

.price {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--primary);
    margin: 24px 0;
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--accent);
    margin-right: 8px;
}

/* Form Section (Lead Capture) */
.form-section {
    background-color: var(--primary);
    color: var(--bg-white);
    position: relative;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    margin-bottom: 12px;
    text-align: center;
}

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

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

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

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

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

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

.checkbox-group label {
    font-size: 14px;
    color: var(--text-muted);
}

.form-wrapper button {
    width: 100%;
    margin-top: 16px;
}

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

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

/* Trust Layer & Footer */
.trust-layer {
    background-color: #F0EDE8;
    padding: 40px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.trust-layer-content {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-layer h4 {
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 60px 0 20px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    border: 1px solid var(--accent);
}

.cookie-banner h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-btn-group {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--bg-white);
}

/* Responsive queries */
@media (max-width: 991px) {
    .hero-grid, .services-grid, .pricing-grid, .features-block, .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pricing-card.popular {
        transform: none;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    header .header-container {
        padding: 16px;
    }
    nav {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .hero h1 {
        font-size: 32px;
    }
    .form-wrapper {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}