/* ==========================================================
   SEO PAGE
   SECTION 01 — HERO
========================================================== */

.seo-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 72px 0 42px;
    background: #faf8f5;
}


/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.seo-hero::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -180px;
    top: -200px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .12) 0%,
            rgba(242, 99, 34, .04) 42%,
            transparent 72%
        );
    pointer-events: none;
}

.seo-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -180px;
    bottom: -200px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .06),
            transparent 70%
        );
    pointer-events: none;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.seo-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.seo-hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.seo-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}

.seo-hero-line {
    display: block;
    width: 40px;
    height: 2px;

    border-radius: 20px;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   HEADING
========================================================== */

.seo-hero-content h1 {
    max-width: 650px;

    margin: 0 0 22px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 4.4vw, 64px);
    font-weight: 700;
    line-height: 1.05;

    letter-spacing: -.045em;

    color: var(--tdc-black, #111111);
}

.seo-hero-content h1 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.seo-hero-lead {
    max-width: 610px;

    margin: 0 0 30px;

    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CTA BUTTONS
========================================================== */

.seo-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 28px;
}

.seo-hero-actions .tdc-btn {
    min-height: 52px;
}

.seo-hero-actions .tdc-btn-primary {
    box-shadow:
        0 14px 30px rgba(242, 99, 34, .20);
}


/* ==========================================================
   TRUST POINTS
========================================================== */

.seo-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px 22px;
}

