:root {
    --ink: #111820;
    --muted: #5d6978;
    --blue: #1266d6;
    --blue-dark: #0d4fa8;
    --navy: #102033;
    --green: #4f9d68;
    --coral: #ee735d;
    --amber: #e6a23a;
    --paper: #ffffff;
    --wash: #f5f8fb;
    --line: #dce5ee;
    --shadow: 0 18px 44px rgba(11, 26, 45, .12);
    --max: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

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

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

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    margin-bottom: 16px;
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: 4rem;
}

h2 {
    font-size: 2.55rem;
}

h3 {
    font-size: 1.28rem;
}

p {
    color: var(--muted);
}

:focus-visible {
    outline: 3px solid rgba(18, 102, 214, .22);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 44px), var(--max));
    margin: 0 auto;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    top: 12px;
    left: 12px;
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(17, 24, 32, .1);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 26px;
}

.brand,
.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-brand img {
    width: 204px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: auto;
}

.site-nav a {
    border-radius: 4px;
    color: #1f2935;
    font-size: .92rem;
    font-weight: 800;
    padding: 10px 13px;
    transition: color .18s ease, background .18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--blue);
    background: #edf5ff;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    padding: 0 18px;
    transition: background .18s ease, transform .18s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--coral);
    font-size: .82rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 640px;
    overflow: hidden;
    background:
        url("../img/generated/hosting-hero.webp") center right / cover no-repeat,
        var(--navy);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 30%),
        linear-gradient(90deg, rgba(16, 32, 51, .96) 0%, rgba(16, 32, 51, .86) 46%, rgba(16, 32, 51, .38) 100%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 8px;
    background: linear-gradient(90deg, var(--green), var(--blue), var(--coral), var(--amber));
}

.hero-video-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--navy);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.88) contrast(1.04) brightness(.88);
    transform: scale(1.018);
}

.hero-frost {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .03) 44%, rgba(18, 102, 214, .12)),
        rgba(232, 244, 255, .05);
    -webkit-backdrop-filter: blur(2.5px) saturate(1.08);
    backdrop-filter: blur(2.5px) saturate(1.08);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 104px 0 98px;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.18rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.1;
    padding: 12px 22px;
    transition: background .18s ease, transform .18s ease, color .18s ease;
}

.button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.button-ghost:hover {
    background: #fff;
    color: var(--navy);
}

.button-light {
    background: #fff;
    color: var(--navy);
}

.button-light:hover {
    background: #edf5ff;
    color: var(--navy);
}

.section {
    padding: 88px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading.narrow {
    max-width: 640px;
}

.section-heading p:not(.eyebrow) {
    max-width: 680px;
    font-size: 1.06rem;
}

.highlight-section {
    background:
        linear-gradient(135deg, rgba(18, 102, 214, .12), rgba(79, 157, 104, .06)),
        var(--navy);
    color: #fff;
}

.highlight-heading {
    max-width: 780px;
}

.highlight-heading h2 {
    color: #fff;
}

.highlight-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, .72);
}

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

.highlight-grid article {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    padding: 22px;
}

.highlight-grid article::before {
    content: "";
    display: block;
    width: 36px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--green);
}

.highlight-grid article:nth-child(3n + 2)::before {
    background: var(--blue);
}

.highlight-grid article:nth-child(3n)::before {
    background: var(--coral);
}

.highlight-grid h3 {
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.2;
}

.highlight-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .96rem;
    line-height: 1.55;
}

.package-section {
    background: #fff;
}

.package-heading {
    max-width: 780px;
}

.package-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.package-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(11, 26, 45, .08);
    padding: 30px;
    overflow: hidden;
}

.package-card--featured {
    border-color: rgba(18, 102, 214, .38);
    box-shadow: 0 20px 46px rgba(18, 102, 214, .13);
}

.package-card .eyebrow {
    margin-bottom: 10px;
}

