﻿/* =========================================================
   01) GLOBAL TOKENS (single source of truth)
========================================================= */
:root {
    /* Core */
    --blue-bg: #00002b;
    --orange: #ee632f;
    --panel: #fff;
    --panel2: #0f0f0f;
    /* Text */
    --text: #f5f5f5;
    --muted: rgba(255,255,255,.66);
    --muted2: rgba(255,255,255,.48);
    /* Lines / Surfaces */
    --border: rgba(255,255,255,.10);
    --border2: rgba(255,255,255,.08);
    /* Brand */

    --new-orange: #ee632f;
    /* Pills */
    --pill: rgba(255,255,255,.06);
    --pill2: rgba(255,255,255,.08);
    /* Radius / Shadow / Motion */
    --radius: 26px;
    --shadow: 0 14px 40px rgba(0,0,0,.55);
    --ease: cubic-bezier(.2,.8,.2,1);
    /* AG (tabs/faq/etc) */
    --ag-pill: rgba(255,255,255,.06);
    --ag-pill2: rgba(255,255,255,.08);
    --ag-ease: cubic-bezier(.2,.8,.2,1);
    --ag-shadow: 0 14px 40px rgba(0,0,0,.55);
    --ag-border2: rgba(255,255,255,.08);
    /* Footer / Safario */
    /*    --sf-bg: var(--blue-bg);*/
    --sf-line: rgba(255,255,255,.18);
    --sf-text: rgba(255,255,255,.92);
    --sf-muted: rgba(255,255,255,.72);
}

/* =========================================================
   02) BASE / GLOBAL
========================================================= */
html, body {
    height: 100%;
}

body {
    background: var(--blue-bg) !important;
    color: var(--text);
    font-family: "Zalando Sans Expanded", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    font-family: "Montserrat", sans-serif;
}

    a:hover {
        color: var(--orange);
    }

.container-xxl {
    max-width: 1380px;
}

h1, h2 {
    color: #fff;
}

p {
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.text-orange {
    color: var(--orange);
}

.form-select option {
    color: var(--blue-bg);
}
.ads-logo {
    width: 320px;
   height:80px;
}
/* =========================================================
   03) ADS HERO (as provided)
========================================================= */
.ads-container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}

.ads-hero {
    position: relative;
    overflow: hidden;
    min-height: 346px;
    display: flex;
    align-items: center;
    padding: 56px 0 46px;
    background: radial-gradient(1200px 420px at 50% 45%, rgba(255,255,255,.04), rgba(0,0,0,0) 62%), var(--ads-bg);
}

    .ads-hero::before {
        content: "";
        position: absolute;
        inset: -40px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Crect x='18' y='-10' width='224' height='280' rx='112' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='2'/%3E%3C/svg%3E");
        background-size: 240px 240px;
        background-repeat: repeat;
        opacity: .9;
        pointer-events: none;
    }

    .ads-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(900px 240px at 50% 50%, rgba(0,0,0,.15), rgba(0,0,0,.62) 70%), linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,0) 18%, rgba(0,0,0,0) 82%, rgba(0,0,0,.6));
        pointer-events: none;
    }

.ads-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    margin-inline: auto;
}

.ads-hero__line {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: .14em;
    letter-spacing: -0.04em;
    line-height: .98;
    font-weight: 500;
    font-size: clamp(2.1rem, 4.8vw, 5rem);
}

.ads-hero__word {
    white-space: nowrap;
}

.ads-hero__hl-wrap {
    display: inline-block;
    background: rgb(238, 99, 47);
    transform: rotate(356deg);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    color: var(--blue-bg);
}

.ads-hero__hl-text {
    display: inline-block;
    color: var(--ads-black);
    transform: rotate(3deg);
}

.ads-hero__badge {
    width: clamp(44px, 9vw, 86px);
    height: clamp(44px, 9vw, 86px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-16deg);
    translate: 0 .08em;
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

    .ads-hero__badge img {
        width: 120%;
        height: 110%;
        object-fit: contain;
        display: block;
        transform: rotate(16deg);
    }

.ads-hero__sub {
    margin: 18px auto 0;
    max-width: 720px;
    color: var(--ads-muted);
    font-size: clamp(.85rem, 1.05vw, 1.02rem);
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* =========================================================
   04) ANIMATION SYSTEM (default)
========================================================= */
[data-anim] {
    opacity: 0;
    transform: translate3d(0,40px,0);
    transition: transform .8s var(--ease), opacity .8s var(--ease);
    will-change: transform, opacity;
}

[data-anim="fade"] {
    transform: translate3d(0,0,0);
}

[data-anim="up"] {
    transform: translate3d(0,18px,0);
}

[data-anim="down"] {
    transform: translate3d(0,-18px,0);
}

[data-anim="left"] {
    transform: translate3d(-18px,0,0);
}

[data-anim="right"] {
    transform: translate3d(18px,0,0);
}

[data-anim="scale"] {
    transform: translate3d(0,0,0) scale(.96);
}

[data-anim].in {
    opacity: 1;
    transform: translate3d(0,0,0) scale(1);
}

[data-stagger] > * {
    opacity: 0;
    transform: translate3d(0,18px,0);
    transition: transform .8s var(--ease), opacity .8s var(--ease);
}

[data-stagger].in > * {
    opacity: 1;
    transform: translate3d(0,0,0);
}

/* Pop / wiggle helpers */
.pop-in {
    animation: pop .65s var(--ease) both;
}

@keyframes pop {
    0% {
        transform: scale(.98);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hl.wiggle {
    animation: wiggle 1.2s var(--ease) 1 both;
}

@keyframes wiggle {
    0% {
        transform: rotate(-6deg) scale(.98);
    }

    55% {
        transform: rotate(-1.5deg) scale(1.02);
    }

    100% {
        transform: rotate(-2deg) scale(1);
    }
}

/* =========================================================
   05) HEADER
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 10px 40px;
    pointer-events: none;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0);
    width: 100%;
    opacity: 1;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}

    .site-header .hdr-inner {
        pointer-events: auto;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    user-select: none;
}

    .brand .mark {
        width: 34px;
        height: 34px;
        position: relative;
        filter: drop-shadow(0 10px 16px rgba(0,0,0,.5));
    }

        .brand .mark:before,
        .brand .mark:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 36px;
            height: 12px;
            border-radius: 999px;
            background: 404; /* kept as provided */
            transform-origin: center;
            transform: translate(-50%,-50%) rotate(45deg);
        }

        .brand .mark:after {
            transform: translate(-50%,-50%) rotate(-45deg);
        }

    .brand .name {
        font-family: "Zalando Sans Expanded", sans-serif;
        font-weight: 800;
        letter-spacing: .08em;
        font-size: 14px;
    }

.nav-pill {
    background: #ffffff03;
    border: 1px solid #ffffff33;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    align-items: center;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}

    .nav-pill a {
        text-decoration: none;
        font-family: "Zalando Sans Expanded", sans-serif;
        font-size: 12px;
        letter-spacing: .08em;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 999px;
        color: rgba(255,255,255,.86);
        transition: .15s ease;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .nav-pill a:hover {
            background: rgba(255,255,255,.06);
        }

.nav-link:focus,
.nav-link:hover {
    color: var(--orange);
}

.nav-pill a.active {
    background: #ed632f;
    border: 1px solid rgba(255,255,255,.10);
    color: #ffffff;
}

.btn-template {
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    border: 0;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    box-shadow: 0 18px 50px rgba(245,131,39,.18);
    transform: translateZ(0);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

    .btn-template:hover {
        transform: translateY(-2px);
        box-shadow: 0 26px 70px rgba(245,131,39,.22);
        color: #02022d;
    }

    .btn-template .mini-arrow {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: rgba(0,0,0,.10);
    }

.hambox {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(18,18,18,.72);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    transition: transform .25s var(--ease);
}

    .hambox:active {
        transform: scale(.98);
    }

    .hambox span {
        width: 18px;
        height: 2px;
        background: rgba(255,255,255,.88);
        border-radius: 99px;
        position: relative;
        display: block;
    }

        .hambox span:before,
        .hambox span:after {
            content: "";
            position: absolute;
            left: 0;
            width: 18px;
            height: 2px;
            background: rgba(255,255,255,.88);
            border-radius: 99px;
        }

        .hambox span:before {
            top: -6px;
        }

        .hambox span:after {
            top: 6px;
        }

/* =========================================================
   06) HERO
========================================================= */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 56px;
    overflow: hidden;
}

    .hero:before {
        content: "";
        position: absolute;
        inset: -140px -40px auto -40px;
        height: 520px;
        background: radial-gradient(closest-side at 50% 25%, rgba(245,131,39,.14), transparent 70%), radial-gradient(closest-side at 30% 30%, rgba(255,255,255,.06), transparent 60%), radial-gradient(closest-side at 70% 30%, rgba(255,255,255,.05), transparent 60%), repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 2px, transparent 2px 96px);
        opacity: .65;
        filter: blur(.2px);
        mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0 55%, rgba(0,0,0,0) 78%);
        pointer-events: none;
        transform: translate3d(0,0,0);
    }

    .hero .inner {
        position: relative;
        z-index: 1;
        max-width: 920px;
        margin: 0 auto;
        text-align: center;
    }

.hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 43, 0) 0%, rgba(0, 0, 43, 0.25) 25%, rgba(0, 0, 43, 0.55) 60%, rgb(0 0 0 / 87%) 88%, var(--blue-bg) 100%);
    width: 100%;
    height: 182px;
    position: absolute;
    bottom: -10px;
    left: 0;
    overflow: hidden;
    z-index: 99;
}

