:root {
    --ink: #18211e;
    --muted: #52635e;
    --paper: #fbfaf6;
    --surface: #ffffff;
    --mist: #e8f3f0;
    --line: #d9e3df;
    --teal: #0b8f87;
    --teal-dark: #075f5a;
    --amber: #f4a33a;
    --coral: #d96345;
    --charcoal: #111816;
    --shadow: 0 24px 60px rgba(17, 24, 22, 0.16);
    --radius: 8px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

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

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

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

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

h1 {
    max-width: 11ch;
    font-size: 4.25rem;
}

h2 {
    font-size: 2.35rem;
}

h3 {
    font-size: 1.2rem;
}

.container {
    width: min(var(--content), calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    max-width: 760px;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    padding: 10px 14px;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: blur(16px);
}

.header-top {
    border-bottom: 1px solid var(--line);
    background: var(--ink);
    color: var(--surface);
}

.header-top__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-top__inner span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
}

.site-header__inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.brand img {
    width: 40px;
    height: 40px;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.header-contact a {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--surface);
    padding: 7px 9px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.nav a {
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
}

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

.nav .nav__cta {
    background: var(--ink);
    color: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    padding: 12px 18px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
    cursor: pointer;
    overflow-wrap: anywhere;
    text-align: center;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    transition: box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button--primary {
    background: var(--teal);
    color: var(--surface);
    box-shadow: 0 14px 34px rgba(11, 143, 135, 0.24);
}

.button--primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 10px 24px rgba(7, 95, 90, 0.2);
}

.button--secondary {
    background: var(--mist);
    color: var(--ink);
}

.page-hero .button--secondary {
    background: var(--surface);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    color: var(--surface);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--surface);
}

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(11, 17, 15, 0.92), rgba(11, 17, 15, 0.62) 48%, rgba(11, 17, 15, 0.26)),
        linear-gradient(180deg, rgba(11, 17, 15, 0.24), rgba(11, 17, 15, 0.72));
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 44px;
    align-items: center;
    min-height: 610px;
    padding-block: 44px;
}

.hero__copy {
    max-width: 650px;
}

.hero h1 {
    max-width: none;
    white-space: nowrap;
}

.eyebrow {
    color: var(--amber);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero__lead {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.35rem;
}

.hero__actions,
.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__cta-card,
.hero__quote,
.quote-main,
.quote-sidebar,
.check-panel {
    border: 1px solid rgba(24, 33, 30, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.hero__quote {
    align-self: stretch;
    display: flex;
    align-items: center;
}

.hero__cta-card {
    padding: 30px;
}

.hero__cta-card .eyebrow {
    margin-bottom: 12px;
}

.hero__cta-card h2 {
    margin-bottom: 14px;
    font-size: 2.15rem;
}

.hero__cta-card p:not(.eyebrow) {
    color: var(--muted);
}

.hero__cta-card .button {
    width: 100%;
    margin-top: 14px;
}

.quote-form {
    width: 100%;
    padding: 28px;
}

.quote-form--compact {
    padding: 20px;
}

.quote-form__intro h2 {
    margin-bottom: 8px;
    font-size: 1.65rem;
}

.quote-form__intro p {
    margin-bottom: 18px;
    color: var(--muted);
}

.quote-form--compact .quote-form__intro p {
    display: none;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-form--compact .quote-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.quote-form--compact .field {
    margin-bottom: 10px;
}

.field label,
.consent {
    color: var(--ink);
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    padding: 11px 12px;
}

.quote-form--compact .field input,
.quote-form--compact .field textarea {
    min-height: 42px;
    padding: 9px 10px;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 3px solid rgba(11, 143, 135, 0.2);
    border-color: var(--teal);
}

.field--file {
    position: relative;
    border: 1px dashed rgba(11, 143, 135, 0.48);
    border-radius: var(--radius);
    background: var(--mist);
    padding: 14px;
}

.quote-form--compact .field--file {
    padding: 12px;
}

.field--file input {
    background: var(--surface);
}

.file-pill {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--surface);
    padding: 5px 8px;
    font-size: 0.88rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.quote-form--compact .file-pill {
    display: none;
}

.field__hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.quote-form--compact .field__hint {
    display: none;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 8px 0 16px;
    font-size: 0.92rem;
}

.quote-form--compact .consent {
    margin: 4px 0 12px;
    font-size: 0.84rem;
    line-height: 1.35;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--teal);
}

.turnstile-field {
    min-height: 65px;
    margin: 10px 0 16px;
}

.turnstile-message {
    margin: 8px 0 0;
    color: #8a3b00;
    font-size: 0.94rem;
}

.quote-form__submit {
    width: 100%;
}

.print-sales {
    background:
        linear-gradient(180deg, var(--surface), var(--paper));
    padding-block: 82px;
}

.print-sales__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: end;
    margin-bottom: 28px;
}

.print-sales__intro h2 {
    max-width: 780px;
}

.print-sales__intro p {
    max-width: 760px;
    color: var(--muted);
}

.print-sales__cta {
    border-left: 4px solid var(--teal);
    border-radius: var(--radius);
    background: var(--mist);
    padding: 22px;
}

.print-sales__cta strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
    line-height: 1.2;
}

.print-sales__cta p {
    margin-bottom: 16px;
    color: var(--muted);
}

.print-sales__cta .button {
    width: 100%;
}

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

.print-sales__item {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 16px 42px rgba(24, 33, 30, 0.08);
}

.print-sales__item span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--amber);
    font-weight: 900;
}

