.breadcrumbs {
    margin-bottom: 44px;
    font-size: 12px;
    font-weight: 600;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 8px;
    color: #94a3b8;
    content: "/";
}

.breadcrumbs a {
    color: var(--blue);
}

.breadcrumbs span {
    color: var(--grey);
}

.seo-hero {
    padding: 52px 0 88px;
    overflow: hidden;
    background: var(--surface-blue);
    border-bottom: 1px solid var(--border);
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 70px;
    align-items: center;
}

.seo-hero-copy h1,
.resource-hero h1,
.article-hero h1,
.contact-page h1,
.not-found-page h1 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 1.08;
}

.seo-hero-copy > p:not(.eyebrow),
.resource-hero-copy > p:not(.eyebrow),
.contact-page .demo-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 17px;
}

.seo-product-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #cbd8e6;
    border-radius: 8px;
    box-shadow: 0 26px 58px rgba(23, 50, 82, 0.16);
}

.seo-image-brand {
    position: absolute;
    top: 5.1%;
    left: 0.8%;
    display: flex;
    align-items: center;
    width: 12.5%;
    min-width: 58px;
    min-height: 7.5%;
    padding: 10px 8px 6px;
    background: #fff;
}

.seo-image-brand img {
    width: 100%;
    height: auto;
}

.seo-product-shot img {
    width: 100%;
    height: auto;
}

.seo-section {
    padding: 90px 0;
}