.hero-title {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.02;
    font-size: clamp(44px,5.6vw,70px);
    margin: 0;
    text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.hl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .06em .20em .10em;
    background: var(--orange);
    color: #fff;
    border-radius: 16px;
    transform: rotate(-2deg);
    box-shadow: 0 16px 45px rgba(245,131,39,.18);
    transform-origin: center;
}

    .hl .megaphone {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: rgba(0,0,0,.12);
        transform: rotate(2deg);
        filter: brightness(0);
    }

    .hl svg {
        width: 22px;
        height: 22px;
    }

.hero-sub {
    margin: 18px auto 0;
    max-width: 720px;
    color: #ffffffc7;
    font-size: 14px;
    line-height: 1.7;
}

.cta {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 12px 18px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 22px 60px rgba(245,131,39,.16);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

    .cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 30px 80px rgba(245,131,39,.20);
    }

    .cta .cta-arrow {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: rgba(0,0,0,.10);
        display: grid;
        place-items: center;
    }

/* =========================================================
   07) SHOWCASE
========================================================= */
.showcase {
    position: relative;
    padding-bottom: 70px;
}

.showcase-wrap {
    position: relative;
    box-shadow: var(--shadow);
    background: linear-gradient(180deg,#bf331300 16.354%, var(--orange) 77.3549%);
    min-height: 630px;
    transform: translateZ(0);
}

.team {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: min(880px,130%);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    will-change: transform;
}

    .team img {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 40px 70px rgba(0,0,0,.45));
    }

.watermark-wrapper {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    overflow: hidden;
    transform: translateY(-50%);
}

.watermark-track {
    display: flex;
    width: max-content;
    animation: scrollText 50s linear infinite;
    font-weight: 600;
}

    .watermark-track span {
        white-space: nowrap;
        font-size: 70px;
        padding-right: 20px;
    }

    .watermark-track .sm {
        font-weight: 300;
        padding-right: 20px;
    }

@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   08) GENERIC SECTION UTILITIES
========================================================= */
.section {
    padding: 92px 0;
    position: relative;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: var(--orange);
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: 12px;
}

/* Base section-title (kept). Override exists later in “AG Logos” section. */
.section-title {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0px 0 0;
    font-size: 40px;
}

/* =========================================================
   09) FAQ (GENERIC)
========================================================= */
.faq-section {
    position: relative;
    padding: clamp(40px,5vw,80px) 0;
    isolation: isolate;
}

    .faq-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .22;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cdefs%3E%3Cpattern id='p' width='130' height='130' patternUnits='userSpaceOnUse'%3E%3Crect x='18' y='10' width='94' height='150' rx='47' fill='%23111111'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='260' height='260' fill='url(%23p)'/%3E%3C/svg%3E");
        background-size: 260px 260px;
        z-index: -2;
    }

    .faq-section::after {
        content: "";
        position: absolute;
        inset: -2px;
        pointer-events: none;
        z-index: -1;
    }

.faq-wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 12px;
}

.faq-shell {
    background: linear-gradient(180deg,var(--pill) 0%,var(--pill2) 100%);
    border: 1px solid var(--border2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .faq-shell + .faq-shell {
        margin-top: 18px;
    }

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(16px,2.1vw,22px) clamp(16px,2.2vw,26px);
    background: transparent;
    border: 0;
    color: var(--text);
    text-align: left;
    font-weight: 400;
    font-size: clamp(15px,1.4vw,18px);
    line-height: 1.35;
    cursor: pointer;
}

.faq-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(238,99,47,.22);
}

    .faq-icon svg {
        width: 18px;
        height: 18px;
        fill: #1b1b1b;
        transform: rotate(0deg);
        transition: transform .35s var(--ease);
    }

.faq-btn[aria-expanded="true"] .faq-icon svg {
    transform: rotate(180deg);
}

.faq-btn .headp {
    display: inline-block;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.faq-btn:hover .headp {
    transform: translateX(12px);
}

.faq-collapse {
    border-top: 1px solid rgba(255,255,255,.08);
}

.faq-body {
    padding: 0 clamp(16px,2.2vw,26px) clamp(16px,2.2vw,22px);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 92ch;
}

/* Collapsing transition (shared) */
.collapsing {
    transition: height .45s var(--ease) !important;
}

.collapse, .collapsing {
    transition: height .45s ease;
}

/* =========================================================
   10) OFFCANVAS
========================================================= */
.offcanvas {
    background: var(--blue-bg);
    color: var(--text);
}

    .offcanvas .menu a {
        display: block;
        padding: 12px 12px;
        border-radius: 12px;
        text-decoration: none;
        color: rgba(255,255,255,.88);
        font-family: "Zalando Sans Expanded", sans-serif;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        font-size: 13px;
    }

        .offcanvas .menu a:hover {
            background: rgba(255,255,255,.06);
        }

/* =========================================================
   11) SERVICES (CARDS)
========================================================= */
.services-section {
    padding: 100px 0 150px;
    color: #fff;
}

.service-sec .sub-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card,
.service-card-1 {
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: transform .3s;
}

.service-card {
    background: #fff3f317;
}

.service-bar {
    background: #ffffff0f;
    margin: 150px 0px;
    padding: 100px 0px;
}

.img-fluidd {
    max-width: 70%;
    height: auto;
}

.service-card-1 {
    /* background: var(--orange)4a; */
}

    .service-card:hover,
    .service-card-1:hover {
        transform: translateY(-5px);
    }

    .service-card h4,
    .service-card-1 h4 {
        margin-top: 20px;
        font-size: 22px;
        font-weight: 400;
    }

    .service-card p,
    .service-card-1 p {
        margin-top: 15px;
        color: #b5b5b5;
        font-size: 16px;
    }

.icon-circle {
    width: 42px;
    height: 42px;
    background: rgba(255,140,0,.15);
    color: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.learn-more-btn {
    margin-top: 30px;
    padding: 18px 0px 18px 0px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    transition: .35s;
}

    .learn-more-btn:hover {
        transform: translateY(-2px);
    }

.arrow-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .35s, border .35s;
}

.learn-more-btn:hover .arrow-circle {
    background: #ff8c00;
    border-color: #ff8c00;
}

.arrow-circle svg {
    width: 18px;
    height: 18px;
    fill: rgb(255,140,0);
    transition: transform .45s, fill .35s;
    transform-origin: center;
}

.learn-more-btn:hover .arrow-circle svg {
    fill: #000;
    transform: rotate(45deg) translate(2px,-2px);
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cs-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    background: #ffffff1a;
    margin: 0;
}

.cs-tag-head {
    font-size: 40px;
    color: #fff;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    margin: 40px 0 40px;
    overflow: hidden;
    border: 2px solid var(--orange);
}

    .cta-btn .divider {
        width: 2px;
        height: 22px;
        background: #030456;
        opacity: 0;
        transform: scaleY(0);
        transition: all .35s ease;
    }

    .cta-btn .arrow {
        font-size: 18px;
        line-height: 1;
        display: inline-block;
        transform: rotate(0deg);
        transition: transform .35s ease;
    }

    .cta-btn:hover .arrow {
        transform: rotate(45deg);
    }

    .cta-btn:hover .divider {
        opacity: 1;
        transform: scaleY(1);
    }

    .cta-btn:hover {
        color: #030456;
        transition: transform .35s ease;
    }

/* =========================================================
   12) LOGOS (AG) + MARQUEE (2-row stack)
========================================================= */
.ag-logos {
    --ag-bg: #070708;
    position: relative;
    overflow: hidden;
    padding: 50px 0 100px;
}

.ag-pill {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--orange);
    background: rgba(255,138,26,.10);
    border: 1px solid rgba(255,138,26,.35);
}

/* NOTE: kept as provided (global override) */
.section-title {
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.03em;
    font-size: clamp(30px,3.2vw,42px);
    margin: 0;
    text-transform: capitalize;
}

.service-sec h2 {
    font-weight: 400;
}

.ag-marquee-brand {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
}

    .ag-marquee-brand:before,
    .ag-marquee-brand:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
    }

    .ag-marquee-brand:before {
        left: 0;
    }

    .ag-marquee-brand:after {
        right: 0;
    }

.ag-marquee-stack {
    width: 100%;
}

.ag-marquee__track {
    display: flex;
    width: max-content;
    gap: 14px;
    will-change: transform;
    transform: translate3d(0,0,0);
    animation: ag-marquee-left 22s linear infinite; /* kept */
}

.ag-marquee__set {
    display: flex;
    align-items: center;
    gap: 14px;
    /*padding: 6px 0;*/
    flex: 0 0 auto;
}

.ag-logo-pill {
    min-height: 98px;
    min-width: 186px;
    padding: 14px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.10);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

    .ag-logo-pill img {
        max-width: 120px;
        width: auto;
        height: auto;
        filter: brightness(0) invert(1);
        transition: opacity .20s ease, filter .25s ease, transform .25s ease;
    }