.print-sales__item h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.print-sales__item p {
    margin-bottom: 0;
    color: var(--muted);
}

.print-sales__item .text-link {
    margin-top: auto;
    padding-top: 18px;
}

.service-strip {
    background: var(--charcoal);
    color: var(--surface);
}

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

.service-strip__grid div {
    min-height: 168px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
}

.service-strip span {
    display: block;
    color: var(--amber);
    font-weight: 900;
}

.service-strip strong {
    display: block;
    margin-top: 6px;
    font-size: 1.25rem;
}

.service-strip p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.section {
    padding-block: 82px;
}

.section--tint {
    background: var(--mist);
}

.section__header {
    max-width: 760px;
    margin-bottom: 28px;
}

.section__header p:last-child,
.split p,
.page-hero p,
.quote-sidebar p,
.site-footer p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

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

.blog-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.blog-feature picture,
.blog-post-hero__image,
.blog-article figure picture {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
}

.blog-feature picture {
    aspect-ratio: 16 / 9;
}

.blog-feature img,
.blog-post-hero__image img,
.blog-article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-feature article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 30px;
    box-shadow: 0 12px 36px rgba(24, 33, 30, 0.07);
}

.blog-feature span {
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card {
    min-height: 210px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 12px 36px rgba(24, 33, 30, 0.07);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
}

.blog-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 12px 36px rgba(24, 33, 30, 0.07);
}

.blog-card picture {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    background: var(--mist);
    margin: -8px -8px 18px;
}

.blog-card picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card span {
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 14px 0 12px;
    font-size: 1.25rem;
}

.blog-card p {
    color: var(--muted);
}

.blog-card a {
    margin-top: auto;
    color: var(--teal-dark);
    font-weight: 900;
}

.reference-links {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.reference-links a {
    color: var(--teal-dark);
    font-weight: 900;
}

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

.location-country {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 12px 36px rgba(24, 33, 30, 0.07);
}

.location-country h3 {
    margin-bottom: 14px;
}

.location-country ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.location-country a {
    color: var(--teal-dark);
    font-weight: 800;
}

.blog-post-hero {
    background:
        linear-gradient(135deg, rgba(232, 243, 240, 0.95), rgba(251, 250, 246, 1) 60%),
        linear-gradient(90deg, var(--teal), var(--amber));
    padding-block: 64px;
}

.blog-post-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: center;
}

.blog-post-hero h1 {
    max-width: 12ch;
    color: var(--ink);
    font-size: 3.65rem;
}

.blog-post-hero__lead {
    color: var(--muted);
    font-size: 1.18rem;
}

.article-meta {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
}

.blog-post-hero__image {
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 300px;
    gap: 54px;
    align-items: start;
    padding-block: 72px;
}

.article-content {
    font-size: 1.08rem;
}

.article-content p {
    color: var(--muted);
}

.article-content a {
    color: var(--teal-dark);
    font-weight: 800;
}

.blog-article figure {
    margin: 36px 0;
}

.blog-article figure picture {
    display: block;
    aspect-ratio: 3 / 2;
    box-shadow: 0 14px 38px rgba(24, 33, 30, 0.08);
}

.blog-article figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.article-sidebar {
    position: sticky;
    top: 132px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 12px 36px rgba(24, 33, 30, 0.07);
}

.article-sidebar h2 {
    font-size: 1.25rem;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
    align-items: center;
}

.check-panel,
.quote-sidebar {
    padding: 28px;
}

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

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.final-cta {
    background: var(--ink);
    color: var(--surface);
}

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

.final-cta h2 {
    margin-bottom: 0;
}

.final-cta p:not(.eyebrow) {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.quote-tip-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 38px;
    padding-top: 28px;
}

.quote-tip-strip h3 {
    color: var(--surface);
}

.quote-tip-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.quote-tip-strip__grid p {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    padding: 16px;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(232, 243, 240, 0.95), rgba(251, 250, 246, 1) 60%),
        linear-gradient(90deg, var(--teal), var(--amber));
    padding-block: 72px;
}