.package-card h3 {
    font-size: 1.6rem;
}

.price-lockup {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0 14px;
}

.price-lockup span {
    color: var(--ink);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
}

.price-lockup small {
    color: var(--muted);
    font-size: .96rem;
    font-weight: 800;
}

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

.check-list li {
    position: relative;
    color: #243348;
    font-weight: 800;
    line-height: 1.45;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: .42em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(79, 157, 104, .42);
}

.package-card--featured .check-list li::before {
    background: var(--blue);
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(18, 102, 214, .42);
}

.package-footer {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.package-note {
    margin: 0;
    color: #526173;
}

.package-footer .button {
    width: fit-content;
}

.care-section {
    background: var(--wash);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.care-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 5px solid var(--green);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11, 26, 45, .08);
    padding: 28px;
}

.care-card:nth-child(2) {
    border-top-color: var(--blue);
}

.care-card:nth-child(3) {
    border-top-color: var(--coral);
}

.care-card h3 {
    font-size: 1.35rem;
}

.care-price {
    width: fit-content;
    margin: 0 0 4px;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--blue-dark);
    font-size: .95rem;
    font-weight: 900;
    padding: 7px 12px;
}

.care-card .check-list {
    margin-top: 20px;
}

.service-section {
    background: #fff;
}

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

.service-item {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11, 26, 45, .08);
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
}

.service-item:nth-child(2) img {
    object-position: right center;
}

.service-item:nth-child(3) img {
    object-position: center center;
}

.service-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.service-copy h3 {
    font-size: 1.45rem;
}

.service-copy p:not(.eyebrow) {
    margin-bottom: 18px;
}

.service-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: auto 0 0;
    padding: 0;
}

.service-copy li {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--wash);
    color: #354960;
    font-size: .9rem;
    font-weight: 800;
    padding: 7px 11px;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 20px;
    color: var(--blue);
    font-weight: 900;
}

.text-link:hover {
    color: var(--blue-dark);
}

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

.service-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(11, 26, 45, .08);
}

.service-card h3 {
    font-size: 1.35rem;
}

.service-card p {
    margin-bottom: 0;
}

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

.related-service-card {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(11, 26, 45, .07);
}

.related-service-card span {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 900;
}

.related-service-card small {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}

.related-service-card:hover {
    border-color: rgba(18, 102, 214, .38);
    transform: translateY(-2px);
}

.expectation-section {
    background: var(--wash);
}

.expectation-layout {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}

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

.expectation-grid article {
    border-top: 5px solid var(--green);
    background: #fff;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(11, 26, 45, .07);
}

.expectation-grid article:nth-child(2) {
    border-top-color: var(--blue);
}

.expectation-grid article:nth-child(3) {
    border-top-color: var(--coral);
}

.expectation-grid h2 {
    font-size: 1.26rem;
}

.work-preview-section {
    background: #fff;
}

.work-preview-section .section-heading {
    margin-bottom: 26px;
}

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

.work-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(11, 26, 45, .07);
    overflow: hidden;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.work-card:hover {
    border-color: rgba(18, 102, 214, .35);
    box-shadow: 0 14px 30px rgba(11, 26, 45, .1);
    transform: translateY(-2px);
}

.work-card__media {
    aspect-ratio: 16 / 9;
    background: var(--wash);
    overflow: hidden;
}

.work-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card span,
.work-card small {
    display: block;
    padding-inline: 18px;
}

.work-card span {
    padding-top: 16px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
}

.work-card small {
    padding-top: 6px;
    padding-bottom: 18px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.support-section,
.platform-section {
    background: #fff;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 112px;
}

.process-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.process-list article {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 28px;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
}

.process-list h3 {
    font-size: 1.2rem;
}

.process-list p {
    margin-bottom: 0;
}

.platform-section {
    background: var(--wash);
}

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

.platform-logo {
    display: grid;
    min-height: 88px;
    place-items: center;
}

.platform-logo img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 58px;
    object-fit: contain;
}