/* shared base for both pill types */
.ag-logo-pill, .ag-logo-pill-2 {
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1a;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ag-logo-pill-2 {
    min-height: 60px;
    min-width: 186px;
}

    .ag-logo-pill-2 img {
        max-width: 90px;
        width: auto;
        height: auto;
        opacity: 1;
        filter: brightness(0) invert(1);
        transition: opacity .20s ease, filter .25s ease, transform .25s ease;
    }

/* keyframes (kept both naming variants as provided) */
@keyframes agMarqueeLeft {
    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(-50%,0,0);
    }
}

@keyframes agMarqueeRight {
    from {
        transform: translate3d(-50%,0,0);
    }

    to {
        transform: translate3d(0,0,0);
    }
}

.ag-marquee-brand--left .ag-marquee__track {
    animation: agMarqueeLeft 35s linear infinite;
}

.ag-marquee-brand--right .ag-marquee__track {
    animation: agMarqueeRight 35s linear infinite;
}

.ag-marquee-brand:hover .ag-marquee__track {
    animation-play-state: paused;
}

@keyframes ag-marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   13) PROOF
========================================================= */
.ag-proof {
    --ag-white: #fff;
    position: relative;
    overflow: hidden;
    background-image: url("/img/banner/ads-center-banner.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #070708;
}

.ag-proof__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: .91;
}

.ag-proof__wrap {
    position: relative;
    z-index: 1;
    min-height: clamp(740px,120vh,1280px);
    display: flex;
    flex-direction: column;
    padding: clamp(40px,6vh,78px) 0 clamp(46px,6vh,86px);
}

/* Bubbles (desktop base) */
.ag-proof__bubbles {
    position: absolute;
    top: 97px;
    left: 50%;
    transform: translateX(-50%);
    width: min(980px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 0 12px;
}

.ag-bubble {
    --size: clamp(140px, 16vw, 190px);
    --baseY: 10px;
    --px: 0px;
    --py: 0px;
    --tx: 0px;
    --ty: 0px;
    --mx: 0px;
    --my: 0px;
    width: var(--size);
    height: var(--size);
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 30px 90px rgba(0,0,0,.60);
    transform: translate3d( calc(var(--tx) + var(--px) + var(--mx)), calc(var(--ty) + var(--baseY) + var(--py) + var(--my)), 0 );
    will-change: transform;
}

    .ag-bubble + .ag-bubble {
        margin-left: -22px;
    }

    .ag-bubble:nth-child(1) {
        --baseY: 18px;
        z-index: 1;
    }

    .ag-bubble:nth-child(2) {
        --baseY: -6px;
        z-index: 4;
    }

    .ag-bubble:nth-child(3) {
        --baseY: 20px;
        z-index: 2;
    }

    .ag-bubble:nth-child(4) {
        --baseY: -2px;
        z-index: 3;
    }

.ag-bubble__num {
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.03em;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1;
}

.ag-bubble__num1 {
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.03em;
    font-size: clamp(18px, 2.0vw, 25px);
    line-height: 1.1;
}

.ag-bubble__label {
    margin-top: 6px;
    color: rgba(255,255,255,.82);
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
}

.ag-proof__bottom {
    margin-top: auto;
}

.ag-glass-card {
    border-radius: 22px;
    padding: 28px 22px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 28px 90px rgba(0,0,0,.62);
}

.ag-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: rgba(255,138,26,.10);
    border: 1px solid rgba(255,138,26,.35);
}

.ag-card__icon2 {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: rgba(255,138,26,.10);
    border: 1px solid rgba(255,138,26,.35);
}

.trust-icon {
    width: 60%;
    height: auto;
}

.ag-card__title {
    color: var(--ag-white);
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: 20px;
    margin: 0 0 8px;
}

.ag-card__text {
    color: rgba(255,255,255,.62);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.ag-proof__chips {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: "Montserrat", sans-serif;
}

    .ag-proof__chips i {
        color: var(--orange);
    }

.ag-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 15px;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* =========================================================
   14) CASE STUDIES
========================================================= */
.cs-section {
    --cs-panel: #0f1116;
    --cs-border: rgba(255,255,255,0.06);
    --cs-text: #eef0f4;
    --cs-muted: rgba(238,240,244,0.72);
    --cs-accent: #ff7a1a;
    position: relative;
    isolation: isolate;
    padding: clamp(56px,7vw,96px) 0;
    overflow: hidden;
}

    .cs-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        opacity: .22;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23ffffff' stop-opacity='0.16'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='0.03'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none'%3E%3Crect x='14' y='12' rx='28' ry='28' width='56' height='136' stroke='url(%23g)' stroke-width='2'/%3E%3Crect x='90' y='12' rx='28' ry='28' width='56' height='136' stroke='url(%23g)' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 160px 160px;
        background-repeat: repeat;
        filter: blur(.1px);
    }

    .cs-section::after {
        content: "";
        position: absolute;
        inset: -20%;
        z-index: -1;
        background: radial-gradient(60% 50% at 50% 10%, rgba(0,0,0,0.05) 0%, var(--blue-bg) 70%, var(--blue-bg) 100%), radial-gradient(60% 50% at 50% 110%, rgba(0,0,0,0.2) 0%, var(--blue-bg) 70%, var(--blue-bg) 100%);
        pointer-events: none;
    }

.cs-heading {
    margin-bottom: clamp(26px,3.5vw,44px);
}

.cs-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 700;
    color: var(--cs-accent);
    border: 1px solid rgba(255,122,26,0.35);
    background: rgba(255,122,26,0.08);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cs-title {
    color: var(--cs-text);
    font-weight: 400;
    font-size: 45px;
    line-height: 1.05;
    margin: 0;
}

.cs-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translate3d(0,var(--sy,0px),0);
    will-change: transform;
}

.cs-visual {
    border-radius: 26px;
    border: 1px solid var(--cs-border);
    box-shadow: 0 18px 50px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}

    .cs-visual img {
        width: 100%;
        height: auto;
        transform: scale(1);
        transition: transform 1.2s cubic-bezier(.4,0,.2,1);
    }

.cs-card:hover .cs-visual img {
    transform: scale(1.1);
}

.cs-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    filter: drop-shadow(0 22px 26px rgba(0,0,0,0.35));
    transform: translateZ(0);
}

.cs-meta {
    background: #fff3f317;
    border: 1px solid #ffffff0d;
    border-radius: 22px;
    padding: 18px 18px 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
    color: var(--cs-text);
    border: 1px solid transparent;
    transition: border-color .8s ease-in-out;
    margin: 2px;
}

.cs-card:hover .cs-meta {
    border-color: #f8fdfe59;
}

.cs-meta-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px;
}

.cs-meta-sub {
    margin: 0 0 14px;
    color: var(--cs-muted);
    font-size: 16px;
    line-height: 1.45;
}

.cs-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cs-metric-val {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    color: var(--cs-accent);
    margin-bottom: 6px;
}

.cs-metric-lbl {
    font-size: 16px;
    color: var(--cs-muted);
    line-height: 1.3;
}

/* =========================================================
   15) TESTIMONIALS
========================================================= */
.ag-testimonials {
    --bg: #050505;
    --grid: rgba(255,255,255,.06);
    --card: rgba(12,12,12,.62);
    --border: rgba(255,255,255,.16);
    --text: rgba(255,255,255,.72);
    --muted: rgba(255,255,255,.46);
    --new-orange: rgba(255,150,60,.95);
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .ag-testimonials::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(70% 55% at 55% 12%, rgba(255,155,70,.18), transparent 60%), radial-gradient(90% 80% at 50% 105%, rgba(0,0,0,0), var(--blue-bg) 55%, var(--blue-bg) 100%), repeating-linear-gradient(90deg, var(--grid) 0px, var(--grid) 1px, transparent 1px, transparent 76px);
        z-index: 0;
    }

.ag-watermark {
    position: absolute;
    top: clamp(18px,6vw,70px);
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: clamp(54px,10vw,150px);
    color: rgba(255,255,255,.16);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.ag-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(28px,6vw,86px) 0;
}

.ag-marquee {
    position: relative;
    width: min(760px,80vw);
    margin-inline: auto;
    height: clamp(520px,70vh,760px);
    overflow: hidden;
    border-radius: 26px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

    .ag-marquee::before,
    .ag-marquee::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 120px;
        pointer-events: none;
        z-index: 3;
    }

    .ag-marquee::before {
        top: 0;
        background: linear-gradient(to bottom, var(--bg), rgba(5,5,5,0));
    }

    .ag-marquee::after {
        bottom: 0;
        background: linear-gradient(to top, var(--bg), rgba(5,5,5,0));
    }

.ag-track {
    transform: translate3d(0,0,0);
    will-change: transform;
}

.ag-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 6px 0;
}

.ag-card {
    position: relative;
    background: var(--blue-bg);
    border: 1px solid #f8fdfe59;
    border-radius: 24px;
    padding: 28px 28px 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 30px 90px rgba(0,0,0,.55);
    overflow: hidden;
}

    .ag-card.ag-glow::after {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(85% 60% at 50% 0%, rgba(255,165,80,.55), transparent 65%);
        opacity: .85;
        pointer-events: none;
    }

