: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:
        linear-gradient(90deg, rgba(16, 32, 51, .96) 0%, rgba(16, 32, 51, .86) 44%, rgba(16, 32, 51, .28) 100%),
        url("../img/generated/hosting-hero.png") center right / cover no-repeat,
        var(--navy);
}

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

.hero-content {
    position: relative;
    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: var(--navy);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.highlight-grid article:last-child {
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.highlight-grid article::before {
    content: "";
    display: block;
    width: 46px;
    height: 5px;
    margin-bottom: 24px;
    background: var(--green);
}

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

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

.highlight-grid h2 {
    color: #fff;
    font-size: 1.35rem;
}

.highlight-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
}

.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;
}

.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;
}

.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.png") 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;
}

.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.png") 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 textarea {
    width: 100%;
    border: 1px solid #cbd6e1;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
}

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

.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.png") 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: #0d1a2a;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: start;
    padding: 44px 0 32px;
}

.site-brand--footer img {
    width: 194px;
    margin-bottom: 18px;
    padding: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .92);
}

.site-footer p {
    max-width: 420px;
    color: rgba(255, 255, 255, .68);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.site-footer nav a {
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.site-footer nav a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .62);
}

.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;
}

@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,
    .expectation-grid,
    .footer-grid,
    .cta-layout {
        grid-template-columns: 1fr;
    }

    .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 {
        grid-template-columns: 1fr;
    }

    .service-copy {
        padding: 30px;
    }

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

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

    .site-footer nav {
        justify-content: flex-start;
    }
}

@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:
            linear-gradient(rgba(16, 32, 51, .92), rgba(16, 32, 51, .82)),
            url("../img/generated/hosting-hero.png") center / cover no-repeat,
            var(--navy);
    }

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

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

    .section {
        padding: 62px 0;
    }

    .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;
    }

    .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;
    }
}
