.ads-page {
    --ads-bg: #03050e;
    --ads-surface: #0a0e1b;
    --ads-surface-soft: #0f1424;
    --ads-border: rgba(255, 255, 255, 0.1);
    --ads-text: #f7f8fb;
    --ads-muted: #aeb5c7;
    --ads-yellow: #ffb400;
    --ads-yellow-light: #ffd260;
    --ads-green: #18c96e;
    overflow: hidden;
    background: var(--ads-bg);
    color: var(--ads-text);
    font-family: Rubik, sans-serif;
}

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

.ads-page .container {
    width: calc(100% - 30px);
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.ads-page h1,
.ads-page h2,
.ads-page h3,
.ads-page p {
    margin-top: 0;
}

.ads-page h1,
.ads-page h2,
.ads-page h3,
.ads-button,
.ads-kicker {
    font-family: Rajdhani, sans-serif;
}

.ads-page h1,
.ads-page h2,
.ads-page h3 {
    color: var(--ads-text);
}

.ads-page h2 {
    margin-bottom: 22px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.98;
    text-transform: uppercase;
}

.ads-page h2 strong {
    color: var(--ads-yellow);
    font-weight: inherit;
}

.ads-kicker {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--ads-yellow);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ads-kicker span {
    flex: 0 0 30px;
    width: 30px;
    height: 2px;
    background: currentColor;
}

.ads-button {
    display: inline-flex;
    min-height: 58px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.ads-button:hover,
.ads-button:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.ads-button:focus-visible {
    outline: 3px solid rgba(255, 210, 96, 0.5);
    outline-offset: 3px;
}

.ads-button-primary {
    background: var(--ads-green);
    box-shadow: 0 14px 30px rgba(24, 201, 110, 0.18);
    color: #03150c;
}

.ads-button-primary:hover,
.ads-button-primary:focus {
    background: #28dd7e;
    color: #03150c;
}

.ads-button-neutral {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.ads-button-neutral:hover,
.ads-button-neutral:focus {
    border-color: rgba(255, 180, 0, 0.55);
    background: rgba(255, 180, 0, 0.08);
    color: var(--ads-yellow-light);
}

.ads-button-inline {
    margin-top: 28px;
}

.ads-section {
    padding: 102px 0;
}

.ads-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.ads-heading-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ads-heading-center .ads-kicker {
    justify-content: center;
}

.ads-heading > p:last-child,
.ads-process-heading > p,
.ads-faq-heading > p,
.ads-final-inner > p {
    margin-bottom: 0;
    color: var(--ads-muted);
    font-size: 18px;
    line-height: 1.75;
}

/* Hero */
.ads-hero {
    position: relative;
    min-height: 830px;
    padding: 180px 0 48px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 33%, rgba(255, 180, 0, 0.11), transparent 29%),
        linear-gradient(130deg, #020312 0%, #050815 55%, #07101a 100%);
}

.ads-orb {
    position: absolute;
    border: 1px solid rgba(255, 180, 0, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.ads-orb-one {
    top: 105px;
    right: -220px;
    width: 650px;
    height: 650px;
}

.ads-orb-two {
    bottom: -280px;
    left: -230px;
    width: 520px;
    height: 520px;
}

.ads-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    gap: 58px;
    align-items: center;
}

.ads-hero-copy,
.ads-hero-visual {
    min-width: 0;
}

.ads-hero-lockup {
    display: flex;
    width: fit-content;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.ads-hero-lockup img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ads-hero-lockup span {
    color: #f1f3f4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 31px;
    font-weight: 500;
    letter-spacing: -1.2px;
    line-height: 1;
}

.ads-hero h1 {
    max-width: 670px;
    margin-bottom: 25px;
    font-size: clamp(54px, 5.15vw, 74px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.94;
    text-transform: uppercase;
}

.ads-hero h1 strong {
    display: block;
    color: var(--ads-yellow);
    font-weight: inherit;
}

.ads-hero-lead {
    max-width: 620px;
    margin-bottom: 27px;
    color: var(--ads-muted);
    font-size: 18px;
    line-height: 1.7;
}

.ads-hero-points {
    display: grid;
    gap: 10px;
    margin: 0 0 31px;
    padding: 0;
    color: #edf0f5;
    font-family: Rajdhani, sans-serif;
    font-size: 18px;
    font-weight: 700;
    list-style: none;
}

.ads-hero-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ads-hero-points i {
    margin-top: 4px;
    color: var(--ads-yellow);
}

.ads-hero-actions {
    display: flex;
    gap: 14px;
    align-items: stretch;
    max-width: 650px;
}

.ads-hero-actions .ads-button {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 17px;
    padding-left: 17px;
}

.ads-microcopy {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 14px 0 0;
    color: #8f97aa;
    font-size: 14px;
    line-height: 1.55;
}

.ads-microcopy i {
    color: var(--ads-yellow);
}

.ads-hero-visual {
    position: relative;
    align-self: start;
    margin-top: 52px;
    overflow: visible;
    border: 1px solid rgba(255, 180, 0, 0.24);
    border-radius: 18px;
    background: var(--ads-surface);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.ads-hero-visual::before {
    position: absolute;
    inset: -22px;
    z-index: -1;
    border-radius: 26px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.16), transparent 67%);
    content: "";
    filter: blur(15px);
}

.ads-hero-visual > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: inherit;
    object-fit: cover;
}

.ads-floating-card {
    position: absolute;
    display: flex;
    gap: 11px;
    align-items: center;
    min-width: 190px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 180, 0, 0.32);
    border-radius: 10px;
    background: rgba(7, 10, 19, 0.92);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.ads-floating-card > i {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 180, 0, 0.12);
    color: var(--ads-yellow);
    font-size: 17px;
}

.ads-floating-card span,
.ads-floating-card small,
.ads-floating-card strong {
    display: block;
}

.ads-floating-card small {
    margin-bottom: 2px;
    color: #8e97a8;
    font-size: 11px;
    line-height: 1.3;
}

.ads-floating-card strong {
    color: #fff;
    font-family: Rajdhani, sans-serif;
    font-size: 17px;
    line-height: 1.2;
}

.ads-floating-location {
    top: -28px;
    left: -26px;
}

.ads-floating-intent {
    right: -24px;
    bottom: -27px;
}

.ads-trust-bar {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 65px;
    overflow: hidden;
    border: 1px solid var(--ads-border);
    border-radius: 12px;
    background: rgba(10, 14, 27, 0.92);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.ads-trust-bar > div {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 24px 26px;
}

.ads-trust-bar > div + div {
    border-left: 1px solid var(--ads-border);
}

.ads-trust-bar i {
    flex: 0 0 30px;
    color: var(--ads-yellow);
    font-size: 27px;
    text-align: center;
}

.ads-trust-bar span,
.ads-trust-bar strong,
.ads-trust-bar small {
    display: block;
}

.ads-trust-bar strong {
    margin-bottom: 2px;
    color: #fff;
    font-family: Rajdhani, sans-serif;
    font-size: 22px;
    line-height: 1.2;
}

.ads-trust-bar small {
    color: #8e97aa;
    font-size: 15px;
    line-height: 1.45;
}

/* Benefits */
.ads-benefits {
    background: #070a13;
}

.ads-platform-lockup {
    display: flex;
    width: fit-content;
    gap: 16px;
    align-items: center;
    margin: 0 auto 30px;
}

.ads-platform-lockup img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.ads-platform-lockup span {
    color: #f1f3f4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 1;
}

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

.ads-benefit-card {
    min-height: 315px;
    padding: 34px 30px;
    border: 1px solid var(--ads-border);
    border-radius: 12px;
    background: var(--ads-surface);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ads-benefit-card:hover {
    border-color: rgba(255, 180, 0, 0.42);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
    transform: translateY(-5px);
}

.ads-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 26px;
    place-items: center;
    border: 1px solid rgba(255, 180, 0, 0.34);
    border-radius: 10px;
    background: rgba(255, 180, 0, 0.08);
    color: var(--ads-yellow);
    font-size: 25px;
}

.ads-benefit-card h3 {
    margin-bottom: 12px;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
}

.ads-benefit-card p {
    margin-bottom: 0;
    color: var(--ads-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Local scenarios */
.ads-local {
    background:
        radial-gradient(circle at 9% 50%, rgba(255, 180, 0, 0.09), transparent 29%),
        var(--ads-bg);
}

.ads-local-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 76px;
    align-items: center;
}

.ads-local-copy > p:not(.ads-kicker) {
    margin-bottom: 0;
    color: var(--ads-muted);
    font-size: 18px;
    line-height: 1.75;
}

.ads-local-scenarios {
    display: grid;
    gap: 14px;
}

.ads-local-scenarios article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 26px;
    border: 1px solid var(--ads-border);
    border-radius: 11px;
    background: var(--ads-surface);
}

.ads-local-scenarios article > i {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 180, 0, 0.1);
    color: var(--ads-yellow);
    font-size: 22px;
}

.ads-local-scenarios h3 {
    margin-bottom: 6px;
    font-size: 25px;
    font-weight: 700;
}

.ads-local-scenarios p {
    margin-bottom: 0;
    color: #98a1b4;
    font-size: 16px;
    line-height: 1.65;
}

/* Campaign dashboard */
.ads-dashboard {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--ads-border);
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 180, 0, 0.1), transparent 38%),
        #080b16;
}