.ag-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.ag-star {
    width: 14px;
    height: 14px;
    fill: var(--orange);
    filter: drop-shadow(0 0 10px rgba(255,150,60,.18));
}

.ag-quote {
    position: absolute;
    left: 18px;
    top: 44px;
    font-size: 76px;
    line-height: 1;
    color: rgba(255,150,60,.35);
    font-weight: 800;
    z-index: 0;
    transform: translateY(-10px);
}

.ag-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.75;
}

.ag-author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.ag-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 12px 26px rgba(0,0,0,.40);
    flex: 0 0 auto;
}

.ag-name {
    margin: 0;
    color: rgba(255,255,255,.92);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.15;
}

.ag-role {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.2;
}

/* =========================================================
   16) TALK / FOOTER (SAFARIO)
========================================================= */
.safario-footer {
    position: relative;
    overflow: hidden;
    background: var(--blue-bg);
    padding: clamp(56px,7vw,110px) 0 40px;
    padding-top: 0px;
}

    .safario-footer::before {
        content: "";
        position: absolute;
        inset: -40px;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Crect x='22' y='0' width='56' height='220' rx='28' fill='white' fill-opacity='0.06'/%3E%3Crect x='142' y='0' width='56' height='220' rx='28' fill='white' fill-opacity='0.06'/%3E%3C/svg%3E");
        background-size: 220px 220px;
        background-repeat: repeat;
        opacity: .60;
        filter: blur(.2px);
    }

    .safario-footer::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(900px 520px at 50% 30%, rgba(245,131,39,.20), rgba(245,131,39,0) 60%), linear-gradient(180deg, var(--blue-bg) 0%, var(--blue-bg) 100%);
    }

    .safario-footer .container,
    .safario-footer .container-xxl {
        position: relative;
        z-index: 1;
    }

.talk-title {
    margin: 0;
    line-height: .88;
    letter-spacing: -0.04em;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: clamp(64px, 9vw, 156px);
    text-shadow: 0 24px 80px rgba(0,0,0,.6);
}

    .talk-title .t1 {
        display: block;
        color: #fff;
    }

    .talk-title .t2 {
        display: block;
        color: var(--orange);
        margin-top: clamp(-32px, -2.5vw, -14px);
    }

.talk-sub {
    margin-top: 16px;
    max-width: 560px;
    color: rgba(255,255,255,.66);
    line-height: 1.8;
    font-size: clamp(13px, 1.1vw, 15px);
}

.talk-form {
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 26px 90px rgba(0,0,0,.55);
    padding: clamp(18px, 2.4vw, 26px);
}

    .talk-form .form-label {
        color: rgba(255,255,255,.58);
        font-size: 12px;
        letter-spacing: .02em;
        margin-bottom: 8px;
    }

    .talk-form .form-control,
    .talk-form .form-select {
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.10);
        color: #85859f;
        border-radius: 18px;
        padding: 14px 16px;
    }

        .talk-form .form-control::placeholder {
            color: rgba(255,255,255,.42);
        }

        .talk-form .form-control:focus,
        .talk-form .form-select:focus {
            background: rgba(255,255,255,.07);
            border-color: rgba(245,131,39,.40);
            box-shadow: 0 0 0 .22rem rgba(245,131,39,.12);
            color: rgba(255,255,255,.88);
        }

    .talk-form textarea.form-control {
        min-height: 110px;
        resize: vertical;
    }

.talk-submit {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    border: 0;
    background: var(--orange);
    color: #fff;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 18px 60px rgba(245,131,39,.18);
}

.safario-footer .ft-cnt {
    margin-top: clamp(34px, 4vw, 58px);
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    box-shadow: 0 26px 90px rgba(0,0,0,.55);
    padding: clamp(22px, 3vw, 34px) !important;
}

.footer-nav {
    letter-spacing: .2px;
}

.footer-link {
    color: var(--sf-text);
    text-decoration: none;
    font-weight: 400 !important;
    opacity: .95;
    transition: opacity .2s ease, color .2s ease;
    font-size: 14px;
}

    .footer-link:hover {
        color: #fff;
        opacity: 1;
    }

    .footer-link.active {
        color: #fff;
        opacity: 1;
    }

.footer-hr {
    border: 0;
    height: 1px;
    background: var(--sf-line);
    opacity: 1;
}

.footer-h {
    margin: 0;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--orange);
}

.footer-t {
    color: var(--sf-text);
    font-weight: 400;
    line-height: 1.55;
    font-size: 16px;
}

.footer-muted {
    color: var(--sf-muted);
    font-weight: 400;
    font-size: 14px;
}

.footer-legal {
    font-weight: 600;
}

.talk-ico {
    width: 42px;
    height: 42px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: rgba(245,131,39,.12);
    border: 1px solid rgba(245,131,39,.30);
    flex: 0 0 auto;
}

    .talk-ico i {
        font-size: 18px;
        line-height: 1;
    }

.talk-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.talk-soc {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

    .talk-soc:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.05);
        border-color: rgba(245,131,39,.30);
    }

    .talk-soc i {
        font-size: 18px;
        line-height: 1;
    }

/* =========================================================
   17) CONTACT SECTION
========================================================= */
.contact-section {
    width: 100%;
}

    .contact-section::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at top, rgba(255,255,255,0.08) 0, transparent 60%), radial-gradient(circle at bottom, rgba(255,255,255,0.06) 0, transparent 60%);
        opacity: .08;
        z-index: -1;
    }

.contact-title {
    font-weight: 600;
    letter-spacing: .08em;
    font-size: clamp(2rem,3vw,2.6rem);
    margin-bottom: 150px;
    color: #fff;
    margin-top: 200px;
}

.contact-card {
    background-color: #ffffff0f;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
}

.info-box {
    background-color: #ffffff0d;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.04);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #ffffffbd;
    margin-bottom: .5rem;
}

.info-text {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    white-space: pre-line;
}

    .info-text:hover {
        color: var(--orange);
        text-decoration: underline;
    }

.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background-color: #ffffff29;
    color: var(--orange);
    margin-right: .6rem;
    font-size: 1.3rem;
    transition: transform .15s ease, background-color .15s ease, color .15s ease;
    text-decoration: none;
    margin-top: .8rem;
}

    .contact-social a:hover {
        background-color: var(--orange);
        color: #fff;
        transform: translateY(-1px);
    }

.ratio-30 {
    --bs-aspect-ratio: 30%;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
}

    .contact-map iframe {
        border: 0;
    }

.search-bar, .text-overlay {
    z-index: 2;
    position: absolute;
}

/* =========================================================
   18) PILLS SECTION
========================================================= */
.main-container {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-row {
    margin-bottom: 40px;
}

.traffic-card, .revenue-card, .values-card, .brand-card {
    background: #1f1d1d;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.image-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138,43,226,.3) 0%, rgba(0,191,255,.3) 100%);
    pointer-events: none;
}

.text-overlay {
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

    .text-overlay h1 {
        font-size: 5rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
        text-shadow: 2px 2px 10px rgba(0,0,0,.5);
    }

    .text-overlay p {
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 1px 1px 5px rgba(0,0,0,.5);
    }

    .text-overlay small {
        display: block;
        margin-top: 20px;
        font-size: .95rem;
        line-height: 1.6;
        max-width: 90%;
        text-shadow: 1px 1px 5px rgba(0,0,0,.7);
    }

.search-bar {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.3);
    font-size: 1.5rem;
    color: #fff;
    z-index: 2;
}

.revenue-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 450px;
}

    .revenue-card h2 {
        font-size: 6rem;
        font-weight: 900;
        margin-bottom: 15px;
        background: linear-gradient(135deg,#fff 0%, #ccc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .revenue-card .subtitle {
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: auto;
    }

    .revenue-card p {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(255,255,255,.8);
        text-align: left;
        align-self: flex-end;
        margin-top: auto;
    }

.values-card {
    min-height: 500px;
    position: relative;
    background-image: url("https://framerusercontent.com/images/QHwiFG8CdFS1wdIHWtWHvAuzLAM.jpg?scale-down-to=1024&width=3000&height=4500");
    background-size: cover;
    background-position: center;
}

.values-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 380px;
    height: 380px;
    z-index: 2;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,.3);
    overflow: hidden;
}

.value-item {
    position: absolute;
    background: var(--orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: grab;
    user-select: none;
    border: 2px solid rgba(0,0,0,.2);
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    z-index: 5;
    white-space: nowrap;
    transition: all .3s ease;
    color: #fff !important;
    will-change: transform;
}

    .value-item::before {
        content: "✕";
        margin-right: 8px;
        font-size: .8rem;
    }

    .value-item.dragging {
        z-index: 9999;
        cursor: grabbing;
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,.5);
    }

.brand-card {
    background: var(--orange);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-top {
    text-align: right;
}

.brand-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #fff;
}

