:root {
    --primary: #1e293b;
    --primary-light: #334155;
    --accent: #b45309;
    --accent-hover: #92400e;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Header & Nav */
header {
    background-color: var(--primary);
    color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--bg-white);
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

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

.nav-cta {
    background-color: var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6rem 0;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

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

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
}

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

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

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

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

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

/* Custom SVG Wave Pattern Divider */
.wave-divider {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: var(--bg-light);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--primary);
}

/* Section Common styles */
section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Services Page & Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

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

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    font-weight: bold;
}

.service-price {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Features Block */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-split img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

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

.features-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent);
    font-size: 1.25rem;
}

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

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

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

.price-box {
    margin: 2rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.price-sub {
    color: var(--text-light);
    display: block;
    font-size: 0.95rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-card ul li i {
    color: var(--accent);
    margin-right: 0.5rem;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
}

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

.accordion-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.accordion-content {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    background-color: var(--bg-light);
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Trust Layer Plaque */
.trust-layer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--primary-light);
    font-size: 0.95rem;
}

.trust-layer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.trust-layer-text p {
    color: var(--border);
    margin-bottom: 1rem;
}

.trust-layer-data {
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
}

.trust-layer-data h4 {
    margin-bottom: 0.75rem;
    color: var(--bg-white);
}

.trust-layer-data p {
    color: var(--border);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: var(--border);
    padding: 3rem 0 1.5rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid var(--primary-light);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    z-index: 100;
    padding: 1.5rem 0;
    box-shadow: 0 -10px 25px -5px rgb(0 0 0 / 0.3);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--border);
}

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

.cookie-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Simple Responsive overrides */
@media (max-width: 992px) {
    .hero-grid, .stats-grid, .steps-grid, .services-grid, .features-split, .pricing-grid, .form-grid, .trust-layer-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .pricing-card.popular {
        transform: none;
    }
    .footer-links {
        justify-content: flex-start;
    }
    .cookie-container {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-btns {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}
@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;
    }
}