:root {
    --color-primary: #0B192C; /* Navy Royal */
    --color-secondary: #116A7B; /* Deep Teal */
    --color-accent: #C5A880; /* Soft Gold */
    --color-light: #FAF9F6; /* Alabaster background */
    --color-dark: #1A202C; /* Dark text */
    --color-muted: #4A5568; /* Readable gray body text */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: 0.25s ease-in-out;
}

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

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

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

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

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 10px 20px;
    z-index: 10000;
    text-decoration: none;
    font-weight: bold;
    transition: top var(--transition);
}
.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;
}

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

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}
.nav-menu a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color var(--transition);
}
.nav-menu a:hover {
    color: var(--color-secondary);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* Hero Section */
.hero-block {
    padding: 6rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(17, 106, 123, 0.05), transparent), #ffffff;
    text-align: center;
}
.hero-block h1 {
    font-size: 2.85rem;
    line-height: 1.25;
    max-width: 850px;
    margin: 0 auto 1.5rem;
}
.hero-block p {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: var(--color-secondary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}
.btn:hover {
    background-color: #0b4955;
}
.btn-alt {
    background-color: var(--color-primary);
}
.btn-alt:hover {
    background-color: #050d18;
}

/* Statistics */
.stats-section {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3.5rem 0;
    text-align: center;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}
.stat-item h3 {
    color: var(--color-accent);
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

/* Steps */
.section-padding {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
}
.steps-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
.step-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border-top: 4px solid var(--color-accent);
}
.step-card h3 {
    margin: 1.2rem 0;
    font-size: 1.35rem;
}

/* Asymmetric Features */
.features-asym {
    background: #ffffff;
    padding: 6rem 0;
}
.asym-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4.5rem;
}
.asym-image {
    flex: 1 1 450px;
}
.asym-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.asym-text {
    flex: 1 1 450px;
}
.asym-text ul {
    list-style: none;
    margin-top: 1.5rem;
}
.asym-text li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
}
.asym-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Pricing Grid */
.price-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.price-box {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    text-align: center;
    position: relative;
}
.price-box.popular {
    border: 2px solid var(--color-secondary);
    transform: scale(1.02);
}
.popular-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: #ffffff;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 999px;
    text-transform: uppercase;
}
.price-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

/* Form block */
.form-section {
    background-color: #F1F5F9;
    padding: 6rem 0;
}
.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.input-group {
    margin-bottom: 1.5rem;
}
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.input-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-body);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.checkbox-group input {
    margin-top: 0.35rem;
}

/* Accordion FAQ */
.faq-holder {
    max-width: 850px;
    margin: 0 auto;
}
.faq-node {
    border-bottom: 1px solid #E2E8F0;
    padding: 1.5rem 0;
}
.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
}
.faq-content {
    margin-top: 1rem;
    color: var(--color-muted);
    display: none;
}
.faq-node.active .faq-content {
    display: block;
}

/* Trust layer widget */
.legal-trust-layer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 4.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #334155;
}
.legal-trust-layer h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.legal-trust-layer p {
    margin-bottom: 1.25rem;
}
.legal-trust-layer a {
    color: #38BDF8;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #0F172A;
    color: #64748B;
    padding: 3rem 0;
    font-size: 0.9rem;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #94A3B8;
    text-decoration: none;
}
.footer-nav a:hover {
    color: #ffffff;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    max-width: 650px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    border-radius: 8px;
    padding: 1.75rem;
    z-index: 10000;
    border-left: 5px solid var(--color-primary);
    display: none;
}
.cookie-btns {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

/* Responsive mobile header */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .nav-menu.active {
        display: flex;
    }
    .burger-btn {
        display: block;
    }
    .price-box.popular {
        transform: none;
    }
}

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