.brand-card h2 {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.brand-bottom {
    text-align: left;
    margin-top: auto;
}

.brand-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    position: relative;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* 3D tilt utilities */
.valid-item-1 {
    transform: perspective(1200px) rotate(-45deg);
    top: 18%;
    left: 2%;
}

.valid-item-2 {
    transform: perspective(1200px) rotate(19deg);
    top: 14%;
    right: 28%;
}

.valid-item-3 {
    transform: perspective(1200px) rotate(-29deg);
    top: 36%;
    left: 2%;
}

.valid-item-4 {
    transform: perspective(1200px) rotate(0deg);
    top: 28%;
    right: 5%;
}

.valid-item-5 {
    transform: perspective(1200px) rotate(-9deg);
    top: 51%;
    left: 2%;
}

.valid-item-6 {
    transform: perspective(1200px) rotate(3deg);
    top: 41%;
    left: 36%;
}

.valid-item-7 {
    transform: perspective(1200px) rotate(-30deg);
    top: 58%;
    left: 30%;
}

.valid-item-8 {
    transform: perspective(1200px) rotate(-22deg);
    top: 58%;
    right: 1%;
}

.valid-item-9 {
    transform: perspective(1200px) rotate(-30deg);
    bottom: 15%;
    left: 22%;
}

.valid-item-10 {
    transform: perspective(1200px) rotate(-6deg);
    bottom: 15%;
    right: 12%;
}

.valid-item-11 {
    transform: perspective(1200px) rotate(-5deg);
    bottom: 3%;
    left: 40%;
}

.center-x {
    transform: translateX(-50%);
}

/* =========================================================
   19) ABOUT SECTION
========================================================= */
.about-ussec {
    position: relative;
    padding: 0 0 100px;
    overflow: hidden;
}

    .about-ussec::before {
        content: "";
        position: absolute;
        left: -4%;
        right: -4%;
        top: -140px;
        height: 420px;
        opacity: .35;
        background: radial-gradient(closest-side at 50% 100%, rgba(255,255,255,.12), transparent 72%);
        background-size: 140px 160px;
        background-repeat: repeat;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.35), transparent);
        pointer-events: none;
    }

.who-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: var(--orange);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
}

.about-title {
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 18px;
}

.about-copy {
    max-width: 640px;
    color: #ffffffad;
    font-size: 20px;
    line-height: 1.85;
    margin: 0;
    font-weight: 300;
}

    .about-copy strong {
        color: var(--text);
    }

    .about-copy .hl {
        color: var(--orange);
    }

.about-acc {
    max-width: 720px;
    margin-left: auto;
}

.ac-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ac-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.ac-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: #ffffff14;
    color: #ffffffb5;
    font-weight: 400;
    text-align: left;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
    font-size: 18px;
}

    .ac-btn .ac-num,
    .ac-btn .ac-name,
    .ac-btn .ac-ico--plus {
        transition: all .3s ease;
    }

    .ac-btn:hover .ac-num,
    .ac-btn:hover .ac-name {
        color: var(--orange);
    }

    .ac-btn:hover .ac-ico--plus {
        background-color: var(--orange);
        color: #000;
    }

.ac-left {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
}

.ac-num {
    color: rgba(255,255,255,.85);
    min-width: 34px;
}

.ac-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ac-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}

.ac-ico--close {
    background: var(--orange);
    border-color: rgba(0,0,0,0);
}

.ico-plus, .ico-x {
    position: relative;
    width: 14px;
    height: 14px;
    display: block;
}

    .ico-plus::before, .ico-plus::after,
    .ico-x::before, .ico-x::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 14px;
        height: 2px;
        transform: translate(-50%,-50%);
        border-radius: 2px;
        background: rgba(255,255,255,.92);
    }

    .ico-plus::after {
        width: 2px;
        height: 14px;
    }

    .ico-x::before {
        transform: translate(-50%,-50%) rotate(45deg);
        background: #111;
    }

    .ico-x::after {
        transform: translate(-50%,-50%) rotate(-45deg);
        background: #111;
    }

.ac-item.is-open {
    border: 1px solid #ffffff45;
    border-radius: var(--radius);
    background: #ffffff0d;
}

    .ac-item.is-open .ac-btn {
        border: 0;
        border-radius: 0;
        background: transparent;
        /*padding: 18px 18px 12px;*/
        transform: none;
    }

    .ac-item.is-open .ac-num,
    .ac-item.is-open .ac-name {
        color: var(--orange);
    }

.ac-btn .ac-ico--close {
    display: none;
}

.ac-item.is-open .ac-btn .ac-ico--plus {
    display: none;
}

.ac-item.is-open .ac-btn .ac-ico--close {
    display: grid;
}

.ac-body {
    padding: 0 18px 18px;
}

    .ac-body p, .feature-list {
        margin: 0 0 14px;
        color: #ffffffad;
        line-height: 1.75;
        font-size: 14.5px;
    }

        .ac-body p:last-child {
            margin-bottom: 0;
        }

/* =========================================================
   20) PROCESS SECTION
========================================================= */
.process-section {
    position: relative;
    padding: clamp(64px,8vw,112px) 0;
    isolation: isolate;
}

    .process-section::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .35;
        pointer-events: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cdefs%3E%3Cpattern id='p' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Crect x='14' y='8' width='92' height='140' rx='46' fill='%23161616'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='240' height='240' fill='url(%23p)'/%3E%3C/svg%3E");
        background-size: 240px 240px;
        z-index: -2;
    }

    .process-section::after {
        content: "";
        position: absolute;
        inset: -2px;
        pointer-events: none;
        background: radial-gradient(85% 65% at 50% 50%, rgba(0,0,0,0) 30%, var(--blue-bg) 100%);
        z-index: -1;
    }

.process-wrap {
    position: relative;
    margin-top: clamp(28px,4vw,56px);
    --rail-left: 132px;
}

.timeline-rail {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: var(--rail-left);
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,.12) 12%, rgba(255,255,255,.12) 88%, transparent 100%);
    border-radius: 999px;
    pointer-events: none;
}

.timeline-hot {
    position: absolute;
    left: var(--rail-left);
    width: 3px;
    height: 98px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(238,99,47,0) 0%, rgba(238,99,47,1) 18%, rgba(238,99,47,1) 82%, rgba(238,99,47,0) 100%);
    box-shadow: 0 0 24px rgba(238,99,47,.55), 0 0 60px rgba(238,99,47,.25);
    transform: translateY(0);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
}

.process-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(16px,2.2vw,32px);
    align-items: start;
    padding: clamp(20px,2.6vw,34px) 0;
}

.process-num {
    font-weight: 800;
    font-size: clamp(68px,8.4vw,122px);
    line-height: 1;
    letter-spacing: -.04em;
    color: rgba(255,255,255,.10);
    padding-left: 18px;
    transition: color .25s cubic-bezier(.2,.8,.2,1), text-shadow .25s cubic-bezier(.2,.8,.2,1);
    user-select: none;
    white-space: nowrap;
}

.process-item.is-active .process-num {
    color: var(--orange);
    text-shadow: 0 0 22px rgba(238,99,47,.45), 0 0 56px rgba(238,99,47,.24);
}

.process-card {
    max-width: 760px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: clamp(16px,2.2vw,26px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0,0,0,.55);
    transition: border-color .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s cubic-bezier(.2,.8,.2,1);
}

.process-item.is-active .process-card {
    border-color: rgba(238,99,47,.22);
    box-shadow: 0 18px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(238,99,47,.08) inset;
}

.step-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(238,99,47,.95);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.process-card h3 {
    margin: 14px 0 !important;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.12;
    font-size: 24px;
}

.process-card p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: clamp(14px,1.4vw,15.5px);
    line-height: 1.65;
    max-width: 62ch;
}

.service-card-p {
    color: rgba(255,255,255,.58);
    font-size: clamp(14px,1.4vw,15.5px);
}

.process-item + .process-item {
    margin-top: clamp(18px,3.4vw,46px);
}

/* =========================================================
   21) WHY SECTION (EXTRA WIDE CENTER GLOW)
========================================================= */
.why-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;
}

    /* EXTRA wide + premium center glow */
    .why-section::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 46%;
        width: min(2200px, 150vw);
        height: min(1250px, 125vh);
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 0;
        background: radial-gradient(closest-side at 50% 55%, rgba(255,140,50,.70) 0%, rgba(255,140,50,.34) 34%, rgba(255,140,50,.14) 56%, rgba(255,140,50,0) 78%), radial-gradient(closest-side at 50% 35%, rgba(255,255,255,.14) 0%, rgba(255,255,255,.07) 28%, rgba(255,255,255,0) 58%);
        filter: blur(92px) saturate(160%);
        opacity: .85;
        mix-blend-mode: screen;
    }

@supports (mix-blend-mode: color-dodge) {
    .why-section::after {
        mix-blend-mode: color-dodge;
        opacity: .55;
    }
}

/* grid lines above glow */
.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to right, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 90px);
    opacity: .25;
    z-index: 1;
    pointer-events: none;
}

/* content above everything */
.why-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 70px;
}

.why-grid {
    position: relative;
    z-index: 2;
}

.why-card {
    height: 100%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    padding: 34px 32px;
    text-align: center;
    transition: all .35s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255,122,24,.35);
    }

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--orange);
    font-size: 24px;
}

.why-card h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffa8;
    margin: 0;
}