.ads-dashboard-frame {
    position: relative;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 180, 0, 0.26);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 180, 0, 0.035));
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42), 0 0 55px rgba(255, 180, 0, 0.055);
}

.ads-dashboard-frame::before {
    position: absolute;
    inset: -1px 12% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 180, 0, 0.72), transparent);
    content: '';
}

.ads-dashboard-frame img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    background: #020b1b;
}

.ads-dashboard-frame figcaption {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 14px 12px 4px;
    color: #98a1b4;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
}

.ads-dashboard-frame figcaption i {
    color: var(--ads-yellow);
}

/* Journey */
.ads-journey {
    border-top: 1px solid var(--ads-border);
    border-bottom: 1px solid var(--ads-border);
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 180, 0, 0.09), transparent 32%),
        #080b16;
}

.ads-journey-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ads-journey-list li {
    position: relative;
    min-height: 310px;
    padding: 30px 27px 28px;
    overflow: visible;
    border: 1px solid var(--ads-border);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 180, 0, 0.055), transparent 42%),
        var(--ads-surface);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ads-journey-list li::before {
    position: absolute;
    top: -1px;
    right: 24px;
    left: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 180, 0, 0.75), transparent);
    content: '';
}

.ads-journey-list li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -27px;
    z-index: 3;
    display: grid;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 180, 0, 0.38);
    border-radius: 50%;
    place-items: center;
    background: #080b16;
    color: var(--ads-yellow);
    content: '→';
    font-family: Rajdhani, sans-serif;
    font-size: 19px;
    font-weight: 800;
    transform: translateY(-50%);
}