.seo-trust-item {
    display: flex;
    align-items: center;

    gap: 8px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;

    color: var(--tdc-text-muted, #66615e);
}

.seo-trust-item i {
    font-size: 14px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.seo-hero-visual {
    position: relative;

    min-height: 530px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Background Glow */

.seo-hero-visual::before {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .15),
            rgba(242, 99, 34, .04) 48%,
            transparent 72%
        );

    filter: blur(10px);

    pointer-events: none;
}


/* ==========================================================
   SEO DASHBOARD
========================================================== */

.seo-dashboard-card {
    position: relative;
    z-index: 2;

    width: min(100%, 590px);

    padding: 28px;

    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 26px;

    background: rgba(255, 255, 255, .94);

    box-shadow:
        0 30px 80px rgba(17, 17, 17, .11);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* ==========================================================
   DASHBOARD HEADER
========================================================== */

.seo-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}

.seo-dashboard-top > div:first-child {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.dashboard-label {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: .06em;
    text-transform: uppercase;

    color: #96908c;
}

.seo-dashboard-top strong {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.dashboard-status {
    padding: 8px 13px;

    border: 1px solid rgba(34, 197, 94, .15);
    border-radius: 50px;

    background: rgba(34, 197, 94, .08);

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: #17813b;
}


/* ==========================================================
   MAIN METRIC
========================================================== */

.seo-main-metric {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;

    gap: 4px 18px;

    margin-bottom: 12px;
}

.seo-main-metric > span {
    grid-column: 1 / -1;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;

    color: var(--tdc-text-muted, #66615e);
}

.seo-main-metric strong {
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-main-metric small {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding-bottom: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    color: #17813b;
}


/* ==========================================================
   GRAPH
========================================================== */

.seo-chart {
    position: relative;

    height: 145px;

    margin: 12px 0 22px;

    overflow: hidden;

    border-bottom: 1px solid #eee9e5;
}

.seo-chart svg {
    display: block;

    width: 100%;
    height: 100%;
}

.seo-chart-line {
    fill: none;

    stroke: var(--tdc-orange, #f26322);
    stroke-width: 4;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 5px 8px rgba(242, 99, 34, .18));
}


/* ==========================================================
   DASHBOARD METRICS
========================================================== */

.seo-dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border: 1px solid #eee9e5;
    border-radius: 16px;

    overflow: hidden;

    background: #faf9f7;
}

.seo-dashboard-metric {
    position: relative;

    padding: 16px 18px;
}

.seo-dashboard-metric:not(:last-child) {
    border-right: 1px solid #e9e4df;
}

.seo-dashboard-metric span,
.seo-dashboard-metric small {
    display: block;

    font-family: "DM Sans", sans-serif;
}

.seo-dashboard-metric span {
    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 500;

    color: #96908c;
}

.seo-dashboard-metric strong {
    display: block;

    margin-bottom: 2px;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-dashboard-metric small {
    font-size: 10px;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   FLOATING SEARCH CARD
========================================================== */

.seo-search-card {
    position: absolute;

    left: -38px;
    bottom: 52px;

    z-index: 5;

    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;

    gap: 12px;

    width: 340px;

    padding: 14px 16px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 16px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 20px 50px rgba(17, 17, 17, .13);
}

.seo-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(242, 99, 34, .10);

    color: var(--tdc-orange, #f26322);
}

.seo-search-card > div:nth-child(2) {
    min-width: 0;
}

.seo-search-card span {
    display: block;

    margin-bottom: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    color: #96908c;
}

.seo-search-card strong {
    display: block;

    overflow: hidden;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: var(--tdc-black, #111111);
}

.seo-position {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 34px;

    padding: 0 9px;

    border-radius: 9px;

    background: var(--tdc-orange, #f26322);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;

    color: #ffffff;
}


/* ==========================================================
   FLOATING GROWTH CARD
========================================================== */

.seo-growth-card {
    position: absolute;

    right: -18px;
    top: 72px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 180px;

    padding: 14px 16px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 16px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 18px 45px rgba(17, 17, 17, .12);
}

.seo-growth-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 12px;

    background: rgba(34, 197, 94, .10);

    color: #17813b;
}

.seo-growth-card strong,
.seo-growth-card span {
    display: block;
}

.seo-growth-card strong {
    margin-bottom: 2px;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-growth-card span {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   SERVICE STRIP
========================================================== */

.seo-hero-services {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}

.seo-hero-services span {
    padding: 8px 14px;

    border: 1px solid #e7e1dc;
    border-radius: 50px;

    background: rgba(255, 255, 255, .72);

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    color: #6d6763;
}


/* ==========================================================
   MICRO INTERACTIONS
========================================================== */

.seo-dashboard-card {
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.seo-dashboard-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 38px 90px rgba(17, 17, 17, .14);
}

.seo-search-card {
    animation: seoFloatSearch 5s ease-in-out infinite;
}

.seo-growth-card {
    animation: seoFloatGrowth 6s ease-in-out infinite;
}

@keyframes seoFloatSearch {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

@keyframes seoFloatGrowth {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-hero {
        min-height: auto;
        padding: 70px 0 45px;
    }

    .seo-hero-grid {
        gap: 45px;
    }

    .seo-hero-content h1 {
        font-size: 50px;
    }

    .seo-hero-visual {
        min-height: 500px;
    }

    .seo-search-card {
        left: -10px;
    }

    .seo-growth-card {
        right: -5px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-hero {
        min-height: auto;
        padding: 70px 0 55px;
    }

    .seo-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seo-hero-content {
        max-width: 720px;
        margin: 0 auto;

        text-align: center;
    }

    .seo-hero-eyebrow {
        justify-content: center;
    }

    .seo-hero-content h1 {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;

        font-size: 52px;
    }

    .seo-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .seo-hero-actions,
    .seo-hero-trust {
        justify-content: center;
    }

    .seo-hero-visual {
        width: 100%;
        max-width: 680px;
        min-height: 520px;

        margin: 0 auto;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-hero {
        display: block;

        padding: 50px 0 42px;
    }

    .seo-hero-grid {
        gap: 42px;
    }

    .seo-hero-content h1 {
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.08;
    }

    .seo-hero-lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .seo-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .seo-hero-actions .tdc-btn {
        width: 100%;
    }

    .seo-hero-trust {
        justify-content: center;
        gap: 10px 16px;
    }

    .seo-hero-visual {
        display: block;

        min-height: auto;

        padding-bottom: 0;
    }

    .seo-dashboard-card {
        width: 100%;

        padding: 20px;

        border-radius: 20px;
    }

    .seo-main-metric strong {
        font-size: 34px;
    }

    .seo-chart {
        height: 120px;
    }

    .seo-dashboard-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .seo-dashboard-metric {
        padding: 14px;
    }

    .seo-dashboard-metric:not(:last-child) {
        border-right: none;
    }

    .seo-dashboard-metric:nth-child(1) {
        border-right: 1px solid #e9e4df;
    }

    .seo-dashboard-metric:last-child {
        grid-column: 1 / -1;

        border-top: 1px solid #e9e4df;
    }


    /* Prevent floating cards from overlapping */

    .seo-search-card,
    .seo-growth-card {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;

        margin-top: 14px;

        animation: none;
    }

    .seo-hero-services {
        margin-top: 26px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-hero {
        padding-top: 42px;
    }

    .seo-hero-eyebrow {
        gap: 10px;

        font-size: 11px;
    }

    .seo-hero-line {
        width: 28px;
    }

    .seo-hero-content h1 {
        font-size: 38px;
    }

    .seo-hero-trust {
        flex-direction: column;
        align-items: flex-start;

        width: fit-content;

        margin: 0 auto;
    }

    .seo-dashboard-top {
        align-items: flex-start;
    }

    .dashboard-status {
        padding: 7px 10px;
    }

    .seo-search-card {
        grid-template-columns: 38px minmax(0, 1fr) auto;

        padding: 12px;
    }

    .seo-search-icon {
        width: 38px;
        height: 38px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-dashboard-card,
    .seo-search-card,
    .seo-growth-card {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 02 — SEO INTRODUCTION
========================================================== */

.seo-intro {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}


/* ==========================================================
   GRID
========================================================== */

.seo-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    align-items: center;
    gap: 85px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.seo-intro-visual {
    position: relative;
    min-height: 590px;
}


/* Main Image */

.seo-intro-image {
    position: relative;
    width: 88%;
    height: 540px;
    overflow: hidden;
    border-radius: 28px;
    background: #f2efeb;
}

.seo-intro-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(17, 17, 17, .16),
            transparent 45%
        );

    pointer-events: none;
}

.seo-intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-intro-visual:hover .seo-intro-image img {
    transform: scale(1.035);
}


/* ==========================================================
   ORANGE DECORATION
========================================================== */

.seo-intro-image::before {
    content: "";
    position: absolute;
    z-index: 2;

    width: 100px;
    height: 6px;

    left: 30px;
    top: 30px;

    border-radius: 20px;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   ORGANIC GROWTH FLOATING CARD
========================================================== */

.seo-intro-stat {
    position: absolute;
    z-index: 5;

    right: 0;
    top: 70px;

    width: 225px;

    padding: 20px 22px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 18px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .13);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.seo-intro-stat-label {
    display: block;

    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}

.seo-intro-stat strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   SEARCH FLOATING CARD
========================================================== */

.seo-intro-search-card {
    position: absolute;
    z-index: 5;

    right: 15px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 13px;

    width: 285px;

    padding: 16px 18px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 18px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .14);
}

.seo-intro-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 13px;

    background: rgba(242, 99, 34, .10);

    color: var(--tdc-orange, #f26322);
}

.seo-intro-search-icon i {
    font-size: 16px;
}

.seo-intro-search-card span,
.seo-intro-search-card strong {
    display: block;
}

.seo-intro-search-card span {
    margin-bottom: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    color: #96908c;
}

.seo-intro-search-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.seo-intro-content {
    max-width: 650px;
}


/* ==========================================================
   SECTION EYEBROW
========================================================== */

.seo-section-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 18px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}

.seo-section-line {
    display: block;

    width: 38px;
    height: 2px;

    border-radius: 20px;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   HEADING
========================================================== */

.seo-intro-content h2 {
    max-width: 650px;

    margin: 0 0 22px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 3.6vw, 50px);
    font-weight: 700;
    line-height: 1.12;

    letter-spacing: -.035em;

    color: var(--tdc-black, #111111);
}

.seo-intro-content h2 span {
    display: block;

    margin-top: 6px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   TEXT
========================================================== */

.seo-intro-content > p {
    max-width: 620px;

    margin: 0 0 16px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}

.seo-intro-content .seo-intro-lead {
    font-size: 17px;

    color: #4f4a47;
}


/* ==========================================================
   GROWTH JOURNEY
========================================================== */

.seo-growth-journey {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 28px;
}


/* ==========================================================
   GROWTH ITEM
========================================================== */

.seo-growth-item {
    position: relative;

    display: grid;
    grid-template-columns: 40px 1fr;

    gap: 13px;

    min-height: 105px;

    padding: 17px;

    border: 1px solid #ebe6e2;
    border-radius: 16px;

    background: #faf9f7;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.seo-growth-item:hover {
    transform: translateY(-4px);

    border-color: rgba(242, 99, 34, .30);

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(17, 17, 17, .07);
}


/* Number */

.seo-growth-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: rgba(242, 99, 34, .10);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}


/* Content */

.seo-growth-item strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-growth-item div > span {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.55;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CTA
========================================================== */

.seo-intro-action {
    margin-top: 28px;
}


/* ==========================================================
   FLOATING ANIMATION
========================================================== */

.seo-intro-stat {
    animation: seoIntroFloatOne 6s ease-in-out infinite;
}

.seo-intro-search-card {
    animation: seoIntroFloatTwo 7s ease-in-out infinite;
}

@keyframes seoIntroFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

@keyframes seoIntroFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-intro {
        padding: 85px 0;
    }

    .seo-intro-grid {
        gap: 60px;
    }

    .seo-intro-visual {
        min-height: 540px;
    }

    .seo-intro-image {
        height: 500px;
    }

    .seo-intro-content h2 {
        font-size: 42px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-intro {
        padding: 75px 0;
    }

    .seo-intro-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .seo-intro-visual {
        width: 100%;
        max-width: 700px;

        min-height: 570px;

        margin: 0 auto;
    }

    .seo-intro-image {
        width: 90%;
        height: 530px;
    }

    .seo-intro-content {
        max-width: 720px;

        margin: 0 auto;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-intro {
        padding: 60px 0;
    }

    .seo-intro-grid {
        gap: 42px;
    }


    /* Visual */

    .seo-intro-visual {
        display: flex;
        flex-direction: column;

        min-height: auto;

        gap: 12px;
    }

    .seo-intro-image {
        width: 100%;
        height: 430px;

        border-radius: 22px;
    }


    /* Stop overlapping floating cards */

    .seo-intro-stat,
    .seo-intro-search-card {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;

        animation: none;
    }


    /* Content */

    .seo-intro-content h2 {
        font-size: 34px;
    }

    .seo-intro-content > p,
    .seo-intro-content .seo-intro-lead {
        font-size: 16px;
    }


    /* Journey */

    .seo-growth-journey {
        grid-template-columns: 1fr 1fr;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 520px) {

    .seo-intro-image {
        height: 360px;
    }

    .seo-intro-content h2 {
        font-size: 31px;
    }

    .seo-growth-journey {
        grid-template-columns: 1fr;
    }

    .seo-growth-item {
        min-height: auto;
    }

    .seo-intro-action .tdc-btn {
        width: 100%;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-intro-stat,
    .seo-intro-search-card,
    .seo-intro-image img {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 03 — SEO SERVICES
========================================================== */

.seo-services {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #faf8f5;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.seo-services-header {
    margin-bottom: 52px;
}

.seo-services-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: end;
    gap: 70px;
}

.seo-services-heading-grid h2 {
    max-width: 720px;
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 3.6vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-services-heading-grid h2 span {
    display: block;
    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}

.seo-services-heading-grid > p {
    max-width: 540px;
    margin: 0 0 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   SERVICES GRID
========================================================== */

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* ==========================================================
   SERVICE CARD
========================================================== */

.seo-service-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    min-width: 0;

    border: 1px solid #e9e3de;
    border-radius: 22px;

    background: #ffffff;

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        border-color .4s ease,
        box-shadow .4s ease;
}

.seo-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(242, 99, 34, .28);

    box-shadow:
        0 24px 55px rgba(17, 17, 17, .10);
}


/* ==========================================================
   SERVICE IMAGE
========================================================== */

.seo-service-image {
    position: relative;

    display: block;

    height: 220px;

    overflow: hidden;

    background: #e9e5e1;

    text-decoration: none;
}

.seo-service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(17, 17, 17, .18) 100%
        );

    pointer-events: none;
}

.seo-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .75s cubic-bezier(.22, 1, .36, 1);
}

.seo-service-card:hover .seo-service-image img {
    transform: scale(1.06);
}


/* ==========================================================
   SERVICE NUMBER
========================================================== */

.seo-service-number {
    position: absolute;

    right: 16px;
    bottom: 16px;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: #ffffff;

    box-shadow:
        0 10px 24px rgba(242, 99, 34, .28);

    transition:
        transform .35s ease;
}

.seo-service-card:hover .seo-service-number {
    transform: scale(1.08) rotate(5deg);
}


/* ==========================================================
   SERVICE CONTENT
========================================================== */

.seo-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px 25px 24px;
}


/* Category */

.seo-service-category {
    display: block;

    margin-bottom: 9px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .11em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}


/* Heading */

.seo-service-content h3 {
    margin: 0 0 12px;

    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -.02em;

    color: var(--tdc-black, #111111);
}


/* Description */

.seo-service-content > p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   SERVICE TAGS
========================================================== */

.seo-service-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}

.seo-service-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 29px;

    padding: 6px 10px;

    border: 1px solid #ebe6e2;
    border-radius: 50px;

    background: #faf9f7;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    color: #6b6561;

    transition:
        border-color .3s ease,
        background .3s ease,
        color .3s ease;
}

.seo-service-card:hover .seo-service-tags span {
    border-color: rgba(242, 99, 34, .18);

    background: rgba(242, 99, 34, .05);
}


/* ==========================================================
   SERVICE LINK
========================================================== */

.seo-service-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    width: fit-content;

    margin-top: auto;
    padding-top: 21px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    color: var(--tdc-black, #111111);

    transition:
        color .3s ease;
}

.seo-service-link i {
    font-size: 11px;

    color: var(--tdc-orange, #f26322);

    transition:
        transform .3s ease;
}

.seo-service-link:hover {
    color: var(--tdc-orange, #f26322);
}

.seo-service-link:hover i {
    transform: translateX(5px);
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.seo-services-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 38px;
    padding: 25px 28px;

    border: 1px solid #e8e2dd;
    border-radius: 18px;

    background: #ffffff;
}

.seo-services-bottom-copy span,
.seo-services-bottom-copy strong {
    display: block;
}

.seo-services-bottom-copy span {
    margin-bottom: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;

    color: var(--tdc-text-muted, #66615e);
}

.seo-services-bottom-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-services {
        padding: 85px 0;
    }

    .seo-services-heading-grid {
        gap: 45px;
    }

    .seo-services-heading-grid h2 {
        font-size: 44px;
    }

    .seo-service-image {
        height: 195px;
    }

    .seo-service-content {
        padding: 22px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-services {
        padding: 75px 0;
    }

    .seo-services-heading-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .seo-services-heading-grid > p {
        max-width: 680px;
    }

    .seo-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

    .seo-service-image {
        height: 230px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-services {
        padding: 60px 0;
    }

    .seo-services-header {
        margin-bottom: 35px;
    }

    .seo-services-heading-grid h2 {
        font-size: 34px;
    }

    .seo-services-heading-grid > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .seo-services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .seo-service-image {
        height: 240px;
    }

    .seo-service-content {
        padding: 22px;
    }

    .seo-services-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 28px;
    }

    .seo-services-bottom .tdc-btn {
        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-services-heading-grid h2 {
        font-size: 31px;
    }

    .seo-service-image {
        height: 210px;
    }

    .seo-service-content h3 {
        font-size: 21px;
    }

    .seo-services-bottom {
        padding: 22px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-service-card,
    .seo-service-image img,
    .seo-service-number,
    .seo-service-link i {
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 04 — LOCAL SEO / SEO SERVICES NEAR ME
========================================================== */

.seo-local {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}


/* ==========================================================
   BACKGROUND DETAIL
========================================================== */

.seo-local::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .08),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.seo-local-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    align-items: center;

    gap: 80px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.seo-local-content {
    max-width: 680px;
}


/* ==========================================================
   HEADING
========================================================== */

.seo-local-content h2 {
    max-width: 650px;

    margin: 0 0 22px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-local-content h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   CONTENT
========================================================== */

.seo-local-content > p {
    max-width: 640px;

    margin: 0 0 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}

.seo-local-content .seo-local-lead {
    font-size: 17px;

    color: #4f4a47;
}


/* ==========================================================
   LOCAL SEO FEATURES
========================================================== */

.seo-local-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 28px;
}


/* ==========================================================
   FEATURE
========================================================== */

.seo-local-feature {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);

    gap: 13px;

    padding: 17px;

    border: 1px solid #ebe6e2;
    border-radius: 16px;

    background: #faf9f7;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.seo-local-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(242, 99, 34, .30);

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(17, 17, 17, .07);
}


/* ==========================================================
   FEATURE NUMBER
========================================================== */

.seo-local-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: rgba(242, 99, 34, .10);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.seo-local-feature:hover .seo-local-number {
    transform: scale(1.06);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   FEATURE CONTENT
========================================================== */

.seo-local-feature strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;

    color: var(--tdc-black, #111111);
}

.seo-local-feature p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.55;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CTA
========================================================== */

.seo-local-actions {
    margin-top: 28px;
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.seo-local-visual {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* ==========================================================
   IMAGE
========================================================== */

.seo-local-image {
    position: relative;

    width: 88%;
    height: 570px;

    overflow: hidden;

    border-radius: 28px;

    background: #ece8e4;
}

.seo-local-image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(17, 17, 17, .20) 100%
        );

    pointer-events: none;
}

.seo-local-image::after {
    content: "";

    position: absolute;

    right: 26px;
    top: 26px;

    z-index: 3;

    width: 72px;
    height: 6px;

    border-radius: 20px;

    background: var(--tdc-orange, #f26322);
}

.seo-local-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-local-visual:hover .seo-local-image img {
    transform: scale(1.035);
}


/* ==========================================================
   LOCAL SEARCH PANEL
========================================================== */

.seo-local-search {
    position: absolute;

    left: -30px;
    top: 72px;

    z-index: 5;

    width: 340px;

    padding: 17px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 20px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 24px 60px rgba(17, 17, 17, .14);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    animation:
        seoLocalSearchFloat 6s ease-in-out infinite;
}


/* ==========================================================
   SEARCH BAR
========================================================== */

.seo-local-search-bar {
    display: flex;
    align-items: center;

    gap: 11px;

    min-height: 46px;

    padding: 0 15px;

    border: 1px solid #e9e4df;
    border-radius: 50px;

    background: #faf9f7;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    color: #4f4a47;
}

.seo-local-search-bar i {
    font-size: 13px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   SEARCH RESULTS
========================================================== */

.seo-local-results {
    margin-top: 13px;
}

.seo-local-result {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;

    gap: 11px;

    padding: 11px 5px;
}

.seo-local-result:not(:last-child) {
    border-bottom: 1px solid #eee9e5;
}


/* Position */

.seo-local-result-position {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 9px;

    background: rgba(242, 99, 34, .08);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}


/* Result Content */

.seo-local-result strong,
.seo-local-result div > span {
    display: block;
}

.seo-local-result strong {
    margin-bottom: 2px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-local-result div > span {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    color: #96908c;
}


/* ==========================================================
   LOCATION CARD
========================================================== */

.seo-local-location {
    position: absolute;

    right: -20px;
    bottom: 62px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 245px;

    padding: 15px 17px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 17px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .13);

    animation:
        seoLocalLocationFloat 7s ease-in-out infinite;
}


/* Location Pin */

.seo-local-location-pin {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 13px;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(242, 99, 34, .25);
}

.seo-local-location-pin i {
    font-size: 16px;
}


/* Location Content */

.seo-local-location span,
.seo-local-location strong {
    display: block;
}

.seo-local-location span {
    margin-bottom: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    color: #96908c;
}

.seo-local-location strong {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   SEARCH INTENT STRIP
========================================================== */

.seo-local-intent {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;

    gap: 35px;

    margin-top: 55px;
    padding: 24px 28px;

    border: 1px solid #e8e2dd;
    border-radius: 18px;

    background: #faf9f7;
}


/* Heading */

.seo-local-intent-heading span,
.seo-local-intent-heading strong {
    display: block;
}

.seo-local-intent-heading span {
    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-local-intent-heading strong {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   SEARCH TERMS
========================================================== */

.seo-local-intent-terms {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 8px;
}

.seo-local-intent-terms span {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    padding: 7px 13px;

    border: 1px solid #e8e2dd;
    border-radius: 50px;

    background: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    color: #625c58;

    transition:
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.seo-local-intent-terms span:hover {
    transform: translateY(-2px);

    border-color: rgba(242, 99, 34, .35);

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   FLOATING ANIMATIONS
========================================================== */

@keyframes seoLocalSearchFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

@keyframes seoLocalLocationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-local {
        padding: 85px 0;
    }

    .seo-local-grid {
        gap: 55px;
    }

    .seo-local-content h2 {
        font-size: 46px;
    }

    .seo-local-visual {
        min-height: 570px;
    }

    .seo-local-image {
        height: 530px;
    }

    .seo-local-search {
        left: -10px;

        width: 310px;
    }

    .seo-local-location {
        right: -5px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-local {
        padding: 75px 0;
    }

    .seo-local-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .seo-local-content {
        max-width: 720px;
    }

    .seo-local-visual {
        width: 100%;
        max-width: 700px;

        min-height: 610px;

        margin: 0 auto;
    }

    .seo-local-image {
        width: 90%;
        height: 570px;

        margin-left: auto;
    }

    .seo-local-search {
        left: 0;
    }

    .seo-local-intent {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .seo-local-intent-terms {
        justify-content: flex-start;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-local {
        padding: 60px 0;
    }

    .seo-local-grid {
        gap: 42px;
    }

    .seo-local-content h2 {
        font-size: 34px;
    }

    .seo-local-content > p,
    .seo-local-content .seo-local-lead {
        font-size: 15px;
    }


    /* FEATURES */

    .seo-local-features {
        grid-template-columns: 1fr;
    }


    /* VISUAL */

    .seo-local-visual {
        display: flex;
        flex-direction: column;

        min-height: auto;

        gap: 14px;
    }

    .seo-local-image {
        order: 1;

        width: 100%;
        height: 450px;

        margin: 0;

        border-radius: 22px;
    }


    /* Prevent overlap on mobile */

    .seo-local-search {
        order: 2;

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;

        animation: none;
    }

    .seo-local-location {
        order: 3;

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;

        animation: none;
    }


    /* SEARCH INTENT */

    .seo-local-intent {
        margin-top: 35px;

        padding: 22px;
    }

    .seo-local-intent-terms {
        justify-content: flex-start;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-local-content h2 {
        font-size: 31px;
    }

    .seo-local-image {
        height: 380px;
    }

    .seo-local-actions .tdc-btn {
        width: 100%;
    }

    .seo-local-search {
        padding: 14px;
    }

    .seo-local-intent-terms {
        flex-direction: column;
        align-items: stretch;
    }

    .seo-local-intent-terms span {
        justify-content: center;

        width: 100%;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-local-search,
    .seo-local-location,
    .seo-local-image img,
    .seo-local-feature,
    .seo-local-number,
    .seo-local-intent-terms span {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 05 — WHY SEO MATTERS
========================================================== */

.seo-importance {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #faf8f5;
}


/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.seo-importance::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 55%;

    width: 650px;
    height: 650px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .07),
            rgba(242, 99, 34, .02) 45%,
            transparent 72%
        );

    pointer-events: none;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.seo-importance-header {
    position: relative;
    z-index: 2;

    margin-bottom: 55px;
}

.seo-importance-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);

    align-items: end;

    gap: 70px;
}


/* Heading */

.seo-importance-heading-grid h2 {
    max-width: 720px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-importance-heading-grid h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* Header Description */

.seo-importance-heading-grid > p {
    max-width: 540px;

    margin: 0 0 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN STAGE
========================================================== */

.seo-importance-stage {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 390px)
        minmax(0, 1fr);

    align-items: center;

    gap: 45px;
}


/* ==========================================================
   OUTCOME COLUMNS
========================================================== */

.seo-importance-column {
    display: flex;
    flex-direction: column;

    gap: 24px;
}


/* ==========================================================
   OUTCOME CARD
========================================================== */

.seo-outcome {
    position: relative;

    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);

    gap: 16px;

    padding: 23px;

    border: 1px solid #e9e3de;
    border-radius: 18px;

    background: rgba(255, 255, 255, .86);

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.seo-outcome:hover {
    transform: translateY(-6px);

    border-color: rgba(242, 99, 34, .28);

    background: #ffffff;

    box-shadow:
        0 20px 45px rgba(17, 17, 17, .08);
}


/* ==========================================================
   OUTCOME NUMBER
========================================================== */

.seo-outcome-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border-radius: 14px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.seo-outcome:hover .seo-outcome-number {
    transform: scale(1.06);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   OUTCOME LABEL
========================================================== */

.seo-outcome-label {
    display: block;

    margin-bottom: 6px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   OUTCOME HEADING
========================================================== */

.seo-outcome h3 {
    margin: 0 0 8px;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: -.015em;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   OUTCOME TEXT
========================================================== */

.seo-outcome p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.65;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CENTER VISUAL
========================================================== */

.seo-importance-visual {
    position: relative;

    min-height: 520px;
}


/* ==========================================================
   CENTER IMAGE
========================================================== */

.seo-importance-image {
    position: absolute;
    inset: 0;

    overflow: hidden;

    border-radius: 28px;

    background: #e9e5e1;

    box-shadow:
        0 25px 60px rgba(17, 17, 17, .10);
}

.seo-importance-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(17, 17, 17, .45) 100%
        );

    pointer-events: none;
}

.seo-importance-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-importance-visual:hover .seo-importance-image img {
    transform: scale(1.04);
}


/* ==========================================================
   IMAGE OVERLAY
========================================================== */

.seo-importance-overlay {
    position: absolute;

    left: 26px;
    right: 26px;
    bottom: 27px;

    z-index: 4;
}

.seo-importance-overlay span {
    display: block;

    margin-bottom: 6px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .72);
}

.seo-importance-overlay strong {
    display: block;

    max-width: 290px;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;

    color: #ffffff;
}


/* ==========================================================
   SUSTAINABLE GROWTH BADGE
========================================================== */

.seo-importance-badge {
    position: absolute;

    top: 24px;
    left: 50%;

    z-index: 5;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    transform: translateX(-50%);

    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50px;

    background: rgba(17, 17, 17, .50);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;

    color: #ffffff;
}


/* Badge Dot */

.seo-importance-badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 4px rgba(242, 99, 34, .18);
}


/* ==========================================================
   CONNECTOR DETAILS
========================================================== */

.seo-importance-left .seo-outcome::after {
    content: "";

    position: absolute;

    top: 50%;
    right: -46px;

    width: 46px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(242, 99, 34, .45),
            rgba(242, 99, 34, .05)
        );
}

.seo-importance-right .seo-outcome::before {
    content: "";

    position: absolute;

    top: 50%;
    left: -46px;

    width: 46px;
    height: 1px;

    background:
        linear-gradient(
            to left,
            rgba(242, 99, 34, .45),
            rgba(242, 99, 34, .05)
        );
}


/* ==========================================================
   BOTTOM MESSAGE
========================================================== */

.seo-importance-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    margin-top: 48px;
    padding: 27px 30px;

    border: 1px solid #e8e2dd;
    border-radius: 20px;

    background: #ffffff;
}


/* ==========================================================
   BOTTOM CONTENT
========================================================== */

.seo-importance-bottom-content {
    max-width: 750px;
}

.seo-importance-bottom-label {
    display: block;

    margin-bottom: 6px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}

.seo-importance-bottom-content h3 {
    margin: 0 0 6px;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-importance-bottom-content p {
    max-width: 720px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.65;

    color: var(--tdc-text-muted, #66615e);
}

.seo-importance-bottom .tdc-btn {
    flex-shrink: 0;
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-importance {
        padding: 85px 0;
    }

    .seo-importance-heading-grid {
        gap: 45px;
    }

    .seo-importance-heading-grid h2 {
        font-size: 46px;
    }

    .seo-importance-stage {
        grid-template-columns:
            minmax(0, 1fr)
            330px
            minmax(0, 1fr);

        gap: 32px;
    }

    .seo-importance-visual {
        min-height: 500px;
    }

    .seo-outcome {
        padding: 19px;
    }

    .seo-importance-left .seo-outcome::after {
        right: -33px;
        width: 33px;
    }

    .seo-importance-right .seo-outcome::before {
        left: -33px;
        width: 33px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-importance {
        padding: 75px 0;
    }

    .seo-importance-heading-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .seo-importance-heading-grid > p {
        max-width: 700px;
    }


    /* Stage */

    .seo-importance-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    /* Image First */

    .seo-importance-visual {
        grid-column: 1 / -1;
        grid-row: 1;

        width: 100%;
        max-width: 700px;

        min-height: 500px;

        margin: 0 auto 15px;
    }


    /* Outcome Columns */

    .seo-importance-left {
        grid-column: 1;
        grid-row: 2;
    }

    .seo-importance-right {
        grid-column: 2;
        grid-row: 2;
    }


    /* Remove Connectors */

    .seo-importance-left .seo-outcome::after,
    .seo-importance-right .seo-outcome::before {
        display: none;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-importance {
        padding: 60px 0;
    }

    .seo-importance-header {
        margin-bottom: 36px;
    }

    .seo-importance-heading-grid h2 {
        font-size: 34px;
    }

    .seo-importance-heading-grid > p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Main Stage */

    .seo-importance-stage {
        display: flex;
        flex-direction: column;

        gap: 16px;
    }


    /* Image */

    .seo-importance-visual {
        order: 1;

        width: 100%;
        min-height: 440px;

        margin: 0 0 6px;
    }

    .seo-importance-image {
        border-radius: 22px;
    }


    /* Left */

    .seo-importance-left {
        order: 2;

        width: 100%;
    }


    /* Right */

    .seo-importance-right {
        order: 3;

        width: 100%;
    }


    /* Cards */

    .seo-importance-column {
        gap: 14px;
    }

    .seo-outcome {
        padding: 19px;
    }


    /* Bottom */

    .seo-importance-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        margin-top: 30px;
        padding: 23px;
    }

    .seo-importance-bottom .tdc-btn {
        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-importance-heading-grid h2 {
        font-size: 31px;
    }

    .seo-importance-visual {
        min-height: 380px;
    }

    .seo-importance-overlay {
        left: 20px;
        right: 20px;
        bottom: 21px;
    }

    .seo-importance-overlay strong {
        font-size: 17px;
    }

    .seo-outcome {
        grid-template-columns: 42px minmax(0, 1fr);

        gap: 13px;

        padding: 17px;
    }

    .seo-outcome-number {
        width: 42px;
        height: 42px;
    }

    .seo-outcome h3 {
        font-size: 17px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-outcome,
    .seo-outcome-number,
    .seo-importance-image img {
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 06 — OUR SEO PROCESS
========================================================== */

.seo-process {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.seo-process-header {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

.seo-process-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: end;
    gap: 70px;
}

.seo-process-heading-grid h2 {
    max-width: 720px;
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-process-heading-grid h2 span {
    display: block;
    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}

.seo-process-heading-grid > p {
    max-width: 550px;
    margin: 0 0 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN GRID
========================================================== */

.seo-process-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(360px, 43%) minmax(0, 57%);
    align-items: stretch;

    gap: 75px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.seo-process-visual {
    position: relative;
    min-height: 680px;
}


/* ==========================================================
   PROCESS IMAGE
========================================================== */

.seo-process-image {
    position: absolute;
    inset: 0 35px 0 0;

    overflow: hidden;

    border-radius: 28px;
    background: #e9e5e1;

    box-shadow:
        0 25px 65px rgba(17, 17, 17, .10);
}

.seo-process-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(17, 17, 17, .52) 100%
        );

    pointer-events: none;
}

.seo-process-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-process-visual:hover .seo-process-image img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE LABEL
========================================================== */

.seo-process-image-label {
    position: absolute;

    left: 30px;
    right: 70px;
    bottom: 30px;

    z-index: 4;
}

.seo-process-image-label > span {
    display: block;
    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .72);
}

.seo-process-image-label strong {
    display: block;
    margin-bottom: 7px;

    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;

    color: #ffffff;
}

.seo-process-image-label p {
    max-width: 340px;
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: rgba(255, 255, 255, .78);
}


/* ==========================================================
   FLOATING WORKFLOW CARD
========================================================== */

.seo-process-floating {
    position: absolute;

    top: 55px;
    right: 0;

    z-index: 5;

    width: 225px;

    padding: 18px 20px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 17px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .13);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    animation:
        seoProcessFloat 6s ease-in-out infinite;
}

.seo-process-floating-label {
    display: block;
    margin-bottom: 6px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-process-floating strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   RIGHT — PROCESS STEPS
========================================================== */

.seo-process-steps {
    position: relative;

    display: flex;
    flex-direction: column;
}


/* Timeline */

.seo-process-steps::before {
    content: "";

    position: absolute;

    left: 25px;
    top: 25px;
    bottom: 25px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--tdc-orange, #f26322),
            rgba(242, 99, 34, .12)
        );
}


/* ==========================================================
   PROCESS STEP
========================================================== */

.seo-process-step {
    position: relative;

    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid #eee9e5;
}

.seo-process-step:first-child {
    padding-top: 0;
}

.seo-process-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/* ==========================================================
   STEP NUMBER
========================================================== */

.seo-process-number {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(242, 99, 34, .18);
    border-radius: 15px;

    background: #fff8f4;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.seo-process-step:hover .seo-process-number {
    transform: scale(1.06);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(242, 99, 34, .22);
}


/* ==========================================================
   STEP CONTENT
========================================================== */

.seo-process-step-content {
    padding-top: 1px;
}

.seo-process-step-label {
    display: block;
    margin-bottom: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-process-step-content h3 {
    margin: 0 0 6px;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    color: var(--tdc-black, #111111);
}

.seo-process-step-content p {
    max-width: 590px;
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.65;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   PROCESS SUMMARY
========================================================== */

.seo-process-summary {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 50px;
    padding: 20px 24px;

    border: 1px solid #e8e2dd;
    border-radius: 18px;

    background: #faf9f7;
}

.seo-process-summary-item {
    display: flex;
    align-items: center;

    gap: 9px;
}

.seo-process-summary-item span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 9px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}

.seo-process-summary-item strong {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-process-summary-arrow {
    font-family: "Manrope", sans-serif;
    font-size: 16px;

    color: #c7bfba;
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.seo-process-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    margin-top: 18px;
    padding: 24px 27px;

    border-radius: 18px;

    background: var(--tdc-black, #111111);
}

.seo-process-bottom > div > span {
    display: block;
    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-process-bottom > div > strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;

    color: #ffffff;
}

.seo-process-bottom .tdc-btn {
    flex-shrink: 0;
}


/* ==========================================================
   FLOATING ANIMATION
========================================================== */

@keyframes seoProcessFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-process {
        padding: 85px 0;
    }

    .seo-process-heading-grid {
        gap: 45px;
    }

    .seo-process-heading-grid h2 {
        font-size: 46px;
    }

    .seo-process-grid {
        grid-template-columns: minmax(330px, 42%) minmax(0, 58%);
        gap: 55px;
    }

    .seo-process-visual {
        min-height: 650px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-process {
        padding: 75px 0;
    }

    .seo-process-heading-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .seo-process-heading-grid > p {
        max-width: 700px;
    }

    .seo-process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seo-process-visual {
        width: 100%;
        max-width: 700px;
        min-height: 600px;

        margin: 0 auto;
    }

    .seo-process-image {
        right: 45px;
    }

    .seo-process-steps {
        max-width: 760px;
    }

    .seo-process-summary {
        overflow-x: auto;
        justify-content: flex-start;

        scrollbar-width: none;
    }

    .seo-process-summary::-webkit-scrollbar {
        display: none;
    }

    .seo-process-summary-item {
        flex-shrink: 0;
    }

    .seo-process-summary-arrow {
        flex-shrink: 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-process {
        padding: 60px 0;
    }

    .seo-process-header {
        margin-bottom: 36px;
    }

    .seo-process-heading-grid h2 {
        font-size: 34px;
    }

    .seo-process-heading-grid > p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Image */

    .seo-process-visual {
        display: flex;
        flex-direction: column;

        min-height: auto;

        gap: 13px;
    }

    .seo-process-image {
        position: relative;
        inset: auto;

        width: 100%;
        height: 470px;

        border-radius: 22px;
    }

    .seo-process-image-label {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .seo-process-image-label strong {
        font-size: 21px;
    }


    /* Prevent floating overlap */

    .seo-process-floating {
        position: relative;

        top: auto;
        right: auto;
        left: auto;
        bottom: auto;

        width: 100%;

        animation: none;
    }


    /* Timeline */

    .seo-process-steps::before {
        left: 22px;
    }

    .seo-process-step {
        grid-template-columns: 46px minmax(0, 1fr);

        gap: 15px;

        padding: 18px 0;
    }

    .seo-process-number {
        width: 46px;
        height: 46px;

        border-radius: 13px;
    }


    /* Summary */

    .seo-process-summary {
        margin-top: 35px;
    }


    /* Bottom CTA */

    .seo-process-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        padding: 22px;
    }

    .seo-process-bottom .tdc-btn {
        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-process-heading-grid h2 {
        font-size: 31px;
    }

    .seo-process-image {
        height: 390px;
    }

    .seo-process-step-content h3 {
        font-size: 17px;
    }

    .seo-process-step-content p {
        font-size: 12px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-process-floating,
    .seo-process-image img,
    .seo-process-number {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 07 — SEO DELIVERABLES
========================================================== */

.seo-deliverables {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #faf8f5;
}


/* ==========================================================
   BACKGROUND DETAIL
========================================================== */

.seo-deliverables::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -200px;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .08),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.seo-deliverables-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 54%) minmax(360px, 46%);
    align-items: center;

    gap: 80px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.seo-deliverables-content {
    max-width: 720px;
}


/* ==========================================================
   HEADING
========================================================== */

.seo-deliverables-content h2 {
    max-width: 680px;
    margin: 0 0 22px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-deliverables-content h2 span {
    display: block;
    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   LEAD
========================================================== */

.seo-deliverables-lead {
    max-width: 650px;
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   DELIVERABLES LIST
========================================================== */

.seo-deliverables-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px 18px;

    margin-top: 30px;
}


/* ==========================================================
   DELIVERABLE ITEM
========================================================== */

.seo-deliverable-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;

    gap: 12px;

    padding: 13px;

    border: 1px solid #e9e3de;
    border-radius: 14px;

    background: rgba(255, 255, 255, .78);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.seo-deliverable-item:hover {
    transform: translateY(-3px);

    border-color: rgba(242, 99, 34, .28);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(17, 17, 17, .06);
}


/* ==========================================================
   ITEM NUMBER
========================================================== */

.seo-deliverable-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.seo-deliverable-item:hover .seo-deliverable-check {
    transform: scale(1.05);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   ITEM CONTENT
========================================================== */

.seo-deliverable-item strong {
    display: block;

    margin-bottom: 3px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;

    color: var(--tdc-black, #111111);
}

.seo-deliverable-item div > span {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    line-height: 1.5;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CTA
========================================================== */

.seo-deliverables-action {
    margin-top: 28px;
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.seo-deliverables-visual {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* ==========================================================
   MAIN IMAGE
========================================================== */

.seo-deliverables-image {
    position: relative;

    width: 88%;
    height: 640px;

    overflow: hidden;

    border-radius: 28px;

    background: #e9e5e1;

    box-shadow:
        0 25px 65px rgba(17, 17, 17, .10);
}

.seo-deliverables-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(17, 17, 17, .24) 100%
        );

    pointer-events: none;
}

.seo-deliverables-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-deliverables-visual:hover .seo-deliverables-image img {
    transform: scale(1.035);
}


/* ==========================================================
   REPORT CARD
========================================================== */

.seo-report-card {
    position: absolute;

    left: -25px;
    bottom: 55px;

    z-index: 5;

    width: 350px;

    padding: 20px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 19px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 24px 60px rgba(17, 17, 17, .14);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* ==========================================================
   REPORT HEADER
========================================================== */

.seo-report-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}

.seo-report-header > div > span {
    display: block;

    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-report-header strong {
    display: block;

    max-width: 190px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--tdc-black, #111111);
}


/* Status */

.seo-report-status {
    flex-shrink: 0;

    padding: 6px 9px;

    border-radius: 50px;

    background: rgba(34, 197, 94, .09);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: #17813b;
}


/* ==========================================================
   REPORT ROWS
========================================================== */

.seo-report-row {
    margin-top: 14px;
}

.seo-report-row > span {
    display: block;

    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    color: #625c58;
}


/* ==========================================================
   PROGRESS BAR
========================================================== */

.seo-report-progress {
    position: relative;

    width: 100%;
    height: 6px;

    overflow: hidden;

    border-radius: 50px;

    background: #eee9e5;
}

.seo-report-progress > span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   FLOATING TRANSPARENCY CARD
========================================================== */

.seo-deliverables-floating {
    position: absolute;

    top: 65px;
    right: -15px;

    z-index: 5;

    width: 225px;

    padding: 18px 20px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 17px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 20px 50px rgba(17, 17, 17, .12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    animation:
        seoDeliverablesFloat 6s ease-in-out infinite;
}

.seo-deliverables-floating > span {
    display: block;

    margin-bottom: 6px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-deliverables-floating strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   BOTTOM VALUE STRIP
========================================================== */

.seo-deliverables-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 50px;
    padding: 22px 26px;

    border: 1px solid #e8e2dd;
    border-radius: 18px;

    background: #ffffff;
}


/* ==========================================================
   BOTTOM TITLE
========================================================== */

.seo-deliverables-bottom-title {
    margin-right: auto;
    padding-right: 35px;
}

.seo-deliverables-bottom-title > span {
    display: block;

    margin-bottom: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-deliverables-bottom-title strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   VALUE ITEMS
========================================================== */

.seo-deliverables-value {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}

.seo-deliverables-value-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 9px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}

.seo-deliverables-value > span:last-child {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: #514c48;
}

.seo-deliverables-value-arrow {
    flex-shrink: 0;

    font-family: "Manrope", sans-serif;
    font-size: 15px;

    color: #c7bfba;
}


/* ==========================================================
   FLOATING ANIMATION
========================================================== */

@keyframes seoDeliverablesFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-deliverables {
        padding: 85px 0;
    }

    .seo-deliverables-grid {
        grid-template-columns: minmax(0, 55%) minmax(330px, 45%);

        gap: 55px;
    }

    .seo-deliverables-content h2 {
        font-size: 46px;
    }

    .seo-deliverables-visual {
        min-height: 630px;
    }

    .seo-deliverables-image {
        height: 590px;
    }

    .seo-report-card {
        left: -10px;

        width: 325px;
    }

    .seo-deliverables-floating {
        right: -5px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-deliverables {
        padding: 75px 0;
    }

    .seo-deliverables-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .seo-deliverables-content {
        max-width: 760px;
    }

    .seo-deliverables-visual {
        width: 100%;
        max-width: 700px;

        min-height: 650px;

        margin: 0 auto;
    }

    .seo-deliverables-image {
        width: 90%;
        height: 610px;

        margin-left: auto;
    }


    /* Bottom */

    .seo-deliverables-bottom {
        overflow-x: auto;

        scrollbar-width: none;
    }

    .seo-deliverables-bottom::-webkit-scrollbar {
        display: none;
    }

    .seo-deliverables-bottom-title,
    .seo-deliverables-value,
    .seo-deliverables-value-arrow {
        flex-shrink: 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-deliverables {
        padding: 60px 0;
    }

    .seo-deliverables-content h2 {
        font-size: 34px;
    }

    .seo-deliverables-lead {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Deliverables */

    .seo-deliverables-list {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    /* Visual */

    .seo-deliverables-visual {
        display: flex;
        flex-direction: column;

        min-height: auto;

        gap: 14px;
    }

    .seo-deliverables-image {
        order: 1;

        width: 100%;
        height: 470px;

        margin: 0;

        border-radius: 22px;
    }


    /* Report card becomes normal block */

    .seo-report-card {
        order: 2;

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;
    }


    /* Floating card becomes normal block */

    .seo-deliverables-floating {
        order: 3;

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;

        animation: none;
    }


    /* CTA */

    .seo-deliverables-action .tdc-btn {
        width: 100%;
    }


    /* Bottom strip */

    .seo-deliverables-bottom {
        margin-top: 35px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-deliverables-content h2 {
        font-size: 31px;
    }

    .seo-deliverables-image {
        height: 390px;
    }

    .seo-deliverable-item {
        padding: 12px;
    }

    .seo-report-card {
        padding: 17px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-deliverables-floating,
    .seo-deliverables-image img,
    .seo-deliverable-item,
    .seo-deliverable-check {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 08 — WHY CHOOSE THE DIGITAL CAFE
========================================================== */

.seo-why-us {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}


/* ==========================================================
   BACKGROUND DETAIL
========================================================== */

.seo-why-us::before {
    content: "";
    position: absolute;

    left: -220px;
    bottom: -250px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .07),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   HEADER
========================================================== */

.seo-why-us-header {
    position: relative;
    z-index: 2;

    margin-bottom: 55px;
}

.seo-why-us-heading-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    align-items: end;

    gap: 70px;
}


/* ==========================================================
   MAIN HEADING
========================================================== */

.seo-why-us-heading-grid h2 {
    max-width: 750px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-why-us-heading-grid h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* Header description */

.seo-why-us-heading-grid > p {
    max-width: 550px;

    margin: 0 0 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN GRID
========================================================== */

.seo-why-us-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(360px, 43%)
        minmax(0, 57%);

    align-items: stretch;

    gap: 75px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.seo-why-us-visual {
    position: relative;

    min-height: 680px;
}


/* ==========================================================
   IMAGE
========================================================== */

.seo-why-us-image {
    position: absolute;

    inset: 0 35px 0 0;

    overflow: hidden;

    border-radius: 28px;

    background: #e9e5e1;

    box-shadow:
        0 25px 65px rgba(17, 17, 17, .10);
}

.seo-why-us-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(17, 17, 17, .58) 100%
        );

    pointer-events: none;
}

.seo-why-us-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-why-us-visual:hover .seo-why-us-image img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE COPY
========================================================== */

.seo-why-us-image-copy {
    position: absolute;

    z-index: 4;

    left: 30px;
    right: 70px;
    bottom: 31px;
}

.seo-why-us-image-copy > span {
    display: block;

    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .70);
}

.seo-why-us-image-copy strong {
    display: block;

    margin-bottom: 8px;

    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -.02em;

    color: #ffffff;
}

.seo-why-us-image-copy p {
    max-width: 350px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: rgba(255, 255, 255, .78);
}


/* ==========================================================
   FLOATING APPROACH CARD
========================================================== */

.seo-why-us-floating {
    position: absolute;

    top: 55px;
    right: 0;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    width: 255px;

    padding: 17px 19px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 17px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .13);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    animation:
        seoWhyUsFloat 6s ease-in-out infinite;
}


/* Dot */

.seo-why-us-floating-dot {
    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 5px rgba(242, 99, 34, .10);
}


/* Floating content */

.seo-why-us-floating div > span {
    display: block;

    margin-bottom: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-why-us-floating strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.seo-why-us-content {
    display: flex;
    flex-direction: column;

    justify-content: center;
}


/* ==========================================================
   SMALL LABEL
========================================================== */

.seo-why-us-small-label {
    display: block;

    margin-bottom: 10px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   SECONDARY HEADING
========================================================== */

.seo-why-us-content > h3 {
    max-width: 620px;

    margin: 0 0 16px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(29px, 2.7vw, 38px);
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -.035em;

    color: var(--tdc-black, #111111);
}

.seo-why-us-content > h3 span {
    display: block;

    margin-top: 3px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   INTRO
========================================================== */

.seo-why-us-intro {
    max-width: 640px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   DIFFERENTIATORS GRID
========================================================== */

.seo-why-us-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 11px;

    margin-top: 26px;
}


/* ==========================================================
   DIFFERENTIATOR
========================================================== */

.seo-why-us-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);

    gap: 12px;

    padding: 15px;

    border: 1px solid #ebe6e2;
    border-radius: 15px;

    background: #faf9f7;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.seo-why-us-item:hover {
    transform: translateY(-4px);

    border-color: rgba(242, 99, 34, .28);

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(17, 17, 17, .07);
}


/* ==========================================================
   ITEM NUMBER
========================================================== */

.seo-why-us-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.seo-why-us-item:hover .seo-why-us-number {
    transform: scale(1.05);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   ITEM CONTENT
========================================================== */

.seo-why-us-item h4 {
    margin: 0 0 4px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;

    color: var(--tdc-black, #111111);
}

.seo-why-us-item p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    line-height: 1.55;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CTA
========================================================== */

.seo-why-us-action {
    margin-top: 26px;
}


/* ==========================================================
   PRINCIPLES STRIP
========================================================== */

.seo-why-us-principles {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 50px;
    padding: 22px 27px;

    border: 1px solid #e8e2dd;
    border-radius: 18px;

    background: #faf9f7;
}


/* ==========================================================
   PRINCIPLES TITLE
========================================================== */

.seo-why-us-principles-title {
    margin-right: auto;
    padding-right: 30px;
}

.seo-why-us-principles-title > span {
    display: block;

    margin-bottom: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-why-us-principles-title strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   PRINCIPLE
========================================================== */

.seo-why-us-principle {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}

.seo-why-us-principle > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 9px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}

.seo-why-us-principle strong {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: #514c48;
}


/* Divider */

.seo-why-us-principle-divider {
    width: 1px;
    height: 24px;

    flex-shrink: 0;

    background: #ddd6d1;
}


/* ==========================================================
   ANIMATION
========================================================== */

@keyframes seoWhyUsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-why-us {
        padding: 85px 0;
    }

    .seo-why-us-heading-grid {
        gap: 45px;
    }

    .seo-why-us-heading-grid h2 {
        font-size: 46px;
    }

    .seo-why-us-grid {
        grid-template-columns:
            minmax(330px, 42%)
            minmax(0, 58%);

        gap: 55px;
    }

    .seo-why-us-visual {
        min-height: 650px;
    }

    .seo-why-us-item {
        padding: 13px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-why-us {
        padding: 75px 0;
    }

    .seo-why-us-heading-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .seo-why-us-heading-grid > p {
        max-width: 700px;
    }


    /* Main Grid */

    .seo-why-us-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* Visual */

    .seo-why-us-visual {
        width: 100%;
        max-width: 700px;

        min-height: 610px;

        margin: 0 auto;
    }


    /* Content */

    .seo-why-us-content {
        max-width: 760px;
    }


    /* Principles */

    .seo-why-us-principles {
        overflow-x: auto;

        scrollbar-width: none;
    }

    .seo-why-us-principles::-webkit-scrollbar {
        display: none;
    }

    .seo-why-us-principles-title,
    .seo-why-us-principle,
    .seo-why-us-principle-divider {
        flex-shrink: 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-why-us {
        padding: 60px 0;
    }

    .seo-why-us-header {
        margin-bottom: 36px;
    }

    .seo-why-us-heading-grid h2 {
        font-size: 34px;
    }

    .seo-why-us-heading-grid > p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Visual */

    .seo-why-us-visual {
        display: flex;
        flex-direction: column;

        min-height: auto;

        gap: 13px;
    }

    .seo-why-us-image {
        position: relative;
        inset: auto;

        width: 100%;
        height: 470px;

        border-radius: 22px;
    }


    /* Image Copy */

    .seo-why-us-image-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .seo-why-us-image-copy strong {
        font-size: 23px;
    }


    /* Floating card becomes normal block */

    .seo-why-us-floating {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;

        animation: none;
    }


    /* Content */

    .seo-why-us-content > h3 {
        font-size: 29px;
    }


    /* Differentiators */

    .seo-why-us-list {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    /* CTA */

    .seo-why-us-action .tdc-btn {
        width: 100%;
    }


    /* Principles */

    .seo-why-us-principles {
        margin-top: 35px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-why-us-heading-grid h2 {
        font-size: 31px;
    }

    .seo-why-us-image {
        height: 390px;
    }

    .seo-why-us-image-copy strong {
        font-size: 21px;
    }

    .seo-why-us-content > h3 {
        font-size: 27px;
    }

    .seo-why-us-item {
        padding: 13px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-why-us-floating,
    .seo-why-us-image img,
    .seo-why-us-item,
    .seo-why-us-number {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 09 — INDUSTRIES WE HELP
========================================================== */

.seo-industries {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #faf8f5;
}


/* ==========================================================
   BACKGROUND DETAIL
========================================================== */

.seo-industries::before {
    content: "";
    position: absolute;

    right: -220px;
    top: 20%;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .07),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   HEADER
========================================================== */

.seo-industries-header {
    position: relative;
    z-index: 2;

    margin-bottom: 52px;
}

.seo-industries-heading-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    align-items: end;

    gap: 70px;
}


/* ==========================================================
   HEADING
========================================================== */

.seo-industries-heading-grid h2 {
    max-width: 730px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-industries-heading-grid h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* Header description */

.seo-industries-heading-grid > p {
    max-width: 550px;

    margin: 0 0 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   INDUSTRIES GRID
========================================================== */

.seo-industries-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;
}


/* ==========================================================
   INDUSTRY CARD
========================================================== */

.seo-industry-card {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(220px, 43%) minmax(0, 57%);

    min-height: 320px;

    border: 1px solid #e8e2dd;
    border-radius: 22px;

    background: #ffffff;

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        border-color .4s ease,
        box-shadow .4s ease;
}

.seo-industry-card:hover {
    transform: translateY(-6px);

    border-color: rgba(242, 99, 34, .28);

    box-shadow:
        0 22px 50px rgba(17, 17, 17, .09);
}


/* ==========================================================
   IMAGE
========================================================== */

.seo-industry-image {
    position: relative;

    min-height: 100%;

    overflow: hidden;

    background: #e9e5e1;
}

.seo-industry-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(17, 17, 17, .22) 100%
        );

    pointer-events: none;
}

.seo-industry-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .75s cubic-bezier(.22, 1, .36, 1);
}

.seo-industry-card:hover .seo-industry-image img {
    transform: scale(1.055);
}


/* ==========================================================
   INDUSTRY NUMBER
========================================================== */

.seo-industry-number {
    position: absolute;

    left: 17px;
    bottom: 17px;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(242, 99, 34, .27);

    transition:
        transform .3s ease;
}

.seo-industry-card:hover .seo-industry-number {
    transform: scale(1.08) rotate(4deg);
}


/* ==========================================================
   INDUSTRY CONTENT
========================================================== */

.seo-industry-content {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;

    padding: 27px;
}


/* ==========================================================
   INDUSTRY LABEL
========================================================== */

.seo-industry-label {
    display: block;

    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   INDUSTRY HEADING
========================================================== */

.seo-industry-content h3 {
    margin: 0 0 10px;

    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -.02em;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   INDUSTRY DESCRIPTION
========================================================== */

.seo-industry-content > p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.65;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   SEARCH OPPORTUNITIES
========================================================== */

.seo-industry-search {
    margin-top: 20px;
    padding-top: 16px;

    border-top: 1px solid #eee9e5;
}

.seo-industry-search > span {
    display: block;

    margin-bottom: 9px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .10em;
    text-transform: uppercase;

    color: #99918c;
}


/* Search tags */

.seo-industry-search > div {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}

.seo-industry-search > div > span {
    display: inline-flex;
    align-items: center;

    min-height: 27px;

    padding: 5px 9px;

    border: 1px solid #ebe6e2;
    border-radius: 50px;

    background: #faf9f7;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    color: #625c58;

    transition:
        border-color .3s ease,
        background .3s ease,
        color .3s ease;
}

.seo-industry-card:hover
.seo-industry-search > div > span {

    border-color: rgba(242, 99, 34, .20);

    background: rgba(242, 99, 34, .05);
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.seo-industries-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    margin-top: 38px;
    padding: 27px 30px;

    border: 1px solid #e8e2dd;
    border-radius: 20px;

    background: #ffffff;
}


/* ==========================================================
   BOTTOM CONTENT
========================================================== */

.seo-industries-bottom-content {
    max-width: 760px;
}

.seo-industries-bottom-content > span {
    display: block;

    margin-bottom: 6px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-industries-bottom-content strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--tdc-black, #111111);
}

.seo-industries-bottom-content p {
    max-width: 700px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.6;

    color: var(--tdc-text-muted, #66615e);
}

.seo-industries-bottom .tdc-btn {
    flex-shrink: 0;
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-industries {
        padding: 85px 0;
    }

    .seo-industries-heading-grid {
        gap: 45px;
    }

    .seo-industries-heading-grid h2 {
        font-size: 46px;
    }

    .seo-industry-card {
        grid-template-columns:
            minmax(190px, 41%)
            minmax(0, 59%);
    }

    .seo-industry-content {
        padding: 23px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-industries {
        padding: 75px 0;
    }

    .seo-industries-heading-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .seo-industries-heading-grid > p {
        max-width: 700px;
    }


    /* Cards become image-top */

    .seo-industry-card {
        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .seo-industry-image {
        height: 260px;
        min-height: 260px;
    }

    .seo-industry-content {
        flex: 1;

        justify-content: flex-start;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-industries {
        padding: 60px 0;
    }

    .seo-industries-header {
        margin-bottom: 35px;
    }

    .seo-industries-heading-grid h2 {
        font-size: 34px;
    }

    .seo-industries-heading-grid > p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* One column */

    .seo-industries-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .seo-industry-image {
        height: 270px;
        min-height: 270px;
    }

    .seo-industry-content {
        padding: 22px;
    }


    /* Bottom CTA */

    .seo-industries-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        margin-top: 28px;
        padding: 23px;
    }

    .seo-industries-bottom .tdc-btn {
        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-industries-heading-grid h2 {
        font-size: 31px;
    }

    .seo-industry-image {
        height: 230px;
        min-height: 230px;
    }

    .seo-industry-content h3 {
        font-size: 20px;
    }

    .seo-industry-search > div {
        gap: 5px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-industry-card,
    .seo-industry-image img,
    .seo-industry-number,
    .seo-industry-search > div > span {
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 10 — SEO FAQs
========================================================== */

.seo-faq {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}


/* ==========================================================
   BACKGROUND DETAIL
========================================================== */

.seo-faq::before {
    content: "";
    position: absolute;

    left: -240px;
    top: 25%;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .065),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   HEADER
========================================================== */

.seo-faq-header {
    position: relative;
    z-index: 2;

    margin-bottom: 55px;
}

.seo-faq-heading-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    align-items: end;

    gap: 70px;
}


/* ==========================================================
   HEADING
========================================================== */

.seo-faq-heading-grid h2 {
    max-width: 720px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.04em;

    color: var(--tdc-black, #111111);
}

.seo-faq-heading-grid h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* Header description */

.seo-faq-heading-grid > p {
    max-width: 550px;

    margin: 0 0 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   FAQ MAIN GRID
========================================================== */

.seo-faq-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(340px, 38%)
        minmax(0, 62%);

    align-items: start;

    gap: 70px;
}


/* ==========================================================
   LEFT SIDE
========================================================== */

.seo-faq-side {
    position: sticky;
    top: 110px;
}


/* ==========================================================
   FAQ IMAGE
========================================================== */

.seo-faq-image {
    position: relative;

    height: 540px;

    overflow: hidden;

    border-radius: 28px;

    background: #e9e5e1;

    box-shadow:
        0 25px 60px rgba(17, 17, 17, .10);
}

.seo-faq-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(17, 17, 17, .72) 100%
        );

    pointer-events: none;
}

.seo-faq-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-faq-image:hover img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE OVERLAY
========================================================== */

.seo-faq-image-overlay {
    position: absolute;

    z-index: 4;

    left: 28px;
    right: 28px;
    bottom: 28px;
}

.seo-faq-image-overlay > span {
    display: block;

    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;

    color: var(--tdc-orange, #f26322);
}

.seo-faq-image-overlay > strong {
    display: block;

    max-width: 350px;

    margin-bottom: 9px;

    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -.025em;

    color: #ffffff;
}

.seo-faq-image-overlay > p {
    max-width: 350px;

    margin: 0 0 20px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: rgba(255, 255, 255, .76);
}


/* ==========================================================
   QUICK INFO
========================================================== */

.seo-faq-quick {
    margin-top: 14px;
    padding: 18px 20px;

    border: 1px solid #e8e2dd;
    border-radius: 17px;

    background: #faf9f7;
}

.seo-faq-quick-label {
    display: block;

    margin-bottom: 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-faq-quick-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.seo-faq-quick-row > div {
    display: flex;
    align-items: center;

    gap: 8px;
}

.seo-faq-quick-row span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    border-radius: 8px;

    background: rgba(242, 99, 34, .09);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}

.seo-faq-quick-row strong {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   FAQ LIST
========================================================== */

.seo-faq-list {
    border-top: 1px solid #e8e2dd;
}


/* ==========================================================
   FAQ ITEM
========================================================== */

.seo-faq-item {
    border-bottom: 1px solid #e8e2dd;

    transition:
        background .3s ease;
}

.seo-faq-item.active {
    background: #faf9f7;
}


/* ==========================================================
   FAQ QUESTION
========================================================== */

.seo-faq-question {
    width: 100%;

    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr)
        42px;

    align-items: center;

    gap: 17px;

    padding: 22px 18px;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}


/* ==========================================================
   FAQ NUMBER
========================================================== */

.seo-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(242, 99, 34, .08);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.seo-faq-item.active .seo-faq-number {
    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   QUESTION TEXT
========================================================== */

.seo-faq-question-text {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--tdc-black, #111111);

    transition:
        color .3s ease;
}

.seo-faq-item.active .seo-faq-question-text {
    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   TOGGLE
========================================================== */

.seo-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    justify-self: end;

    border: 1px solid #e7e1dc;
    border-radius: 50%;

    background: #ffffff;

    font-size: 12px;

    color: var(--tdc-black, #111111);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.seo-faq-question:hover .seo-faq-toggle {
    border-color: rgba(242, 99, 34, .30);

    color: var(--tdc-orange, #f26322);
}

.seo-faq-item.active .seo-faq-toggle {
    transform: rotate(180deg);

    border-color: var(--tdc-orange, #f26322);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   FAQ ANSWER
========================================================== */

.seo-faq-answer {
    overflow: hidden;

    max-height: 0;

    transition:
        max-height .45s cubic-bezier(.22, 1, .36, 1);
}

.seo-faq-answer-inner {
    padding:
        0
        75px
        24px
        77px;
}

.seo-faq-answer-inner p {
    max-width: 650px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.75;

    color: var(--tdc-text-muted, #66615e);
}

.seo-faq-answer-inner p + p {
    margin-top: 10px;
}


/* ==========================================================
   FAQ HOVER
========================================================== */

.seo-faq-item:not(.active):hover {
    background: rgba(250, 249, 247, .60);
}

.seo-faq-item:not(.active):hover .seo-faq-number {
    transform: scale(1.05);
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-faq {
        padding: 85px 0;
    }

    .seo-faq-heading-grid {
        gap: 45px;
    }

    .seo-faq-heading-grid h2 {
        font-size: 46px;
    }

    .seo-faq-grid {
        grid-template-columns:
            minmax(320px, 38%)
            minmax(0, 62%);

        gap: 50px;
    }

    .seo-faq-image {
        height: 510px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-faq {
        padding: 75px 0;
    }

    .seo-faq-heading-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .seo-faq-heading-grid > p {
        max-width: 700px;
    }


    /* Stack */

    .seo-faq-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* Disable sticky */

    .seo-faq-side {
        position: relative;
        top: auto;

        max-width: 700px;
    }

    .seo-faq-image {
        height: 520px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-faq {
        padding: 60px 0;
    }

    .seo-faq-header {
        margin-bottom: 35px;
    }

    .seo-faq-heading-grid h2 {
        font-size: 34px;
    }

    .seo-faq-heading-grid > p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Image */

    .seo-faq-image {
        height: 440px;

        border-radius: 22px;
    }

    .seo-faq-image-overlay {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .seo-faq-image-overlay > strong {
        font-size: 23px;
    }


    /* Quick info */

    .seo-faq-quick-row {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    /* FAQ */

    .seo-faq-question {
        grid-template-columns:
            38px
            minmax(0, 1fr)
            38px;

        gap: 12px;

        padding: 18px 8px;
    }

    .seo-faq-number,
    .seo-faq-toggle {
        width: 38px;
        height: 38px;
    }

    .seo-faq-question-text {
        font-size: 15px;
    }

    .seo-faq-answer-inner {
        padding:
            0
            50px
            20px
            58px;
    }

    .seo-faq-answer-inner p {
        font-size: 13px;
        line-height: 1.7;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-faq-heading-grid h2 {
        font-size: 31px;
    }

    .seo-faq-image {
        height: 390px;
    }

    .seo-faq-image-overlay > strong {
        font-size: 21px;
    }

    .seo-faq-image-overlay > p {
        font-size: 12px;
    }

    .seo-faq-question {
        grid-template-columns:
            34px
            minmax(0, 1fr)
            34px;

        gap: 10px;
    }

    .seo-faq-number,
    .seo-faq-toggle {
        width: 34px;
        height: 34px;
    }

    .seo-faq-question-text {
        font-size: 14px;
    }

    .seo-faq-answer-inner {
        padding:
            0
            43px
            18px
            52px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-faq-image img,
    .seo-faq-number,
    .seo-faq-toggle,
    .seo-faq-answer {
        transition: none !important;
    }

}
/* ==========================================================
   SEO PAGE
   SECTION 11 — FINAL SEO CTA
========================================================== */

.seo-final-cta {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background: #111111;
}


/* ==========================================================
   BACKGROUND EFFECTS
========================================================== */

.seo-final-cta::before {
    content: "";

    position: absolute;
    top: -280px;
    right: -200px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .20),
            rgba(242, 99, 34, .05) 45%,
            transparent 72%
        );

    pointer-events: none;
}

.seo-final-cta::after {
    content: "";

    position: absolute;
    left: -280px;
    bottom: -350px;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, .035),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   MAIN CTA BOX
========================================================== */

.seo-final-cta-box {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 55%)
        minmax(360px, 45%);

    align-items: center;

    gap: 80px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.seo-final-cta-content {
    position: relative;
    z-index: 3;

    max-width: 730px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.seo-final-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 23px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, .65);
}

.seo-final-eyebrow-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 5px rgba(242, 99, 34, .13);
}


/* ==========================================================
   HEADING
========================================================== */

.seo-final-cta-content h2 {
    max-width: 730px;

    margin: 0 0 22px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.03;

    letter-spacing: -.045em;

    color: #ffffff;
}

.seo-final-cta-content h2 span {
    display: block;

    margin-top: 6px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   LEAD
========================================================== */

.seo-final-lead {
    max-width: 620px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.75;

    color: rgba(255, 255, 255, .62);
}


/* ==========================================================
   VALUE POINTS
========================================================== */

.seo-final-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;

    margin-top: 34px;
}


/* ==========================================================
   VALUE POINT
========================================================== */

.seo-final-point {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;

    background: rgba(255, 255, 255, .035);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.seo-final-point:hover {
    transform: translateY(-4px);

    border-color: rgba(242, 99, 34, .30);

    background: rgba(255, 255, 255, .055);
}


/* Number */

.seo-final-point > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 10px;

    background: rgba(242, 99, 34, .13);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}


/* Content */

.seo-final-point strong {
    display: block;

    margin-bottom: 4px;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;

    color: #ffffff;
}

.seo-final-point small {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    line-height: 1.5;

    color: rgba(255, 255, 255, .48);
}


/* ==========================================================
   CTA ACTIONS
========================================================== */

.seo-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 30px;
}


/* ==========================================================
   PRIMARY CTA
========================================================== */

.seo-final-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 54px;

    padding: 0 23px;

    border: 1px solid var(--tdc-orange, #f26322);
    border-radius: 50px;

    background: var(--tdc-orange, #f26322);

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.seo-final-primary:hover {
    transform: translateY(-3px);

    background: #ff7333;
    border-color: #ff7333;

    box-shadow:
        0 15px 35px rgba(242, 99, 34, .28);

    color: #ffffff;
}

.seo-final-primary i {
    font-size: 11px;

    transition:
        transform .3s ease;
}

.seo-final-primary:hover i {
    transform: translateX(4px);
}


/* ==========================================================
   PHONE CTA
========================================================== */

.seo-final-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 21px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;

    background: rgba(255, 255, 255, .05);

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.seo-final-secondary i {
    color: var(--tdc-orange, #f26322);
}

.seo-final-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(242, 99, 34, .35);

    background: rgba(255, 255, 255, .08);

    color: #ffffff;
}


/* ==========================================================
   MICRO NOTE
========================================================== */

.seo-final-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 17px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    color: rgba(255, 255, 255, .42);
}

.seo-final-note-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.seo-final-visual {
    position: relative;

    min-height: 650px;
}


/* ==========================================================
   MAIN IMAGE
========================================================== */

.seo-final-image {
    position: absolute;

    inset: 0 35px 0 0;

    overflow: hidden;

    border-radius: 30px;

    background: #252525;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .32);
}

.seo-final-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17, 17, 17, .02),
            rgba(17, 17, 17, .08) 55%,
            rgba(17, 17, 17, .55) 100%
        );

    pointer-events: none;
}

.seo-final-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.seo-final-visual:hover .seo-final-image img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE TOP LABEL
========================================================== */

.seo-final-image-label {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 5;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50px;

    background: rgba(17, 17, 17, .52);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .10em;

    color: #ffffff;
}

.seo-final-image-label-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   SEARCH CARD
========================================================== */

.seo-final-search-card {
    position: absolute;

    z-index: 6;

    left: -45px;
    bottom: 55px;

    width: 320px;

    padding: 19px;

    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 19px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 25px 65px rgba(0, 0, 0, .24);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.seo-final-search-title {
    display: block;

    margin-bottom: 11px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   SEARCH BOX
========================================================== */

.seo-final-search-box {
    display: flex;
    align-items: center;

    gap: 9px;

    min-height: 40px;

    padding: 0 12px;

    border: 1px solid #e8e2dd;
    border-radius: 10px;

    background: #faf9f7;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;

    color: #8a837e;
}

.seo-final-search-box i {
    font-size: 10px;

    color: #aaa29c;
}


/* ==========================================================
   SEARCH RESULT
========================================================== */

.seo-final-search-result {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 10px;
    padding: 11px;

    border: 1px solid rgba(242, 99, 34, .13);
    border-radius: 11px;

    background: rgba(242, 99, 34, .045);
}

.seo-final-search-result-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    border-radius: 9px;

    background: var(--tdc-orange, #f26322);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: #ffffff;
}

.seo-final-search-result strong {
    display: block;

    margin-bottom: 2px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    color: var(--tdc-black, #111111);
}

.seo-final-search-result div > span {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;

    color: #817a75;
}


/* ==========================================================
   STRATEGY CARD
========================================================== */

.seo-final-strategy-card {
    position: absolute;

    z-index: 6;

    top: 80px;
    right: 0;

    width: 210px;

    padding: 17px 19px;

    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 17px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, .20);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    animation:
        seoFinalFloat 6s ease-in-out infinite;
}

.seo-final-strategy-card > span {
    display: block;

    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-final-strategy-card strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   TRUST STRIP
========================================================== */

.seo-final-trust {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 55px;
    padding: 22px 26px;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;

    background: rgba(255, 255, 255, .035);
}


/* ==========================================================
   TRUST INTRO
========================================================== */

.seo-final-trust-intro {
    margin-right: auto;
    padding-right: 30px;
}

.seo-final-trust-intro > span {
    display: block;

    margin-bottom: 4px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    color: var(--tdc-orange, #f26322);
}

.seo-final-trust-intro strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: #ffffff;
}


/* ==========================================================
   TRUST ITEM
========================================================== */

.seo-final-trust-item {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}

.seo-final-trust-item > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 9px;

    background: rgba(242, 99, 34, .12);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;

    color: var(--tdc-orange, #f26322);
}

.seo-final-trust-item strong {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    color: rgba(255, 255, 255, .72);
}


/* Divider */

.seo-final-trust-divider {
    width: 1px;
    height: 25px;

    flex-shrink: 0;

    background: rgba(255, 255, 255, .10);
}


/* ==========================================================
   FLOAT ANIMATION
========================================================== */

@keyframes seoFinalFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .seo-final-cta {
        padding: 85px 0;
    }

    .seo-final-cta-box {
        grid-template-columns:
            minmax(0, 54%)
            minmax(340px, 46%);

        gap: 55px;
    }

    .seo-final-cta-content h2 {
        font-size: 52px;
    }

    .seo-final-visual {
        min-height: 610px;
    }

    .seo-final-search-card {
        left: -20px;

        width: 300px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .seo-final-cta {
        padding: 75px 0;
    }

    .seo-final-cta-box {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .seo-final-cta-content {
        max-width: 760px;
    }

    .seo-final-visual {
        width: 100%;
        max-width: 700px;

        min-height: 620px;
    }


    /* Trust strip */

    .seo-final-trust {
        overflow-x: auto;

        scrollbar-width: none;
    }

    .seo-final-trust::-webkit-scrollbar {
        display: none;
    }

    .seo-final-trust-intro,
    .seo-final-trust-item,
    .seo-final-trust-divider {
        flex-shrink: 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .seo-final-cta {
        padding: 60px 0;
    }


    /* Heading */

    .seo-final-cta-content h2 {
        font-size: 38px;
    }

    .seo-final-lead {
        font-size: 15px;
        line-height: 1.7;
    }


    /* Value points */

    .seo-final-points {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    /* Buttons */

    .seo-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .seo-final-primary,
    .seo-final-secondary {
        width: 100%;
    }


    /* ======================================================
       IMPORTANT:
       Remove absolute positioning on mobile
       to prevent overlapping.
    ====================================================== */

    .seo-final-visual {
        display: flex;
        flex-direction: column;

        width: 100%;
        min-height: auto;

        gap: 13px;
    }


    /* Image */

    .seo-final-image {
        position: relative;
        inset: auto;

        order: 1;

        width: 100%;
        height: 470px;

        border-radius: 23px;
    }


    /* Image label stays inside image */

    .seo-final-image-label {
        top: 18px;
        left: 18px;
    }


    /* Search card */

    .seo-final-search-card {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        order: 2;

        width: 100%;
    }


    /* Strategy card */

    .seo-final-strategy-card {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        order: 3;

        width: 100%;

        animation: none;
    }


    /* Trust strip */

    .seo-final-trust {
        margin-top: 35px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .seo-final-cta-content h2 {
        font-size: 34px;
    }

    .seo-final-image {
        height: 390px;
    }

    .seo-final-eyebrow {
        font-size: 9px;
    }

    .seo-final-point {
        padding: 14px;
    }

    .seo-final-search-card {
        padding: 17px;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    .seo-final-cta-content h2 {
        font-size: 31px;
    }

    .seo-final-image {
        height: 350px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .seo-final-strategy-card,
    .seo-final-image img,
    .seo-final-point,
    .seo-final-primary,
    .seo-final-secondary {

        animation: none !important;
        transition: none !important;

    }

}
/* ==========================================================
   SEO PAGE — REDUCE SECTION SPACING BY 50%
========================================================== */

.seo-why-us,
.seo-industries,
.seo-faq,
.seo-final-cta {
    padding-top: 50px;
    padding-bottom: 50px;
}


/* TABLET */

@media (max-width: 1023px) {

    .seo-why-us,
    .seo-industries,
    .seo-faq,
    .seo-final-cta {
        padding-top: 38px;
        padding-bottom: 38px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .seo-why-us,
    .seo-industries,
    .seo-faq,
    .seo-final-cta {
        padding-top: 30px;
        padding-bottom: 30px;
    }

}