:root {
    --bg-primary: #fdfbf7;
    --bg-secondary: #f1f5f9;
    --text-primary: #0f172a;
    --text-muted: #475569;
    --accent: #d97706;
    --accent-hover: #b45309;
    --border: #e2e8f0;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

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

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

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

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 2rem; position: relative; padding-bottom: 10px; }
h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background-color: var(--accent); }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

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

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    z-index: 100;
    transition: top 0.3s;
}
.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;
}

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

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

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.05), transparent), var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    object-fit: cover;
    height: 450px;
}

/* Statistics */
.stats {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

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

.stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.step-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--border);
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(217, 119, 6, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 700;
}

.step-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Trust block */
.trust-principles {
    background-color: var(--bg-secondary);
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.principle-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

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

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

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

.service-body {
    padding: 35px;
}

/* Features asymmetric */
.feature-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.feature-asymmetric img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

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

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

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

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

.price-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.08);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: 1.5rem 0;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
}

.price-features li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-info h2 {
    margin-bottom: 1.5rem;
}

.form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-primary);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: var(--white);
}

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

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

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

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

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

.faq-trigger.open i {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding-top: 15px;
    color: var(--text-muted);
}

/* Trust Layer (All pages footer transparent note) */
.trust-layer {
    background-color: var(--white);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-layer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-layer h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

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

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #cbd5e1;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--text-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.btn-cookie-accept {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-cookie-accept:hover { background-color: var(--accent-hover); }
.btn-cookie-reject:hover { background-color: rgba(255,255,255,0.1); }

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-grid, .stats-grid, .steps-grid, .services-grid, .feature-asymmetric, .form-grid, .footer-grid, .principles-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .burger { display: block; }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 20px;
    }
    
    nav.active {
        display: flex;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}