:root {
    --bg-primary: #fcfdfd;
    --bg-dark: #0a0f1d;
    --bg-dark-accent: #111827;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --accent: #b45309;
    --accent-hover: #d97706;
    --border: #e2e8f0;
    --focus-ring: 0 0 0 3px rgba(180, 83, 9, 0.4);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.2s ease;
}

.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 {
    background-color: var(--bg-dark);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

main {
    min-height: calc(100vh - 160px);
}

/* Hero Section with SVG Wave Element */
.hero {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    fill: var(--bg-primary);
    z-index: 1;
}

/* Button UI */
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

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

.btn:focus-visible {
    box-shadow: var(--focus-ring);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Statistics Block */
.stats {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 500;
    color: var(--text-main);
}

/* Features (Asymmetric Image Section) */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.features-img {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.features-img img {
    width: 100%;
    height: auto;
    display: block;
}

.features-text {
    flex: 1.2;
}

.features-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.features-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.features-text li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

/* Services Page & Section */
.services-section {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.grid-services {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
}

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

.service-card-img {
    height: 200px;
    overflow: hidden;
}

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

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.price-card.popular {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: scale(1.03);
}

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

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

.price-val {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

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

.price-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-dark-accent);
    color: var(--text-light);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.form-wrapper h2 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--focus-ring);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
    accent-color: var(--accent);
}

/* FAQ accordion */
.faq-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 3rem;
}

details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: var(--font-serif);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--accent);
}

details[open] summary::after {
    content: "-";
}

details p {
    margin-top: 1rem;
    color: var(--text-main);
}

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

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-title {
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

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

.footer-nav a {
    color: var(--text-muted);
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--text-light);
}

.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Cookie Banner styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Contact page custom styles */
.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form-side {
    flex: 1.2;
}

.contact-map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Responsive Grid adjustments */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .burger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
}