:root {
    --primary: #3A1F5D;
    --primary-light: #58328D;
    --accent: #F2A154;
    --accent-hover: #E08E3E;
    --bg: #FAF7F2;
    --text: #2D232F;
    --white: #FFFFFF;
    --card-bg: #FFFFFF;
    --border: #E5DCD0;
    --shadow: 0 8px 30px rgba(58, 31, 93, 0.06);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', Arial, sans-serif;
}

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

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

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

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--primary);
    color: var(--bg);
    padding: 10px 20px;
    z-index: 1000;
    font-weight: bold;
    border-radius: 4px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
}

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

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

/* HEADER & NAV */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    padding: 16px 0;
}

.header-container {
    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-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

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

/* HERO */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at 10% 20%, rgba(58, 31, 93, 0.03) 0%, rgba(242, 161, 84, 0.03) 90%);
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* STATS */
.stats {
    background-color: var(--primary);
    color: var(--bg);
    padding: 48px 0;
}

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

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

/* STEPS */
.steps {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-weight: bold;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-bottom: 16px;
}

/* SERVICES */
.services-section {
    padding: 80px 0;
    background-color: #F3ECE3;
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    margin-bottom: 16px;
}

/* FEATURES */
.features {
    padding: 80px 0;
}

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

.features-list {
    list-style: none;
    margin-top: 24px;
}

.features-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list i {
    color: var(--accent-hover);
    margin-top: 6px;
}

/* PRICING */
.pricing {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.price-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    background-color: var(--bg);
    transition: transform 0.3s ease;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.popular-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.price-card h3 {
    margin-bottom: 16px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}

/* FORM SECTION */
.form-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

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

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

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

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

/* TRUST LAYER */
.trust-layer {
    background-color: #F5EFEB;
    border-top: 1px solid var(--border);
    padding: 48px 0;
    font-size: 0.95rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.trust-disclaimer {
    color: #6C5A70;
}

/* FOOTER */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 48px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

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

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px;
    border-radius: 12px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* UTILITIES */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        gap: 48px;
    }
    .price-card.featured {
        transform: none;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
}