.ads-journey-list li:hover {
    border-color: rgba(255, 180, 0, 0.4);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.28);
    transform: translateY(-5px);
}

.ads-journey-list li > span {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 30px;
    border-radius: 50%;
    place-items: center;
    background: var(--ads-yellow);
    box-shadow: 0 10px 25px rgba(255, 180, 0, 0.18);
    color: #080a12;
    font-family: Rajdhani, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ads-journey-icon {
    position: absolute;
    top: 34px;
    right: 27px;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255, 180, 0, 0.2);
    border-radius: 10px;
    background: rgba(255, 180, 0, 0.08);
    color: var(--ads-yellow);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ads-journey-list h3 {
    margin-bottom: 10px;
    font-size: 29px;
    font-weight: 800;
}

.ads-journey-list p {
    margin-bottom: 0;
    color: #98a1b4;
    font-size: 16px;
    line-height: 1.7;
}

/* Process */
.ads-process {
    background: var(--ads-bg);
}

.ads-process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 76px;
    align-items: start;
}

.ads-process-heading {
    position: sticky;
    top: 120px;
}

.ads-process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ads-border);
    list-style: none;
}

.ads-process-list li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 22px;
    padding: 31px 5px;
    border-bottom: 1px solid var(--ads-border);
}

.ads-process-list li > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--ads-yellow);
    color: #080a12;
    font-family: Rajdhani, sans-serif;
    font-weight: 800;
}

.ads-process-list h3 {
    margin-bottom: 7px;
    font-size: 27px;
    font-weight: 700;
}

.ads-process-list p {
    margin-bottom: 0;
    color: #9ba4b7;
    font-size: 16px;
    line-height: 1.7;
}

/* About */
.ads-about {
    border-top: 1px solid var(--ads-border);
    background:
        radial-gradient(circle at 18% 50%, rgba(255, 180, 0, 0.08), transparent 30%),
        #070a13;
}

.ads-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 76px;
    align-items: center;
}

.ads-about-photo {
    position: relative;
    width: min(100%, 520px);
}

.ads-about-photo::before {
    position: absolute;
    inset: 28px -18px -18px 28px;
    border: 1px solid rgba(255, 180, 0, 0.42);
    border-radius: 14px;
    content: '';
}

.ads-about-photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.ads-about-copy h2 {
    font-size: clamp(40px, 4.25vw, 60px);
}

