.seo-landing {
    overflow: hidden;
    background: #F1F5F8;
    color: var(--graphite);
}

.seo-landing__hero {
    position: relative;
    padding: 34px 0 42px;
    color: #FFFFFF;
    background: #F1F5F8;
}

.seo-landing__hero-panel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 32px 36px 30px;
    overflow: hidden;
    border-radius: 14px;
    background-image:
        linear-gradient(90deg, rgba(10, 25, 56, .95) 0%, rgba(21, 49, 98, .88) 38%, rgba(21, 49, 98, .58) 66%, rgba(21, 49, 98, .24) 100%),
        url("/assets/images/seo/seo-hero-case-logos-tile-v4.webp");
    background-position: center;
    background-size: cover;
    box-shadow: 0 22px 50px rgba(21, 49, 98, .14);
}

.seo-landing__hero-panel > * {
    position: relative;
    z-index: 1;
}

.seo-landing__hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: inherit;
    pointer-events: none;
}

.seo-landing__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 18px;
}

.seo-landing__breadcrumbs a {
    color: rgba(255, 255, 255, .78);
    transition: color .18s ease;
}

.seo-landing__breadcrumbs a:hover {
    color: #FFFFFF;
}

.seo-landing__breadcrumbs a::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255, 255, 255, .42);
}

.seo-landing__breadcrumbs span {
    color: #FFFFFF;
}

.seo-landing__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: 44px;
    align-items: center;
}

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

.seo-landing__kicker,
.seo-landing__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 7px 11px;
    border-radius: 6px;
    background: rgba(30, 67, 129, .08);
    color: var(--blue);
    font-size: 12px;
    line-height: 1;
    font-variation-settings: 'wght' 650;
}

.seo-landing__kicker {
    margin: 0 0 22px;
    background: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .86);
}

.seo-landing__hero h1 {
    max-width: 720px;
    margin: 0;
    color: #FFFFFF;
    font-size: 50px;
    line-height: 1.06;
    font-variation-settings: 'wght' 780;
}

.seo-landing__lead {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.52;
}

.seo-landing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.seo-landing__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.2;
    font-variation-settings: 'wght' 600;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.seo-landing__btn--primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--blue) 100%);
    box-shadow: 0 14px 34px rgba(21, 49, 98, .28);
}

.seo-landing__btn--ghost {
    border: 1px solid rgba(255, 255, 255, .52);
    color: #FFFFFF;
    background: rgba(255, 255, 255, .1);
}

.seo-landing__btn:hover,
.seo-landing__btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.seo-landing__btn--primary:hover,
.seo-landing__btn--primary:focus-visible {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-title) 100%);
    box-shadow: 0 18px 42px rgba(21, 49, 98, .34);
}

.seo-landing__btn--ghost:hover,
.seo-landing__btn--ghost:focus-visible {
    border-color: rgba(255, 255, 255, .78);
    color: #FFFFFF;
    background: rgba(255, 255, 255, .18);
}

.seo-landing__hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.seo-landing__expert-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 34px rgba(8, 21, 48, .1);
    color: var(--blue-title);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.seo-landing__expert-top {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
}

.seo-landing__expert-photo {
    display: block;
    width: 84px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(30, 67, 129, .12);
    border-radius: 8px;
    background: #EEF3F8;
}