/* =========================================================
   22) SERVICES (WIDE CARD SECTION) - (kept as provided)
========================================================= */
.cs-section {
    position: relative;
    padding: clamp(34px,4vw,60px) 0 clamp(60px,7vw,90px);
    isolation: isolate;
}

    .cs-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .40;
        background-size: 260px 260px;
        z-index: -2;
    }

    .cs-section::after {
        content: "";
        position: absolute;
        inset: -2px;
        pointer-events: none;
        z-index: -1;
    }

    .cs-section .container-xxl {
        max-width: 1260px;
    }

.cs-card {
    position: relative;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .35s var(--ease), border-color .35s var(--ease);
}

    .cs-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255,255,255,.14);
    }

    .cs-card::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        /*background: radial-gradient(120% 90% at 20% 0%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 55%);*/
        opacity: .55;
    }

.cs-wide {
    padding: 16px;
}

.cs-wide-inner {
    height: 100%;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(240px,360px) 1fr;
    gap: 16px;
    align-items: stretch;
}

.cs-wide-media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: radial-gradient(85% 80% at 30% 100%, rgba(238,99,47,.60) 0%, rgba(0,0,0,0) 62%), linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(0,0,0,.34) 100%);
    min-height: 240px;
    padding: 10px;
}

    .cs-wide-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
    }

.cs-wide-content,
.cs-wide-content-2 {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.04) 100%);
    position: relative;
    padding: clamp(18px,2.2vw,26px);
    min-height: 240px;
}

.cs-wide-content {
    border-radius: 0 28px 28px 0;
}

.cs-wide-content-2 {
    border-radius: 28px 0 0 28px;
}

.cs-wide-content::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cdefs%3E%3Cpattern id='p3' width='110' height='110' patternUnits='userSpaceOnUse'%3E%3Crect x='16' y='8' width='78' height='130' rx='39' fill='%23101010'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='220' height='220' fill='url(%23p3)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    z-index: -1;
}

/* =========================================================
   23) CUSTOMER SUPPORT (TABS + FAQ)
========================================================= */
.ag-faq-section {
    position: relative;
    padding: clamp(46px,5.5vw,86px) 0 clamp(70px,7vw,100px);
    isolation: isolate;
}

    .ag-faq-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .42;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cdefs%3E%3Cpattern id='p' width='130' height='130' patternUnits='userSpaceOnUse'%3E%3Crect x='18' y='10' width='94' height='150' rx='47' fill='%23111111'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='260' height='260' fill='url(%23p)'/%3E%3C/svg%3E");
        background-size: 260px 260px;
        z-index: -2;
    }

    .ag-faq-section::after {
        content: "";
        position: absolute;
        inset: -2px;
        pointer-events: none;
        background: radial-gradient(60% 50% at 50% 0%, rgba(255,255,255,.06) 0%, rgba(0,0,0,0) 60%), radial-gradient(85% 65% at 50% 50%, rgba(0,0,0,0) 30%, rgba(0,0,0,.88) 100%);
        z-index: -1;
    }

.ag-faq-wrap {
    max-width: 1120px;
}

.ag-faq-title {
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
    font-size: clamp(30px,4vw,54px);
    margin: 0 0 18px;
    text-align: center;
}

.ag-faq-subtitle {
    max-width: 70ch;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.70);
    text-align: center;
    line-height: 1.7;
    font-size: 14px;
}

/* Tabs */
.ag-tabs {
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 9px 0;
    scrollbar-width: thin;
}

    .ag-tabs::-webkit-scrollbar {
        height: 8px;
    }

    .ag-tabs::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.08);
        border-radius: 999px;
    }

.ag-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 12px 16px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    background: linear-gradient(180deg, var(--ag-pill) 0%, var(--ag-pill2) 100%);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 55px rgba(0,0,0,.35);
    font-weight: 500;
    letter-spacing: .01em;
    transition: transform .25s var(--ag-ease), border-color .25s var(--ag-ease), background .25s var(--ag-ease), color .25s var(--ag-ease);
}

    .ag-tab-btn:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.16);
        color: rgba(255,255,255,.92);
    }

    .ag-tab-btn.active {
        background: var(--orange);
        border-color: rgba(238,99,47,.75);
        color: #fff;
        box-shadow: 0 22px 70px rgba(238,99,47,.10), var(--ag-shadow);
    }

    .ag-tab-btn i {
        color: rgba(238,99,47,.95);
        transition: color .25s var(--ag-ease);
    }

    .ag-tab-btn.active i {
        color: #111;
    }

.ag-tab-pane {
    padding-top: 18px;
}

/* FAQ items */
.ag-faq-item {
    background: rgb(20, 20, 60);
    border: 1px solid var(--ag-border2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ag-shadow);
    position: relative;
}

    .ag-faq-item + .ag-faq-item {
        margin-top: 18px;
    }

.ag-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 30px;
    background: transparent;
    border: 0;
    color: #ffffffb5;
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
    cursor: pointer;
}

    .ag-faq-btn .headp {
        display: inline-block;
        transition: transform .35s cubic-bezier(.4,0,.2,1);
    }

    .ag-faq-btn:hover .headp {
        transform: translateX(12px);
    }

.ag-faq-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(238,99,47,.22);
}

    .ag-faq-icon svg {
        width: 18px;
        height: 18px;
        fill: #1b1b1b;
        transform: rotate(0deg);
        transition: transform .35s var(--ag-ease);
    }

.ag-faq-btn[aria-expanded="true"] .ag-faq-icon svg {
    transform: rotate(180deg);
}

.ag-faq-collapse {
    border-top: 1px solid rgba(255,255,255,.08);
}

.ag-faq-body {
    padding: 14px clamp(16px,2.2vw,26px) clamp(16px,2.2vw,22px);
    color: rgba(255,255,255,.70);
    font-size: 14px;
    line-height: 1.75;
}

    .ag-faq-body p {
        margin-bottom: 10px;
    }

        .ag-faq-body p:last-child {
            margin-bottom: 0;
        }

/* Thumbnail + modal */
.ag-thumb-link {
    display: block;
    text-decoration: none;
}

.ag-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    box-shadow: 0 18px 55px rgba(0,0,0,.35);
    margin: 0;
}

    .ag-thumb img {
        width: 100%;
        height: auto;
        display: block;
    }

    .ag-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 55%);
        pointer-events: none;
        opacity: .55;
    }

.ag-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.28);
    opacity: 0;
    transition: opacity .25s var(--ag-ease);
}

.ag-thumb-link:hover .ag-thumb-overlay {
    opacity: 1;
}

.ag-zoom-pill {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(238,99,47,.22);
    color: #1b1b1b;
    font-size: 18px;
}

.ag-step-note {
    margin: 10px 0 0;
    text-align: center;
    color: rgb(255 255 255);
    font-size: 14px;
    letter-spacing: .02em;
}

.ag-modal-content {
    background: #00002b;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--ag-shadow);
}

.ag-modal-header {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ag-modal-title {
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--orange);
}

.btn-close {
    filter: invert(1);
    opacity: .9;
}

/* =========================================================
   24) PAGE BANNER (#ads)
========================================================= */
#ads {
    --text: #f5f5f5;
    --orange: var(--orange);
    --radius: 30px;
    color: var(--text);
    font-family: "Unbounded",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    overflow-x: hidden;
    margin: 100px 30px 0;
}

    #ads .about-wrap {
        margin-top: -50px;
    }

    #ads .about-wrap1 {
        padding: 55px 0 0;
    }

    #ads .hero-shell {
        width: min(100% - 12px, 2460px);
        margin: 0 auto;
    }

    #ads .hero-card {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        background: #0b0b0b;
        border: 1px solid rgba(255,255,255,.10);
        /*box-shadow: 0 26px 70px rgba(0,0,0,.62);*/
        height: clamp(380px,35vw,980px);
        max-height: 680px;
        background-position-y: center;
        margin-bottom: 40px;
        margin-top: 80px;
    }

        #ads .hero-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.01);
            filter: saturate(1.03) contrast(1.02);
        }

    #ads .hero-overlay-1 {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(359deg, rgba(0,0,0,0.86) 17%, rgba(0,0,0,0.65) 35%, rgba(0,0,0,0.32) 67%, rgba(0,0,0,0) 100%);
    }

    #ads .hero-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
        pointer-events: none;
    }

    #ads .hero-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: clamp(34px,4.2vw,92px);
        text-align: center;
        padding: 0 18px;
    }

    #ads .hero-title {
        margin: 0;
        font-weight: 400;
        letter-spacing: -.02em;
        line-height: 1.08;
        font-size: 40px;
        text-shadow: 0 14px 34px rgba(0,0,0,.75);
        color: #ffffffd6;
        text-shadow: 2px 2px 4px #000000;
    }

        #ads .hero-title .accent {
            color: var(--orange);
            display: inline-block;
        }
.mr-30{
    margin-right:30px;
}
/* =========================================================
   25) LENIS / SCROLL UTILITIES
========================================================= */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* =========================================================
   26) OVERRIDES / COMPONENT EXTRAS
========================================================= */
[data-anim="up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.2s ease-out, opacity 1.2s ease-out;
}

    [data-anim="up"].is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.btn-get-started {
    background-color: var(--orange);
    color: #212121;
    border: 1px solid var(--orange);
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 500;
    transition: all .3s ease;
    text-decoration: none;
}

    .btn-get-started:hover {
        background-color: var(--orange);
        color: #212121;
        transform: translateY(-1px);
    }

    .btn-get-started:focus {
        box-shadow: 0 0 0 .25rem rgba(135,186,84,.35);
    }