.ads-about-copy .ads-about-lead {
    color: var(--ads-text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
}

.ads-about-copy > p:not(.ads-kicker):not(.ads-about-lead) {
    color: var(--ads-muted);
    font-size: 17px;
    line-height: 1.75;
}

/* Reviews */
.ads-reviews {
    border-top: 1px solid var(--ads-border);
    background: #070a13;
}

.ads-reviews .google-reviews-widget {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--ads-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

/* FAQ */
.ads-faq {
    background: var(--ads-bg);
}

.ads-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 75px;
    align-items: start;
}

.ads-faq-heading {
    position: sticky;
    top: 120px;
}

.ads-faq-heading h2 {
    font-size: clamp(42px, 4.6vw, 62px);
}

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

.ads-faq-item {
    border-bottom: 1px solid var(--ads-border);
}

.ads-faq-item summary {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 27px 5px;
    color: #fff;
    cursor: pointer;
    font-family: Rajdhani, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    list-style: none;
}

.ads-faq-item summary::-webkit-details-marker {
    display: none;
}

.ads-faq-item summary > i {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 180, 0, 0.3);
    border-radius: 50%;
    color: var(--ads-yellow);
    font-size: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.ads-faq-item[open] summary {
    color: var(--ads-yellow-light);
}

.ads-faq-item[open] summary > i {
    background: var(--ads-yellow);
    color: #080a12;
    transform: rotate(45deg);
}

.ads-faq-item > div {
    padding: 0 60px 27px 5px;
}

.ads-faq-item > div p {
    margin-bottom: 0;
    color: #a5adbd;
    font-size: 16px;
    line-height: 1.75;
}

/* Final CTA */
.ads-final-cta {
    position: relative;
    padding: 115px 0 120px;
    overflow: hidden;
    border-top: 1px solid var(--ads-border);
    background:
        radial-gradient(circle at 50% 0, rgba(255, 180, 0, 0.18), transparent 38%),
        #070a13;
    text-align: center;
}

.ads-final-cta::before {
    position: absolute;
    top: -330px;
    left: 50%;
    width: 660px;
    height: 660px;
    border: 1px solid rgba(255, 180, 0, 0.18);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.ads-final-inner {
    position: relative;
    max-width: 920px;
}

.ads-final-inner .ads-kicker {
    justify-content: center;
}

.ads-final-inner h2 {
    margin-right: auto;
    margin-left: auto;
}

.ads-final-inner > p {
    max-width: 720px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
}

.ads-final-inner .ads-button {
    min-width: 320px;
}

.ads-final-inner > small {
    display: block;
    margin-top: 16px;
    color: #7e8799;
    font-size: 15px;
    line-height: 1.6;
}

.ads-final-inner > small i {
    margin-right: 5px;
    color: var(--ads-yellow);
}

@media (max-width: 1199.98px) {
    .ads-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.93fr);
        gap: 36px;
    }

    .ads-hero h1 {
        font-size: clamp(50px, 5.65vw, 66px);
    }

    .ads-hero-actions .ads-button {
        font-size: 16px;
    }

    .ads-floating-location {
        left: -12px;
    }

    .ads-floating-intent {
        right: -12px;
    }

    .ads-local-grid,
    .ads-process-grid,
    .ads-about-grid {
        gap: 48px;
    }
}