.seo-landing__expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.seo-landing__expert-info {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.seo-landing__committee-highlight span {
    color: #7A8494;
    font-size: 11px;
    line-height: 1.2;
    font-variation-settings: 'wght' 600;
}

.seo-landing__expert-name {
    color: var(--blue-title);
    font-size: 20px;
    line-height: 1.18;
    font-variation-settings: 'wght' 760;
    transition: color .18s ease;
}

.seo-landing__expert-name:hover,
.seo-landing__expert-name:focus-visible,
.seo-landing__committee-highlight:hover strong,
.seo-landing__committee-highlight:focus-visible strong {
    color: var(--blue);
}

.seo-landing__expert-info p {
    margin: 0;
    color: #697486;
    font-size: 13px;
    line-height: 1.45;
}

.seo-landing__expert-link {
    width: fit-content;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.25;
    font-variation-settings: 'wght' 600;
    transition: color .18s ease;
}

.seo-landing__expert-link:hover,
.seo-landing__expert-link:focus-visible {
    color: var(--blue-title);
}

.seo-landing__committee-highlight {
    display: grid;
    gap: 5px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(30, 67, 129, .1);
}

.seo-landing__committee-highlight strong {
    min-width: 0;
    color: var(--blue-title);
    font-size: 14px;
    line-height: 1.28;
    font-variation-settings: 'wght' 650;
    transition: color .18s ease;
    overflow-wrap: anywhere;
}

.seo-landing__committee-highlight small {
    display: none;
}

.seo-landing__stat {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 72px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.seo-landing__stat strong {
    color: #FFFFFF;
    font-size: 26px;
    line-height: 1;
    font-variation-settings: 'wght' 780;
}

.seo-landing__stat span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.35;
}

.seo-landing__section {
    padding: 74px 0;
}

.seo-landing__section--intro {
    background: #FFFFFF;
}

.seo-landing__section--cases {
    background: #FFFFFF;
}

.seo-landing__section--faq {
    background: #FFFFFF;
}

.seo-landing__split,
.seo-landing__process-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.seo-landing__section-head {
    display: grid;
    gap: 16px;
}

.seo-landing__section-head--wide {
    max-width: 760px;
    margin-bottom: 34px;
}

.seo-landing__section-head h2,
.seo-landing__cta h2 {
    margin: 0;
    color: var(--blue-title);
    font-size: 38px;
    line-height: 1.16;
    font-variation-settings: 'wght' 760;
}

.seo-landing__section-head p,
.seo-landing__cta p,
.seo-landing__text-block p {
    margin: 0;
    color: #697486;
    font-size: 17px;
    line-height: 1.62;
}

.seo-landing__text-block {
    display: grid;
    gap: 18px;
    padding-top: 40px;
}

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

.seo-benefit,
.seo-case,
.seo-tool {
    border: 1px solid rgba(30, 67, 129, .1);
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 16px 36px rgba(21, 49, 98, .06);
}

.seo-benefit {
    display: grid;
    gap: 12px;
    min-height: 210px;
    padding: 22px;
}

.seo-benefit span {
    width: fit-content;
    color: #7A8494;
    font-size: 13px;
    line-height: 1;
    font-variation-settings: 'wght' 720;
}

.seo-benefit h3,
.seo-case h3,
.seo-tool h3 {
    margin: 0;
    color: var(--blue-title);
    font-size: 20px;
    line-height: 1.25;
    font-variation-settings: 'wght' 720;
}

.seo-benefit p,
.seo-case p,
.seo-tool p {
    margin: 0;
    color: #697486;
    font-size: 14px;
    line-height: 1.55;
}

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

.seo-case {
    display: grid;
    gap: 12px;
    min-height: 240px;
    padding: 22px;
}

.seo-case__metric {
    width: fit-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border-radius: 10px;
    background: rgba(30, 67, 129, .07);
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
    font-variation-settings: 'wght' 740;
}

.seo-process {
    counter-reset: item;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-process li {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 14px 16px;
    border: 1px solid rgba(30, 67, 129, .1);
    border-radius: 14px;
    background: #FFFFFF;
    color: var(--blue-title);
    font-size: 15px;
    line-height: 1.3;
    font-variation-settings: 'wght' 650;
}

.seo-process span {
    flex: 0 0 auto;
    color: #7A8494;
    font-size: 13px;
    line-height: 1;
    font-variation-settings: 'wght' 700;
}

.seo-landing__section--tools {
    background: var(--blue-title);
}

.seo-landing__section--tools .seo-landing__section-head h2 {
    color: #FFFFFF;
}

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

.seo-tool {
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
}

.seo-tool h3 {
    color: #FFFFFF;
}

.seo-tool p {
    color: rgba(255, 255, 255, .76);
}

.seo-faq {
    display: grid;
    gap: 10px;
}

.seo-faq__item {
    border: 1px solid rgba(30, 67, 129, .1);
    border-radius: 12px;
    background: #F8FAFC;
    box-shadow: 0 10px 28px rgba(21, 49, 98, .045);
}

.seo-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 16px;
    align-items: center;
    min-height: 66px;
    padding: 18px 20px;
    color: var(--blue-title);
    font-size: 17px;
    line-height: 1.35;
    font-variation-settings: 'wght' 680;
    cursor: pointer;
    list-style: none;
}

.seo-faq__item summary::-webkit-details-marker {
    display: none;
}

.seo-faq__item summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(30, 67, 129, .16);
    border-radius: 50%;
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
    font-variation-settings: 'wght' 420;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.seo-faq__item[open] summary::after {
    transform: rotate(45deg);
    background: var(--blue);
    color: #FFFFFF;
}

.seo-faq__item p {
    max-width: 840px;
    margin: -4px 20px 20px;
    color: #697486;
    font-size: 15px;
    line-height: 1.58;
}

.seo-landing__cta {
    padding: 62px 0 78px;
    background: #FFFFFF;
}

.seo-landing__cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.seo-landing__cta-inner > div {
    display: grid;
    gap: 14px;
}

.seo-landing__cta .seo-landing__btn {
    min-width: 220px;
}

@media (max-width: 1200px) {
    .seo-landing__hero {
        min-height: 0;
        padding: 30px 0 38px;
    }

    .seo-landing__hero-panel {
        padding: 30px;
    }

    .seo-landing__hero-inner,
    .seo-landing__split,
    .seo-landing__process-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .seo-landing__breadcrumbs {
        margin-bottom: 28px;
    }

    .seo-landing__hero h1 {
        font-size: 44px;
    }

    .seo-landing__lead {
        font-size: 18px;
    }

    .seo-landing__benefits,
    .seo-landing__cases,
    .seo-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-landing__text-block {
        padding-top: 0;
    }

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

@media (max-width: 768px) {
    .seo-landing__hero {
        padding: 14px 0 24px;
    }

    .seo-landing__hero-panel {
        padding: 16px;
        border-radius: 12px;
        background-position: 62% center;
    }

    .seo-landing__breadcrumbs {
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 16px;
    }

    .seo-landing__kicker {
        display: none;
    }

    .seo-landing__hero h1 {
        font-size: 29px;
        line-height: 1.1;
    }

    .seo-landing__lead {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.48;
    }

    .seo-landing__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .seo-landing__btn {
        width: 100%;
        min-height: 46px;
    }

    .seo-landing__benefits,
    .seo-landing__cases,
    .seo-tools,
    .seo-process {
        grid-template-columns: 1fr;
    }

    .seo-landing__hero-stats {
        display: none;
    }

    .seo-landing__expert-card {
        gap: 11px;
        padding: 11px;
        border-radius: 10px;
    }

    .seo-landing__expert-top {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .seo-landing__expert-photo {
        width: 70px;
        border-radius: 8px;
    }

    .seo-landing__expert-name {
        font-size: 17px;
        line-height: 1.2;
    }

    .seo-landing__expert-info p {
        display: none;
    }

    .seo-landing__committee-highlight {
        padding-top: 10px;
    }

    .seo-landing__committee-highlight strong {
        font-size: 13px;
    }

    .seo-landing__stat {
        min-height: 0;
        padding: 12px 14px;
    }

    .seo-landing__stat strong {
        font-size: 26px;
    }

    .seo-landing__section {
        padding: 46px 0;
    }

    .seo-landing__section-head--wide {
        margin-bottom: 22px;
    }

    .seo-landing__section-head h2,
    .seo-landing__cta h2 {
        font-size: 28px;
    }

    .seo-benefit,
    .seo-case,
    .seo-tool,
    .seo-faq__item {
        min-height: 0;
        padding: 18px;
        border-radius: 14px;
    }

    .seo-faq__item {
        padding: 0;
        border-radius: 12px;
    }

    .seo-faq__item summary {
        min-height: 58px;
        padding: 16px;
        font-size: 15px;
    }

    .seo-faq__item p {
        margin: -2px 16px 16px;
        font-size: 14px;
    }

    .seo-landing__cta {
        padding: 46px 0 54px;
    }
}