.service-section {
    margin-top: 130px;
}

    .service-section .sp {
        width: 50%;
        text-align: center;
    }

    .service-section .hp {
        font-weight: 400;
        font-size: 50px;
    }

.service-sec p,
.service-sec ul li,
.service-sec ol li {
    font-size: 20px;
    color: #a9a9a9;
    font-family: "Montserrat", sans-serif;
}

.service-sec a {
    text-decoration: none;
    color: #ffffffbf;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.service-sec .spl {
    color: var(--orange) !important;
    font-weight: 500;
}

.service-sec a:hover {
    text-decoration: none;
    color: var(--orange);
}

.service-sec ul li,
.service-sec ol li {
    padding-bottom: 14px;
}

.service-sec p span {
    font-size: 22px;
    color: #ffffffbf;
}

.service-sec h3 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

.service-sec strong {
    color: #ffffffbf;
    font-weight: 500;
}

.service-sec ul li::marker,
.service-sec ol li::marker {
    color: #fff;
    font-size: 20px;
}

.acc-services p,
.acc-services ol li,
.acc-services ul li {
    font-size: 18px !important;
    font-weight: 400;
    color: #b7b5b5;
}

.mt-150 {
    margin-top: 150px !important;
    /*padding-bottom: 150px !important;*/
}

.do-list ul li {
    color: #888;
}

.do-list p strong {
    color: #c3bfbf;
}

.siva-forms {
    filter: brightness(0) invert(1);
    width: 150px;
    margin-left: 5px;
    margin-right: 1px;
    display: inline-block;
}

/* Modals + scroll lock */
#requestAnAppointmentModal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 34px;
    outline: 0;
    background-color: var(--blue-bg);
    padding: 20px;
}

#requestAnAppointmentModal .modal-title {
    font-weight: 400;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-size: 20px;
}

/* --- Blur the background when ANY Bootstrap modal is open --- */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.35);
}

    .modal-backdrop.show {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

/* Lock scroll behind modal (consolidated) */
html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100% !important;
}

body.modal-open {
    padding-right: var(--bs-scrollbar-width, 0px);
    overscroll-behavior: none;
    touch-action: none;
}

    body.modal-open #pageContent {
        overflow: hidden !important;
    }

body.scroll-lock {
    position: fixed;
    width: 100%;
    overflow: hidden !important;
    left: 0;
    right: 0;
}

.modal-header {
    border-bottom: 1px solid #ffffff2e;
}

.mtb-150 {
    margin: 150px 0px 100px 0px;
}

.g-recaptcha {
    transform: scale(1);
    transform-origin: 0 0;
}

/* Breadcrumbs */
.breadcrumb {
    padding: 0px 10px;
}

.breadcrumb-item a {
    color: #a9a9a9;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #a9a9a9;
}

/* Back to top (deduped to one final definition) */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
}

    .back-to-top i {
        background: rgba(0,0,0,.2) none repeat scroll 0 0;
        color: var(--white);
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 20px;
        padding: 0;
        text-shadow: 0 1px 2px rgba(0,0,0,.05);
        border-radius: 50%;
        text-align: center;
    }

.backToTopIsvisible .back-to-top {
    visibility: visible;
    opacity: 1;
}

.back-to-top:hover {
    opacity: 1;
    transition: opacity .3s;
}

    .back-to-top:hover i {
        background-color: var(--lightorange);
        color: var(--orange);
        border-radius: 50%;
        transition: opacity .3s;
    }

/* Fixed buttons */
.fixedbutton-whatsapp {
    position: fixed;
    bottom: 130px;
    left: 10px;
    animation-name: shake;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    z-index: 100;
    background: #128c7e !important;
    border-color: #128c7e !important;
    border-radius: 12px 12px 12px 0px !important;
}

.fixedbutton-call {
    position: fixed;
    bottom: 70px;
    left: 10px;
    animation-name: shake;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    z-index: 100;
    background: #F2355D !important;
    border-color: #F2355D !important;
    border-radius: 12px 12px 12px 0px !important;
}

@keyframes shake {
    0% {
        box-shadow: 0 0 0px -3px #000000;
    }

    50% {
        box-shadow: 0 0 10px 0px rgb(0 0 0 / 50%);
        transform: scale(1.15);
    }

    100% {
        box-shadow: 0 0 0px -3px #000000;
    }
}

/* =========================================================
   27) MEDIA QUERIES (ALL AT END) — merged duplicates only
========================================================= */

/* ---------- min-width containers (as provided) ---------- */
@media (min-width:576px) {
    .ads-container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .ads-container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .ads-container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .ads-container {
        max-width: 1140px;
    }
}

@media (min-width:1400px) {
    .ads-container {
        max-width: 1320px;
    }
}