@media (max-width: 991.98px) {
    .ads-section {
        padding: 88px 0;
    }

    .ads-hero {
        min-height: 0;
        padding-top: 170px;
    }

    .ads-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ads-hero-copy {
        text-align: center;
    }

    .ads-hero-lockup {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
    }

    .ads-hero-copy .ads-kicker,
    .ads-hero-actions {
        justify-content: center;
    }

    .ads-hero h1,
    .ads-hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .ads-hero-points {
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .ads-microcopy {
        justify-content: center;
    }

    .ads-hero-visual {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .ads-trust-bar {
        margin-top: 74px;
    }

    .ads-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ads-local-grid,
    .ads-process-grid,
    .ads-about-grid,
    .ads-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ads-about-photo {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .ads-about-copy {
        text-align: center;
    }

    .ads-about-copy .ads-kicker {
        justify-content: center;
    }

    .ads-process-heading,
    .ads-faq-heading {
        position: static;
        max-width: 740px;
    }

    .ads-journey-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ads-journey-list li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ads-page .container {
        width: calc(100% - 30px);
    }

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

    .ads-kicker {
        font-size: 13px;
    }

    .ads-heading {
        margin-bottom: 36px;
    }

    .ads-platform-lockup {
        gap: 12px;
        margin-bottom: 24px;
    }

    .ads-platform-lockup img {
        width: 46px;
        height: 46px;
    }

    .ads-platform-lockup span {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .ads-page h2,
    .ads-faq-heading h2 {
        font-size: clamp(36px, 11.5vw, 50px);
    }

    .ads-heading > p:last-child,
    .ads-local-copy > p:not(.ads-kicker),
    .ads-process-heading > p,
    .ads-about-copy > p:not(.ads-kicker),
    .ads-faq-heading > p,
    .ads-final-inner > p {
        font-size: 16px;
    }

    .ads-hero {
        padding: 158px 0 0;
    }

    .ads-hero-grid {
        gap: 47px;
    }

    .ads-hero h1 {
        max-width: 560px;
        margin-bottom: 23px;
        font-size: clamp(42px, 12.4vw, 54px);
        line-height: 0.95;
        overflow-wrap: anywhere;
    }

    .ads-hero-lead {
        max-width: 560px;
        margin-bottom: 26px;
        font-size: 17px;
        line-height: 1.65;
    }

    .ads-hero-points {
        margin-bottom: 30px;
    }

    .ads-hero-points li {
        font-size: 17px;
    }

    .ads-hero-actions {
        flex-direction: column;
        width: min(100%, 540px);
        margin-right: auto;
        margin-left: auto;
    }

    .ads-hero-actions .ads-button {
        width: 100%;
        font-size: 16px;
    }

    .ads-microcopy {
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .ads-floating-card {
        min-width: 0;
        max-width: 205px;
        padding: 10px 11px;
    }

    .ads-floating-card > i {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .ads-floating-card strong {
        font-size: 15px;
    }

    .ads-floating-location {
        top: -24px;
        left: 10px;
    }

    .ads-floating-intent {
        right: 10px;
        bottom: -24px;
    }

    .ads-trust-bar {
        grid-template-columns: 1fr;
        margin-top: 68px;
    }

    .ads-trust-bar > div {
        padding: 23px 22px;
    }

    .ads-trust-bar > div + div {
        border-top: 1px solid var(--ads-border);
        border-left: 0;
    }

    .ads-trust-bar small {
        font-size: 16px;
    }

    .ads-benefit-grid,
    .ads-journey-list {
        grid-template-columns: 1fr;
    }

    .ads-benefit-card {
        min-height: 0;
    }

    .ads-benefit-card p,
    .ads-local-scenarios p,
    .ads-journey-list p,
    .ads-process-list p,
    .ads-faq-item > div p {
        font-size: 17px;
    }

    .ads-local-scenarios article {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        padding: 23px 20px;
    }

    .ads-local-scenarios article > i {
        width: 52px;
        height: 52px;
    }

    .ads-dashboard-frame {
        padding: 5px;
        border-radius: 12px;
    }

    .ads-dashboard-frame img {
        border-radius: 8px;
    }

    .ads-dashboard-frame figcaption {
        align-items: flex-start;
        padding: 12px 8px 5px;
        font-size: 13px;
    }

    .ads-journey-list li {
        min-height: 0;
        padding: 27px 24px 25px;
    }

    .ads-process-list li {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 17px;
        padding: 27px 5px;
    }

    .ads-process-list li > span {
        width: 48px;
        height: 48px;
    }

    .ads-about-photo::before {
        inset: 15px -8px -10px 15px;
    }

    .ads-about-copy .ads-button {
        width: 100%;
    }

    .ads-faq-item summary {
        font-size: 22px;
    }

    .ads-faq-item > div {
        padding-right: 5px;
    }

    .ads-final-cta {
        padding: 80px 0;
    }

    .ads-final-inner .ads-button,
    .ads-faq-heading .ads-button,
    .ads-local-copy .ads-button {
        width: 100%;
        min-width: 0;
    }

    .ads-final-inner > small {
        font-size: 16px;
    }
}

@media (max-width: 479.98px) {
    .ads-page .container {
        width: calc(100% - 24px);
    }

    .ads-hero-copy .ads-kicker {
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .ads-hero h1 {
        font-size: clamp(39px, 11.9vw, 49px);
    }

    .ads-hero-lead,
    .ads-hero-points li,
    .ads-microcopy {
        font-size: 16px;
    }

    .ads-floating-card {
        max-width: 168px;
    }

    .ads-floating-card small {
        display: none;
    }

    .ads-floating-location {
        left: 5px;
    }

    .ads-floating-intent {
        right: 5px;
    }

    .ads-local-scenarios article {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ads-page *,
    .ads-page *::before,
    .ads-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