.faq-section {
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.3;
}

.faq-list summary::marker {
    color: var(--green);
}

.faq-list p {
    max-width: 780px;
    margin: 12px 0 0;
}

.page-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 32, 51, .96), rgba(16, 32, 51, .72)),
        url("../img/generated/about-planning.webp") center / cover no-repeat,
        var(--navy);
}

.page-hero__inner {
    max-width: 820px;
    padding: 96px 0 86px;
}

.page-hero h1 {
    color: #fff;
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
}

.about-section {
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

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

.about-image {
    aspect-ratio: 500 / 567;
}

.article-copy {
    max-width: 760px;
    font-size: 1.05rem;
}

.article-copy p:first-child {
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1.5;
}

.contact-section {
    min-height: calc(100vh - 76px);
    padding: 86px 0;
    background:
        linear-gradient(90deg, rgba(245, 248, 251, .98), rgba(245, 248, 251, .9)),
        url("../img/generated/website-design.webp") center / cover no-repeat,
        var(--wash);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(330px, .78fr);
    gap: 58px;
    align-items: start;
}

.contact-copy {
    padding-top: 24px;
}

.contact-copy h1 {
    font-size: 3.15rem;
}

.contact-copy p:not(.eyebrow) {
    max-width: 660px;
    font-size: 1.1rem;
}

.contact-method {
    margin-top: 30px;
    border-left: 5px solid var(--green);
    background: #fff;
    padding: 20px 22px;
    box-shadow: 0 12px 30px rgba(11, 26, 45, .08);
}

.contact-method span {
    display: block;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-method a {
    color: var(--blue-dark);
    font-size: 1.12rem;
    font-weight: 900;
}

.contact-form {
    display: grid;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 34px;
}

.hidden-field {
    position: absolute;
    left: -10000px;
}

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

.contact-form span {
    font-weight: 900;
}

.contact-form b {
    color: var(--coral);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd6e1;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(18, 102, 214, .18);
}

.contact-form .checkbox-label {
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    font-size: .94rem;
}

.contact-form .checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 0;
}

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

.contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.form-notice {
    border-radius: 4px;
    font-weight: 800;
    padding: 12px 14px;
}

.form-notice.success {
    color: #114b2c;
    background: #e5f7ec;
}

.form-notice.error {
    color: #6a2017;
    background: #fff0ed;
}

.cta-section {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 32, 51, .96), rgba(16, 32, 51, .82)),
        url("../img/generated/managed-hosting.webp") center / cover no-repeat,
        var(--navy);
}

.cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding: 70px 0;
}

.cta-section h2 {
    max-width: 780px;
    color: #fff;
}

.cta-section p:not(.eyebrow) {
    max-width: 660px;
    color: rgba(255, 255, 255, .74);
}

.site-footer {
    color: #fff;
    background: linear-gradient(180deg, #0d1a2a 0%, #091421 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) minmax(150px, .55fr) minmax(360px, 1.25fr);
    gap: 52px;
    align-items: start;
    padding: 52px 0 38px;
}

.footer-brand {
    max-width: 420px;
}

.site-brand--footer img {
    width: 218px;
    margin-bottom: 18px;
    padding: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.footer-brand p {
    max-width: 420px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
}

.footer-heading {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .48);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-links nav {
    display: grid;
    gap: 9px;
}

.footer-links--services nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 24px;
}

.footer-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 28px;
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.25;
    transition: color .18s ease, transform .18s ease;
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--green);
    opacity: .78;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .92rem;
    line-height: 1.4;
}

.footer-bottom p:first-child {
    flex: 0 0 auto;
}