.page-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 40px;
    align-items: center;
}

.page-hero h1 {
    max-width: 13ch;
    color: var(--ink);
}

.fdm-hero h1 {
    max-width: 15ch;
}

.quote-hero__points,
.result-list {
    display: grid;
    gap: 12px;
    margin: 0;
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px 24px 24px 42px;
    box-shadow: 0 14px 38px rgba(24, 33, 30, 0.08);
}

.quote-start {
    background:
        linear-gradient(135deg, rgba(232, 243, 240, 0.96), rgba(251, 250, 246, 1) 58%),
        linear-gradient(90deg, var(--teal), var(--amber));
    padding-block: 46px 58px;
}

.quote-start__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.quote-start__copy {
    position: sticky;
    top: 132px;
}

.quote-start h1 {
    max-width: 9ch;
    color: var(--ink);
    font-size: 3.7rem;
}

.quote-start__copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.capacity-panel {
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--surface);
    padding: 30px;
    box-shadow: var(--shadow);
}

.capacity-panel span {
    color: var(--amber);
    font-weight: 900;
    text-transform: uppercase;
}

.capacity-panel strong {
    display: block;
    margin-top: 12px;
    font-size: 2.3rem;
    line-height: 1;
}

.capacity-panel p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

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

.about-story {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-story div {
    border-left: 4px solid var(--teal);
    background: var(--surface);
    padding: 22px 24px;
}

.about-story p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--teal-dark);
    font-weight: 900;
}

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

.fdm-process article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
}

.fdm-process span {
    color: var(--amber);
    font-weight: 900;
}

.fdm-process p {
    color: var(--muted);
}

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

.fdm-dark-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: start;
}

.section--dark p {
    color: rgba(255, 255, 255, 0.72);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mini-grid div {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    padding: 18px;
}

.mini-grid strong {
    color: var(--amber);
}

.quote-section {
    padding-top: 56px;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.quote-main {
    overflow: hidden;
}

.result-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.site-footer {
    background: #f3f0e8;
    color: var(--ink);
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-block: 20px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    h1 {
        max-width: 12ch;
        font-size: 3.35rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero__inner,
    .page-hero__layout,
    .blog-post-hero__layout,
    .article-layout,
    .print-sales__intro,
    .quote-start__layout,
    .split,
    .quote-layout,
    .about-story,
    .fdm-dark-grid {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        min-height: 0;
    }

    .hero__quote,
    .hero__cta-card {
        max-width: 620px;
    }

    .quote-start__copy {
        position: static;
    }

    .article-sidebar {
        position: static;
    }

    .quote-start h1 {
        max-width: 12ch;
        font-size: 3.1rem;
    }

    .quote-start .quote-main {
        order: -1;
    }

    .service-strip__grid,
    .print-sales__grid,
    .fdm-process,
    .card-grid,
    .blog-card-grid,
    .blog-feature,
    .location-country-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 680px) {
    .container {
        width: min(var(--content), calc(100% - 28px));
    }

    .site-header__inner,
    .final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header__inner {
        padding-block: 12px;
    }

    .header-top__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 10px;
    }

    .header-contact {
        justify-content: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .nav a {
        padding: 8px 10px;
        font-size: 0.95rem;
    }

    .hero__inner {
        gap: 28px;
        padding-block: 46px;
    }

    .hero__shade {
        background:
            linear-gradient(180deg, rgba(11, 17, 15, 0.9), rgba(11, 17, 15, 0.72)),
            linear-gradient(90deg, rgba(11, 17, 15, 0.3), rgba(11, 17, 15, 0.3));
    }

    h1 {
        font-size: 2.65rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero__lead {
        font-size: 1.1rem;
    }

    .blog-post-hero h1 {
        font-size: 2.45rem;
    }

    .hero__actions,
    .result-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .quote-form,
    .quote-form--compact,
    .check-panel,
    .quote-sidebar {
        padding: 20px;
    }

    .quote-form__grid,
    .quote-form--compact .quote-form__grid,
    .service-strip__grid,
    .print-sales__grid,
    .fdm-process,
    .mini-grid,
    .quote-tip-strip__grid,
    .card-grid,
    .blog-card-grid,
    .blog-feature,
    .location-country-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .print-sales,
    .quote-start,
    .blog-post-hero,
    .page-hero {
        padding-block: 54px;
    }

    .article-layout {
        padding-block: 50px;
    }

    .print-sales__item {
        min-height: auto;
    }

    .print-sales__item h3 {
        font-size: 1.35rem;
    }

    .service-card,
    .blog-card,
    .service-strip__grid div {
        min-height: auto;
    }
}