.seo-section-alt {
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.narrow-copy {
    max-width: 850px;
}

.lead-copy {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 21px;
    line-height: 1.65;
}

.seo-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.seo-three-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.seo-card,
.seo-feature {
    min-height: 250px;
    padding: 34px 30px;
    background: #fff;
}

.seo-card .card-number {
    display: block;
    margin-bottom: 54px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.seo-card p,
.seo-feature p {
    margin-bottom: 0;
    color: var(--grey);
    font-size: 14px;
}

.seo-feature > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
}

.seo-feature h3 {
    margin-bottom: 12px;
    font-size: 19px;
}

.workflow-band {
    color: #fff;
    background: #10243a;
}

.workflow-band .seo-heading h2 {
    color: #fff;
}

.seo-workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.seo-workflow li {
    min-height: 190px;
    padding: 30px;
    background: #10243a;
    counter-increment: steps;
}

.seo-workflow li::before {
    display: block;
    margin-bottom: 52px;
    color: #8ec5ff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    content: "0" counter(steps);
}

.seo-workflow span {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    gap: 12px;
    min-height: 104px;
    padding: 22px;
    color: var(--ink-soft);
    background: var(--surface-alt);
    border-left: 3px solid var(--blue);
}

.benefit-list i {
    margin-top: 5px;
    color: var(--green);
}

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

.related-card {
    position: relative;
    min-height: 210px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 7px;
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.related-card:hover,
.related-card:focus-visible {
    border-color: var(--blue);
    box-shadow: 0 16px 34px rgba(23, 33, 47, 0.09);
    transform: translateY(-3px);
}

.related-card > span,
.resource-label,
.article-aside > span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.related-card h3 {
    margin: 24px 0 34px;
    font-size: 18px;
}

.related-card i {
    position: absolute;
    right: 28px;
    bottom: 28px;
    color: var(--blue);
}

.guide-link {
    margin: 28px 0 0;
    color: var(--grey);
    font-size: 14px;
}

.guide-link a {
    color: var(--blue);
    font-weight: 700;
}

.seo-faq-grid {
    align-items: start;
}

.seo-cta {
    padding: 76px 0;
    color: #fff;
    background: #0c5dbb;
}

.seo-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.seo-cta h2 {
    max-width: 760px;
    margin-bottom: 14px;
}

.seo-cta p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 0;
    color: #d9eaff;
}

.seo-cta .button-primary {
    color: var(--blue);
    background: #fff;
    border-color: #fff;
}

.seo-cta .button-primary:hover,
.seo-cta .button-primary:focus-visible {
    color: #fff;
    background: var(--blue-dark);
    border-color: #fff;
}

.resource-hero,
.article-hero {
    padding: 52px 0 84px;
    background: var(--surface-blue);
    border-bottom: 1px solid var(--border);
}

.resource-hero-copy {
    max-width: 820px;
}

.resource-topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.resource-topic-row span {
    padding: 8px 12px;
    color: var(--ink-soft);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.resource-card {
    min-height: 310px;
    padding: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.resource-card > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--grey);
    font-size: 11px;
}

.resource-card h2 {
    margin: 30px 0 16px;
    font-size: 24px;
}

.resource-card h2 a:hover,
.resource-card h2 a:focus-visible {
    color: var(--blue);
}

.resource-card p {
    margin-bottom: 24px;
    color: var(--grey);
    font-size: 14px;
}

.article-shell {
    max-width: 900px;
}

.article-hero h1 {
    max-width: 840px;
}

.article-intro {
    max-width: 820px;
    color: var(--ink-soft);
    font-size: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 22px;
    margin-top: 28px;
    color: var(--grey);
    font-size: 12px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 90px;
    padding-top: 76px;
    padding-bottom: 92px;
    align-items: start;
}

.article-body {
    max-width: 760px;
}

.article-body section + section {
    margin-top: 58px;
}

.article-body h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.article-body p {
    color: var(--ink-soft);
    font-size: 17px;
}

.article-checklist {
    padding: 34px;
    background: var(--surface-alt);
    border-left: 4px solid var(--blue);
}

.article-checklist ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-checklist li {
    display: flex;
    gap: 12px;
    color: var(--ink-soft);
}

.article-checklist i {
    margin-top: 6px;
    color: var(--green);
}

.article-aside {
    position: sticky;
    top: 112px;
    padding: 28px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 7px;
}

.article-aside h2 {
    margin: 20px 0 14px;
    font-size: 20px;
}

.article-aside p {
    color: var(--grey);
    font-size: 13px;
}

.article-aside .button {
    width: 100%;
    margin-top: 24px;
}

.article-faq {
    margin-top: 28px;
}

.compact-hero {
    padding-bottom: 76px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-grid h2 {
    font-size: 30px;
}

.about-grid p {
    color: var(--ink-soft);
}

.contact-page {
    min-height: calc(100vh - 76px);
    padding: 52px 0 94px;
    color: #fff;
    background: #10243a;
}

.contact-page .breadcrumbs a,
.contact-page .breadcrumbs span,
.contact-page .breadcrumbs li::after {
    color: #b9d8fa;
}

.contact-page .demo-copy h1 {
    max-width: 600px;
}

.contact-page .demo-copy > p:not(.eyebrow) {
    color: #d9e6f5;
}

.contact-options {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-options a {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 370px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-options i {
    width: 24px;
    color: #8ec5ff;
}

.contact-options span,
.contact-options strong {
    display: block;
}

.contact-options span {
    color: #9fb4ca;
    font-size: 11px;
}

.contact-options strong {
    color: #fff;
    font-size: 14px;
}

.not-found-page {
    min-height: calc(100vh - 280px);
    padding: 110px 0;
}

.error-code {
    display: block;
    margin-bottom: 16px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.not-found-page p {
    max-width: 620px;
    color: var(--grey);
    font-size: 17px;
}

@media (max-width: 1000px) {
    .seo-hero-grid {
        grid-template-columns: 1fr;
    }

    .seo-hero-copy {
        max-width: 760px;
    }

    .seo-product-shot {
        max-width: 820px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .article-aside {
        position: static;
        max-width: 640px;
    }
}

@media (max-width: 800px) {
    .seo-hero-copy h1,
    .resource-hero h1,
    .article-hero h1,
    .contact-page h1,
    .not-found-page h1 {
        font-size: 39px;
    }

    .seo-three-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .seo-card,
    .seo-feature {
        min-height: 0;
    }

    .seo-card .card-number {
        margin-bottom: 24px;
    }

    .seo-workflow {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-grid,
    .about-grid,
    .seo-cta-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .seo-cta .button {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .seo-hero,
    .resource-hero,
    .article-hero,
    .contact-page {
        padding-top: 34px;
    }

    .breadcrumbs {
        margin-bottom: 30px;
    }

    .seo-hero-copy h1,
    .resource-hero h1,
    .article-hero h1,
    .contact-page h1,
    .not-found-page h1 {
        font-size: 34px;
    }

    .seo-section {
        padding: 68px 0;
    }

    .lead-copy,
    .article-intro {
        font-size: 18px;
    }

    .seo-workflow,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .seo-workflow li {
        min-height: 150px;
    }

    .seo-workflow li::before {
        margin-bottom: 30px;
    }

    .resource-card,
    .article-checklist {
        padding: 26px 22px;
    }

    .resource-card h2 {
        font-size: 21px;
    }

    .article-layout {
        padding-top: 58px;
    }

    .article-body h2 {
        font-size: 26px;
    }
}
