:root {
    --primary-color: #0f172a;
    --secondary-color: #f8fafc;
    --accent-color: #d97706;
    --accent-hover: #b45309;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-color);
    color: 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;
}

/* Custom Grid Pattern Background */
.grid-pattern {
    background-image: radial-gradient(rgba(217, 119, 6, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
}

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

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

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

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

.nav-menu {
    display: flex;
    gap: 24px;
    list-style: none;
}

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

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

.nav-btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
}

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

/* Base Sections */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
}

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

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

.hero-img {
    flex: 1;
}

.hero-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

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

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

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Process Section */
.process {
    background: #ffffff;
}

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

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

.process-card {
    padding: 32px;
    background: var(--secondary-color);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.process-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.process-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

/* Feature Block */
.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-block img {
    flex: 1;
    width: 50%;
    border-radius: 12px;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-content ul {
    list-style: none;
    margin-top: 24px;
}

.feature-content li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-content i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

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

.price-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.1);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #ffffff;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

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

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

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.price-features i {
    color: var(--accent-color);
}

.btn-price {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.price-card.featured .btn-price {
    background: var(--accent-color);
}

.price-card.featured .btn-price:hover {
    background: var(--accent-hover);
}

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

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 1000px;
}

/* Form Section */
.form-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.95rem;
}

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

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

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

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

.btn-submit {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

/* Trust Layer & Footer */
.trust-layer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 40px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #1e293b;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-layer h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

.trust-layer p {
    color: #94a3b8;
    margin-bottom: 12px;
}

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

footer {
    background: #0b0f19;
    color: #94a3b8;
    padding: 40px 20px;
    font-size: 0.9rem;
}

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

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.cookie-banner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--accent-color);
    color: #ffffff;
}

.cookie-reject {
    background: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.75rem;
    }
    .services-grid, .pricing-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .feature-block {
        flex-direction: column;
    }
    .feature-block img {
        width: 100%;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-container.nav-open .nav-menu {
        display: flex;
    }
    .burger {
        display: block;
    }
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}