/* ---------- (min-width:768px) and (max-width:1023px) ---------- */
@media (min-width:768px) and (max-width:1023px) {
    .showcase-wrap {
        margin-bottom: -159px;
    }
    #ads .hero-title {
        
        font-size: 30px;
    }
        .hero-overlay {
        bottom: 100px;
    }

    .showcase-wrap {
        min-height: 610px;
    }

    .watermark-track {
        height: 300px;
        font-weight: 500;
    }



    .ads-hero__line {
        font-size: clamp(2.1rem, 6.8vw, 5rem);
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .team {
        position: absolute;
        left: 50%;
        bottom: 160px;
        transform: translateX(-50%);
        width: min(871px, 80%);
        z-index: 2;
        pointer-events: none;
        user-select: none;
        will-change: transform;
    }
}
@media (min-width:992px) and (max-width:1023.98px) {
    .team {
        position: absolute;
        left: 50%;
        bottom: 110px;
        transform: translateX(-50%);
        width: min(871px, 80%);
        z-index: 2;
        pointer-events: none;
        user-select: none;
        will-change: transform;
    }
}
    /* ---------- <= 991.98px (merged) ---------- */
    @media (max-width: 991.98px) {
        .ag-glass-card {
            border-radius: 22px;
            padding: 28px 22px 24px;
            text-align: center;
            background: var(--blue-bg)45;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(238, 99, 47, 0.28);
            box-shadow: 0 28px 90px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.12);
        }

        .ag-bubble__num1 {
            color: #fff;
            font-weight: 500;
            letter-spacing: -0.03em;
            font-size: clamp(20px, 3.2vw, 44px);
            line-height: 1.1;
        }

        .ag-proof__wrap {
            --bsize: clamp(160px, 34vw, 210px);
            --overY: 26px;
            padding-top: calc(var(--bsize) * 2 - var(--overY) + 34px);
            min-height: auto;
            padding-bottom: 64px;
        }

        .ag-bubble {
            margin: 0 !important;
            width: var(--bsize);
            height: var(--bsize);
            --baseY: 0px;
        }

            .ag-bubble:nth-child(1) {
                z-index: 1;
                --tx: 14px;
                --ty: 0px;
            }

            .ag-bubble:nth-child(2) {
                z-index: 4;
                --tx: -14px;
                --ty: 0px;
            }

            .ag-bubble:nth-child(3) {
                z-index: 2;
                --tx: 14px;
                --ty: calc(var(--overY) * -1);
            }

            .ag-bubble:nth-child(4) {
                z-index: 3;
                --tx: -14px;
                --ty: calc(var(--overY) * -1);
            }

        .ag-proof__bottom {
            margin-top: 140px;
        }

        .site-header {
            padding: 12px 0;
        }

        .hero-sub {
            font-size: 13px;
        }

        .process-item {
            grid-template-columns: 170px 1fr;
            gap: 14px;
        }

        .process-num {
            font-size: clamp(56px,10vw,92px);
            padding-left: 10px;
        }

        .process-card {
            max-width: 100%;
        }

        .talk-form {
            margin-top: 8px;
        }

        .cs-wide-inner {
            grid-template-columns: 1fr;
        }

        .cs-wide-media, .cs-wide-content {
            min-height: 220px;
        }
    }

    /* ---------- <= 992px (pills section specific) ---------- */
    @media (max-width: 992px) {
        .text-overlay h1 {
            font-size: 4rem;
        }

        .revenue-card h2, .brand-card h2 {
            font-size: 5rem;
        }

        .image-container {
            height: 400px;
        }

        .revenue-card, .brand-card {
            min-height: 400px;
        }

        .values-card {
            min-height: 450px;
        }
    }

    /* ---------- <= 768px (pills section specific) ---------- */
    @media (max-width: 768px) {
        .main-container {
            padding: 30px 15px;
        }

        .text-overlay h1 {
            font-size: 3rem;
        }

        .text-overlay p {
            font-size: .9rem;
            letter-spacing: 2px;
        }

        .revenue-card h2, .brand-card h2 {
            font-size: 4rem;
        }

        .revenue-card, .brand-card {
            padding: 30px 25px;
            min-height: 350px;
        }

        .value-item {
            font-size: .7rem;
            padding: 8px 16px;
        }

        .image-container {
            height: 300px;
        }

        .search-bar {
            font-size: 1rem;
            padding: 10px 30px;
        }

        .values-card {
            min-height: 400px;
        }
    }

    /* ---------- <= 767.98px (merged duplicates) ---------- */
    @media (max-width: 767.98px) {
        .ag-modal-title{
            font-size:16px;
        }
        .service-sec .sub-title {
            text-align: center;
            font-size: 22px;
            margin-bottom: 20px;
        }
        .service-sec p span {
            font-size: 18px;
        }
            .service-sec h2{
            font-size:22px;
        }
        .ag-proof__bubbles {
            top: 110px;
            width: min(460px, 96vw);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            justify-items: center;
            align-items: center;
            padding: 0 12px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
            pointer-events: none;
        }

        .ag-proof {
            /*background-position: left;*/
            background-position-y: center;
            background-position-x: -460px;  
        }

        .img-fluidd {
            max-width: 90%;
            height: auto;
        }

        .service-card-1 {
            border-radius: 24px;
            padding: 10px;
            height: 100%;
        }

        .team {
            width: min(572px, 132%);
        }

        .watermark-wrapper {
            top: 32%;
        }

        .watermark-track span {
            font-size: 52px;
            font-weight: 500 !important;
        }

        .ads-hero__badge img {
            width: 130% !important;
            height: 130% !important;
            object-fit: contain;
            display: block;
            transform: rotate(16deg);
            margin-top: 12px;
        }

        .ag-proof__bottom {
            margin-top: 100px;
            padding: 20px;
        }

        .services-section {
            padding: 100px 0 50px;
            color: #fff;
        }

        .ag-logos {
            padding: 50px 0 50px;
        }

        .showcase-wrap {
            min-height: 385px;
        }

        .service-card h4, .service-card-1 h4 {
            margin-top: 20px;
            font-size: 20px;
            font-weight: 400;
        }

        .contact-title {
            margin-bottom: 1.75rem;
            margin-top: 145px;
        }

        .info-box {
            padding-inline: 1.1rem;
        }

        .talk-title {
            font-size: 100px;
        }

        #ads {
            margin: 100px 10px 0;
        }

            #ads .hero-title {
                font-size: 22px;
            }

        .about-copy {
            font-size: 18px;
        }

            .about-copy strong {
                font-weight: 400;
                color: var(--text);
            }

        .service-section .hp {
            font-size: 30px;
        }

        .service-section .sp {
            width: 100%;
            text-align: center;
        }

        .section-title {
            font-size: 32px;
        }

        .service-sec p {
            font-size: 16px;
        }
        .service-sec p, .service-sec ul li, .service-sec ol li {
            font-size: 16px;
         
        }

        /* Footer-muted duplicate moved here */
        .footer-muted {
            font-size: 11px;
        }
    }

    /* ---------- <= 576px (pills section specific) ---------- */
    @media (max-width: 576px) {
        .text-overlay h1 {
            font-size: 2.5rem;
        }

        .revenue-card h2, .brand-card h2 {
            font-size: 3rem;
        }

        .text-overlay {
            bottom: 20px;
            left: 20px;
        }
    }

    /* ---------- <= 575.98px (merged) ---------- */
    @media (max-width: 575.98px) {
        .hero-title {
            font-size: 46px;
        }

        .hl {
            border-radius: 14px;
        }

            .hl .megaphone {
                width: 40px;
                height: 40px;
            }

        .faq-shell + .faq-shell {
            margin-top: 14px;
        }

        .faq-icon {
            width: 44px;
            height: 44px;
        }

        .ag-logo-pill {
            height: 64px;
            min-width: 150px;
            border-radius: 22px;
        }

        .ag-marquee-brand:before, .ag-marquee-brand:after {
            width: 70px;
        }

        .ag-marquee__track {
            animation-duration: 30s;
        }

        .cs-metrics {
            grid-template-columns: 1fr;
        }

        .cs-tag {
            font-size: 12px;
        }

        .cs-meta-title {
            font-size: 20px;
        }

        .cs-metric-val {
            font-size: 50px;
            font-weight: 500;
        }

        .cs-metric-lbl {
            margin-bottom: 25px;
            font-weight: 300;
        }

        .cs-meta {
            padding: 30px 28px 10px;
        }

        .ag-card {
            padding: 22px 18px 16px;
            border-radius: 18px;
        }

        .ag-quote {
            font-size: 66px;
            top: 42px;
        }

        .ag-text {
            font-size: 14px;
        }

        .ag-marquee {
            border-radius: 18px;
        }

        .ag-watermark {
            color: #ffffff57;
            font-size: clamp(38px, 10vw, 150px);
        }

        .ag-wrap {
            top: -86px;
        }

        #ads .hero-shell {
            width: calc(100% - 20px);
        }

        #ads .hero-card {
            height: clamp(360px,82vw,560px);
            border-radius: 24px;
        }

        .timeline-rail, .timeline-hot {
            display: none;
        }

        .process-item {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 18px 0;
        }

        .process-num {
            padding-left: 0;
            font-size: clamp(52px,16vw,84px);
            opacity: .95;
        }

        .process-card {
            position: relative;
            border-radius: 22px;
            padding-left: 22px;
            max-width: 100%;
        }

            .process-card::before {
                content: "";
                position: absolute;
                left: 12px;
                top: 16px;
                bottom: 16px;
                width: 2px;
                border-radius: 999px;
                background: linear-gradient(to bottom, rgba(238,99,47,0), rgba(238,99,47,.55), rgba(238,99,47,0));
                opacity: .9;
            }

        .process-item + .process-item {
            margin-top: 18px;
        }

        .ag-faq-item + .ag-faq-item {
            margin-top: 14px;
        }

        .ag-faq-icon {
            width: 44px;
            height: 44px;
        }

        .ads-hero {
            padding: 44px 0 40px;
            min-height: auto;
        }

        .ads-hero__line {
            gap: .12em;
            line-height: 1.02;
        }

        .ads-hero__badge {
            translate: 0 .02em;
        }

        .ag-proof__wrap {
            --bsize: clamp(150px, 44vw, 205px);
            --overY: 28px;
            padding-top: calc(var(--bsize) * 2 - var(--overY) + 26px);
            padding-bottom: 58px;
        }

        .ag-bubble:nth-child(1) {
            --tx: 12px;
        }

        .ag-bubble:nth-child(2) {
            --tx: -14px;
            --ty: -50px;
        }

        .ag-bubble:nth-child(3) {
            --tx: -9px;
            --ty: calc(var(--overY) * 0);
        }

        .ag-bubble:nth-child(4) {
            --tx: -35px;
            --ty: calc(var(--overY) * -3);
        }
    }

    /* ---------- <= 375px ---------- */
    @media (max-width: 424px) {
        .ads-logo {
            width: 225px;
            /*margin:15px;*/
        }
    }

    @media (min-width: 424.98px) and (max-width: 767.98px) {
        .ads-logo {
            width: 250px;
            height: 80px;
        }
    }

    /* ---------- <= 360px ---------- */
    @media (max-width: 360px) {
        .process-card {
            padding: 16px 16px 16px 20px;
        }

        .step-pill {
            font-size: 11px;
        }
    }

    /* ---------- tablets (merged duplicates) ---------- */
    @media (min-width: 767.98px) and (max-width: 1023.98px) {
        .ag-proof__bubbles {
            top: 110px;
            width: min(460px, 96vw);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            justify-items: center;
            align-items: center;
        }

        .section-title {
            font-size: clamp(28px, -17.8vw, 42px);
        }

        .service-sec p, .service-sec ul li, .service-sec ol li {
            font-size: 18px;
        }

            .service-sec p span {
                font-size: 20px;
            }

        .service-sec h2 {
            font-size: 26px;
        }
    }

    /* ---------- desktop nav tweak ---------- */
    @media (min-width:992px) and (max-width:1439px) {
        .nav-pill a {
            text-decoration: none;
            font-family: "Zalando Sans Expanded", sans-serif;
            font-size: 11px;
            font-weight: 500;
            padding: 5px 8px;
            border-radius: 999px;
            color: rgba(255, 255, 255, .86);
            transition: .15s ease;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .ads-logo {
            width: 260px;
            height: 80px;
        }

        .nav-pill {
            margin-left: 30px;
        }
    }
    /* ---------- reduced motion (merged) ---------- */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: .001ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .001ms !important;
            scroll-behavior: auto !important;
        }

        .collapsing {
            transition: none !important;
        }

        .faq-icon svg,
        .ag-faq-icon svg,
        .ag-tab-btn,
        .ag-thumb-overlay {
            transition: none;
        }

        .ag-bubble {
            transform: none !important;
        }

        .ag-track {
            transform: translate3d(0,0,0) !important;
        }

        .timeline-hot,
        .process-num,
        .process-card {
            transition: none;
        }

        .ag-marquee__track {
            animation: none !important;
        }
    }
@media (min-width:1024px) and (max-width:1439.98px) {
    #ads .hero-title {
        font-size: 34px;
    }

}
    .g-recaptcha {
        transform: scale(0.85);
        -webkit-transform: scale(0.85);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

@media (min-width:992px) {
    .cs-card--offset {
        padding-top: 150px;
    }
}

.service-sec p b{
    font-weight:600;
}