.footer-bottom p:last-child {
    flex: 1 1 auto;
    max-width: 560px;
    padding-right: 58px;
    text-align: right;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .18s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.cookie-banner {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(620px, calc(100vw - 44px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.5;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 1rem;
}

.cookie-banner .button {
    flex: 0 0 auto;
    min-width: 104px;
    padding: 11px 18px;
}

.cookie-banner:not([hidden]) ~ .scroll-top {
    bottom: 118px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .65, .18, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item.reveal-on-scroll,
.about-layout > .reveal-on-scroll {
    transform: translateY(34px) scale(.98);
}

.service-item.reveal-on-scroll.is-visible,
.about-layout > .reveal-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

.contact-copy.reveal-on-scroll {
    transform: translateX(-34px);
}

.contact-form.reveal-on-scroll {
    transform: translateX(34px);
}

.contact-copy.reveal-on-scroll.is-visible,
.contact-form.reveal-on-scroll.is-visible {
    transform: translateX(0);
}

.platform-logo.reveal-on-scroll {
    transform: translateY(18px) scale(.94);
}

.platform-logo.reveal-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }

}

@media (max-width: 1040px) {
    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .expectation-layout,
    .process-layout,
    .faq-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .sticky-heading {
        position: static;
    }

    .platform-grid {
        grid-template-columns: repeat(3, minmax(110px, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        right: 22px;
        left: 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 12px;
    }

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

    .site-nav a {
        padding: 13px 14px;
    }

    .header-cta {
        display: none;
    }

    .highlight-grid,
    .package-layout,
    .expectation-grid,
    .footer-grid,
    .cta-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 30px;
    }

    .highlight-grid article {
        min-height: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        padding: 28px 0;
    }

    .highlight-grid article:last-child {
        border-right: 0;
    }

    .service-list,
    .care-grid,
    .service-grid,
    .work-preview-grid,
    .related-service-grid {
        grid-template-columns: 1fr;
    }

    .service-copy {
        padding: 30px;
    }

    .service-item img {
        height: 240px;
    }

    .package-card {
        padding: 26px;
    }

    .care-card {
        padding: 26px;
    }

    .process-list article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom p:last-child {
        max-width: none;
        text-align: left;
    }
}

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

    h1 {
        font-size: 2.42rem;
    }

    h2 {
        font-size: 1.95rem;
    }

    .header-inner {
        min-height: 70px;
    }

    .site-brand img {
        width: 178px;
    }

    .site-nav {
        top: 70px;
        right: 14px;
        left: 14px;
    }

    .hero-section {
        min-height: 0;
        background:
            url("../img/generated/hosting-hero.webp") center / cover no-repeat,
            var(--navy);
    }

    .hero-content {
        padding: 64px 0 70px;
    }

    .hero-content p:not(.eyebrow) {
        font-size: 1.05rem;
    }

    .price-lockup {
        display: grid;
        gap: 4px;
    }

    .package-footer .button {
        width: 100%;
    }

    .section {
        padding: 62px 0;
    }

    .launch-included-section {
        display: none;
    }

    .button,
    .button-row {
        width: 100%;
    }

    .platform-grid {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        gap: 22px;
    }

    .page-hero__inner,
    .contact-section {
        padding: 62px 0;
    }

    .contact-copy h1 {
        font-size: 2.2rem;
    }

    .site-footer {
        text-align: left;
    }

    .footer-grid {
        padding: 42px 0 30px;
    }

    .site-brand--footer img {
        width: 196px;
    }

    .footer-links--services nav {
        grid-template-columns: 1fr;
    }

    .expectation-grid article,
    .contact-form {
        padding: 24px;
    }

    .cookie-banner {
        bottom: 14px;
        left: 14px;
        align-items: stretch;
        flex-direction: column;
        width: calc(100vw - 28px);
        gap: 14px;
        padding: 16px;
    }

    .cookie-banner .button {
        width: 100%;
    }

    .cookie-banner:not([hidden]) ~ .scroll-top {
        bottom: 176px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-layer {
        display: none;
    }
}
