:root {
    --ink: #10201f;
    --muted: #5b6d69;
    --teal: #147d76;
    --teal-dark: #075e58;
    --mint: #e5f4ef;
    --paper: #ffffff;
    --soft: #f5f8f6;
    --amber: #d58a2a;
    --coral: #c96d55;
    --line: #d8e4df;
    --shadow: 0 18px 45px rgba(16, 32, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: var(--teal-dark);
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    max-width: 780px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 46px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
}

.main-nav a {
    color: var(--ink);
    border-radius: 8px;
    padding: 9px 11px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--teal-dark);
    background: var(--mint);
}

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--paper);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(9, 28, 26, 0.88), rgba(9, 28, 26, 0.58) 46%, rgba(9, 28, 26, 0.1));
}

.hero-content {
    position: relative;
    padding: 96px 0;
}

.hero-content > * {
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--amber);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.12;
}

h1 {
    margin-bottom: 22px;
    font-size: 4rem;
}

h2 {
    margin-bottom: 16px;
    font-size: 2.1rem;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.lead {
    color: inherit;
    font-size: 1.2rem;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 11px 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button-primary {
    color: var(--paper);
    background: var(--teal);
    box-shadow: 0 10px 22px rgba(20, 125, 118, 0.24);
}

.button-primary:hover {
    background: var(--teal-dark);
}

.button-secondary {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.section {
    padding: 78px 0;
}

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

.section-split {
    background: var(--mint);
}

.section-contrast {
    color: var(--paper);
    background: #182825;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 34px;
}

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

.card,
.price-card,
.note-panel,
.contact-details,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.card,
.note-panel,
.contact-details,
.contact-form {
    padding: 26px;
}

.card p,
.price-card p,
.note-panel p {
    color: var(--muted);
}

.split-layout,
.content-grid,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 42px;
    align-items: start;
}

.highlight-list {
    display: grid;
    gap: 12px;
}

.highlight-list p {
    margin: 0;
    border-left: 4px solid var(--coral);
    border-radius: 8px;
    padding: 16px 18px;
    background: var(--paper);
    font-weight: 800;
}

.page-hero {
    padding: 92px 0 70px;
    color: var(--paper);
    background:
        linear-gradient(120deg, rgba(7, 94, 88, 0.94), rgba(24, 40, 37, 0.96)),
        linear-gradient(45deg, rgba(213, 138, 42, 0.2), rgba(201, 109, 85, 0.2));
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.88);
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: var(--paper);
}

.service-row p {
    margin-bottom: 0;
    color: var(--muted);
}

.service-row a {
    font-weight: 800;
    white-space: nowrap;
}

.price-card {
    padding: 28px;
}

.price-card.featured {
    border-color: var(--teal);
    box-shadow: 0 22px 55px rgba(20, 125, 118, 0.16);
}

.package-title {
    color: var(--muted);
    font-size: 17px;
}

.price-label {
    color: var(--coral);
    font-weight: 800;
    text-transform: uppercase;
}

.price {
    color: var(--ink);
    font-size: 2rem;
    font-weight: 900;
}

.cta-band {
    justify-content: space-between;
}

.contact-details a {
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field-captcha {
    min-height: 90px;
    overflow-x: auto;
}

.contact-form label {
    font-weight: 800;
}

.form-notice {
    margin: 0 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
}

.form-notice-success {
    color: var(--teal-dark);
    background: var(--mint);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--soft);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(20, 125, 118, 0.18);
    border-color: var(--teal);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form ul {
    margin: 0;
    padding-left: 18px;
    color: #a63b2c;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 0;
}

.footer-inner p {
    margin: 0;
    color: var(--muted);
}

.footer-inner a {
    font-weight: 800;
}

@media (max-width: 820px) {
    .header-inner,
    .split-layout,
    .content-grid,
    .contact-layout,
    .service-row,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .header-inner {
        display: grid;
        align-items: start;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(9, 28, 26, 0.9), rgba(9, 28, 26, 0.64));
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand {
        align-items: flex-start;
    }

    .brand-logo {
        height: 40px;
    }

    .main-nav a {
        padding: 8px 9px;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 72px 0;
    }

    h1 {
        font-size: 2.25rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .section {
        padding: 58px 0;
    }
}
