:root {
    --primary-color: #D4AF37;
    --dark-color: #1E2022;
    --light-color: #F7F5F0;
    --white: #FFFFFF;
    --text-muted: #6C757D;
    --accent-color: #E07A5F;
    --border-color: #E2E2E2;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

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

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

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 1rem;
    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;
}

/* Header & Nav */
header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.8rem;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

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

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

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

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #c49f2b;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 8rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(30,32,34,0.92) 0%, rgba(30,32,34,0.85) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" fill="%232c2e30"><path d="M0,224L60,197.3C120,171,240,117,360,112C480,107,600,149,720,165.3C840,181,960,171,1080,144C1200,117,1320,75,1380,53.3L1440,32L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Statistics */
.stats {
    background-color: var(--white);
    padding: 4rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border-radius: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 0 auto;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border-top: 4px solid var(--primary-color);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Trust block */
.trust-block {
    background-color: var(--white);
    border-radius: 8px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    margin-bottom: 4rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Feature split */
.feature-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.feature-img-wrapper {
    flex: 1;
}

.feature-img-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.feature-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.8rem;
}

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

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.price-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.3rem 1.2rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.price-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* Form Section */
.form-section {
    background-color: var(--dark-color);
    color: var(--white);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.03);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-sans);
}

.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    border-color: transparent;
}

.form-checkbox {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 0.3rem;
    margin-right: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.form-checkbox a {
    color: var(--primary-color);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0,0,0,0.01);
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
}

/* Trust Layer */
.trust-layer {
    background-color: #EFECE6;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.trust-layer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-layer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.trust-layer p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-banner a {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: bold;
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3) !important;
}

/* Contact page elements */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-wrapper {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* About Story block */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Thank you page */
.thank-you-wrapper {
    text-align: center;
    padding: 8rem 0;
}

.thank-you-wrapper i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-grid, .contact-grid, .about-story, .feature-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .feature-split {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .burger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-color);
        padding: 2rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }
    .form-wrapper {
        padding: 2rem;
    }
}

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