:root {
    --primary: #1e293b;
    --primary-light: #334155;
    --accent: #d97706;
    --accent-hover: #b45309;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border: #e2e8f0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

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

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

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-white);
    padding: 10px 20px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header & Navigation */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 90;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

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

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

nav a {
    color: var(--text-muted);
    font-weight: 500;
}

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

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

/* Mobile Menu */
.mobile-nav {
    display: none;
    background: var(--primary);
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 80;
    padding: 40px 20px;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav a {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30,41,59,0.95) 0%, rgba(15,23,42,0.98) 100%), url('images/hero.jpg') no-repeat center center/cover;
    color: var(--bg-white);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--border);
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--accent-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Section Common */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0 auto;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-muted);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 5px solid var(--accent);
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Trust block */
.trust-block {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.trust-block h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

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

.trust-item h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

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

.service-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    flex-grow: 1;
}

/* Features Block */
.feature-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-text {
    flex: 1.2;
}

.feature-text ul {
    list-style: none;
    margin-top: 20px;
}

.feature-text li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

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

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

.price-card {
    background: var(--bg-white);
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(217,119,6,0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 10px;
}

.price-card li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.price-card li i {
    color: var(--accent);
    margin-right: 10px;
}

/* Contact Form Section */
.contact-section {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

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

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

.checkbox-group input {
    width: auto;
    margin-top: 6px;
}

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
}

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

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

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
}

/* Legal & Trust Layers */
.trust-layer {
    background-color: #f1f5f9;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-layer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-layer-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 40px 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--bg-white);
    padding: 25px 20px;
    z-index: 100;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media(min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-cookie-decline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--bg-white);
}

/* Responsiveness */
@media(max-width: 768px) {
    nav ul {
        display: none;
    }
    .burger {
        display: block;
    }
    .feature-block {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .price-card.featured {
        transform: none;
    }
}

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