:root {
    --ink: #17202a;
    --muted: #5f6f7f;
    --line: #dde5ec;
    --soft: #f5f8fa;
    --paper: #ffffff;
    --brand: #e9453f;
    --brand-dark: #b72e39;
    --fresh: #0d8f73;
    --gold: #f2b84b;
    --blue: #286fd1;
    --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(221, 229, 236, 0.8);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1160px, calc(100% - 40px));
    min-height: 74px;
    margin: 0 auto;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--gold));
    border-radius: 8px;
    font-size: 20px;
}

.brand span:last-child {
    font-size: 19px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #384756;
    font-size: 15px;
    font-weight: 650;
}

.nav-links a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
    color: var(--brand-dark);
    border-bottom-color: var(--brand);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    font-size: 22px;
    cursor: pointer;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.button.primary {
    color: white;
    background: var(--brand);
    box-shadow: 0 12px 26px rgba(233, 69, 63, 0.24);
}

.button.secondary {
    color: var(--ink);
    background: white;
    border-color: var(--line);
}

.button.dark {
    color: white;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    background: #fff7f2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 44px;
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 74px);
    max-height: 860px;
    margin: 0 auto;
    padding: 58px 0 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 999px;
}

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

h1 {
    max-width: 680px;
    margin-bottom: 20px;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 0.98;
    letter-spacing: 0;
}

.lead {
    max-width: 650px;
    color: #435363;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 34px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 600px;
}

.metric {
    padding: 15px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(221, 229, 236, 0.72);
    border-radius: 8px;
}

.metric strong {
    display: block;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.1;
}

.metric span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.hero-media {
    position: relative;
    min-width: 0;
}

.hero-media img {
    width: 100%;
    height: min(63vh, 610px);
    min-height: 430px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.floating-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(280px, calc(100% - 48px));
    padding: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(221, 229, 236, 0.9);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(23, 32, 42, 0.16);
}

.floating-note strong {
    display: block;
    margin-bottom: 5px;
}

.floating-note span {
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: 86px 0;
}

.section.alt {
    background: var(--soft);
}

.section.dark-band {
    color: white;
    background: var(--ink);
}

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

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.5fr);
    align-items: end;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}

.dark-band .section-heading p,
.dark-band .muted {
    color: #c4d0dc;
}

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

.feature-card,
.price-card,
.contact-card,
.customer-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature-card {
    padding: 24px;
}

.feature-card h3 {
    margin-bottom: 9px;
    font-size: 21px;
}

.feature-card p,
.customer-card p,
.price-card p {
    color: var(--muted);
}

.icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: white;
    background: var(--fresh);
    border-radius: 8px;
    font-weight: 900;
}

.showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 46px;
}

.showcase.reverse {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.showcase img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.showcase-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #354556;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--fresh);
    border-radius: 4px;
}

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

.step {
    padding: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.step span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 8px;
    font-weight: 900;
}

.step h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.step p {
    margin-bottom: 0;
    color: #c4d0dc;
}

.page-hero {
    padding: 84px 0 70px;
    background: #fff7f2;
}

.page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 44px;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 66px);
}

.page-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 26px;
}

.price {
    margin: 18px 0 6px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.price small {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.price-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
    padding: 0;
    color: #354556;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 23px;
}

.price-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--fresh);
    border-radius: 2px;
}

.price-card .button {
    margin-top: auto;
}

.highlight {
    border-color: rgba(233, 69, 63, 0.45);
    box-shadow: var(--shadow);
}

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

.customer-card {
    padding: 24px;
}

.customer-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 21px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag {
    padding: 6px 10px;
    color: #24594e;
    background: #e8f6f2;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 24px;
}

.contact-card {
    padding: 28px;
}

.contact-card dl {
    display: grid;
    gap: 20px;
    margin: 0;
}

.contact-card dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-card dd {
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 800;
}

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

label {
    display: grid;
    gap: 7px;
    color: #344454;
    font-size: 14px;
    font-weight: 750;
}

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

textarea {
    min-height: 130px;
    resize: vertical;
}

.cta-band {
    padding: 62px 0;
    color: white;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand) 46%, #df8d27);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    max-width: 680px;
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.07;
}

.site-footer {
    padding: 38px 0;
    color: #c4d0dc;
    background: #111820;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 920px) {
    .nav-shell {
        min-height: 68px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 12px;
        border-bottom: 0;
        border-radius: 6px;
    }

    .nav-links a:hover,
    .nav-links a[aria-current="page"] {
        background: var(--soft);
    }

    .nav-actions .button {
        display: none;
    }

    .hero-grid,
    .page-hero .container,
    .section-heading,
    .showcase,
    .showcase.reverse,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: 0;
        max-height: none;
        padding-top: 42px;
    }

    .hero-media img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 11;
    }

    .feature-grid,
    .pricing-grid,
    .customer-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav-shell,
    .container,
    .hero-grid {
        width: min(100% - 28px, 1160px);
    }

    .hero-metrics,
    .feature-grid,
    .pricing-grid,
    .customer-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .page-hero {
        padding: 58px 0;
    }

    .lead {
        font-size: 18px;
    }

    .floating-note {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .hero-actions,
    .cta-inner,
    .footer-grid {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}
