:root {
    --primary: #1F2937;
    --accent: #C2593F;
    --accent-hover: #A5432B;
    --bg-light: #FDFBF7;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', Helvetica, sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

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

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    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;
}

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

/* Custom Background Wave/Grid Pattern */
.bg-pattern {
    background-image: radial-gradient(rgba(194, 89, 63, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Header & Nav */
header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover {
    background-color: var(--accent-hover);
}

/* Statistics */
.stats {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 5px;
}

/* Process Section */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 4px solid var(--accent);
}
.step-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Asymmetric Block */
.asymmetric {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #F3ECE3;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 40px auto;
}
.asymmetric-image {
    flex: 1;
}
.asymmetric-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.asymmetric-text {
    flex: 1.2;
}
.asymmetric-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.asymmetric-text ul {
    list-style: none;
    margin-top: 15px;
}
.asymmetric-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.asymmetric-text li i {
    color: var(--accent);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}
.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-content {
    padding: 25px;
}
.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}
.price-card.featured {
    border-color: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(194, 89, 63, 0.15);
}
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
}
.price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin: 20px 0;
}
.price-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}
.price-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.price-features i {
    color: var(--accent);
}

/* Lead Form Section */
.form-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 20px;
}
.form-container {
    max-width: 650px;
    margin: 0 auto;
}
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: 500;
}
.form-group input, .form-group textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: #9CA3AF;
}
.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid var(--accent);
    background-color: rgba(255,255,255,0.15);
}
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
.checkbox-group input {
    margin-top: 4px;
}
.checkbox-group label {
    font-size: 0.85rem;
}
.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
}

/* FAQ accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i {
    transition: var(--transition);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #F3ECE3;
    padding: 40px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
}
.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}
.trust-content h4 {
    margin-bottom: 10px;
}
.trust-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}
footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 40px 20px;
    font-size: 0.85rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-nav {
    display: flex;
    gap: 15px;
    list-style: none;
}
.footer-nav a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cookie-text {
    flex: 1;
    font-size: 0.85rem;
}
.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.btn-cookie {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.btn-cookie.accept {
    background-color: var(--accent);
    color: var(--white);
}
.btn-cookie.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Maps iframe */
.map-responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.map-responsive iframe {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-links.active {
        display: flex;
    }
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .asymmetric {
        flex-direction: column;
        padding: 30px 20px;
    }
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }
}