:root {
    --navy: #0a0f1e;
    --navy-2: #111827;
    --navy-3: #1a2235;
    --navy-4: #243044;
    --ink: #303030;
    --ink-soft: #4A4A5E;
    --gold: #F4f4f4;
    --gold-light: #e8c97a;
    --gold-pale: #f5e8c0;
    --muted: #707085;
    --cream: #f7f3eb;
    --white: #ffffff;
    --slate: #8896a8;
    --slate-light: #b0bec8;
    --linear-gradient: linear-gradient(90deg, #2881db, #a230dd, #cf15e2, #f15a22, #ffcb05);
    --red-accent: #e05b4b;
    --green-accent: #2dbd8f;
    --border: rgba(201, 168, 76, 0.18);
    --border-light: rgba(255, 255, 255, 0.07);
    --font-display: "Graphik", "Montserrat", sans-serif;
    --font-body: "Graphik", "Montserrat", sans-serif;
    --font-mono: "Graphik", "Montserrat", sans-serif;
    --line: #EAE2F2;
    --transparent: transparent;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a:focus,
button:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    scroll-margin-top: 100px;
}

@media (max-width:768px) {
    .menu-icon {
        margin-top: 20px !important;
    }

    #abhi {
        top: -28px;
    }
}

@media (min-width:768px) and (max-width:1100px) {
    #abhi {
        top: -33px;
    }

}

@media (min-width:1100px) {
    #abhi {
        top: -36px;
    }
}



.main-container {
    background-image: url(../../../../images/top-Bg-new.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    overflow: hidden;
}

h2 {
    color: var(--ink);
}

h3 {
    -webkit-text-stroke-width: 0;
}

.section-head {
    margin-bottom: 64px;
}

.section-head .main-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 14px;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 24px;
}

.section-head .sub-heading {
    font-size: 18px;
    color: var(--ink);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.internal-page-detail-gradient-1,
.internal-page-detail-gradient-2 {
    background: url(../../../../images/backgrounds/gradients/hm-blobby-5.png);
    width: 74.9375rem;
    height: 39.5625rem;
    right: 0;
    top: 35rem;
    left: 0;
    margin: 0 auto;
    opacity: 0.4;
}

.sec-gradient {
    position: absolute;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.services .internal-page-detail-gradient-1,
.faq .internal-page-detail-gradient-1 {
    right: 42rem;
    top: -17rem;
    left: unset;

}

.kpis .internal-page-detail-gradient-1,
.services .internal-page-detail-gradient-2,
.pain .internal-page-detail-gradient-1,
.case-study .internal-page-detail-gradient-2 {

    right: -22%;
    top: 66%;
    left: unset;

}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
}

.gold {
    color: var(--linear-gradient);
}

.slate {
    color: var(--slate);
}

.tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--linear-gradient);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 2px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.12);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ─── HERO ─── */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 165px 32px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26, 34, 53, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-form {
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    background: #fff;
    box-shadow: 0 16px 48px rgba(74, 19, 112, 0.12);
    border: 1px solid #EAE2F2;

}

.hero-form h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 18px;
}

.hero-form .form-note {
    font-size: 11px;
    color: var(--slate);
    margin-top: 18px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 45px);
    font-weight: 600;
    line-height: clamp(40px, 7vw, 48px);
    color: var(--ink);
    margin-bottom: 28px;
    max-width: 840px;
    animation: fadeUp 0.9s ease 0.3s both;
}

.gradient-text {
    background: var(--linear-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--ink);
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 16px;
    animation: fadeUp 0.9s ease 0.5s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease 0.65s both;
}

.btn-primary {
    background: var(--linear-gradient);
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse-gold 3s ease 2s infinite;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    padding: 16px 32px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--linear-gradient);
    color: var(--linear-gradient);
    background: rgba(201, 168, 76, 0.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    animation: fadeUp 0.9s ease 0.8s both;
}

.hero-stat {
    display: flex;
    gap: 14px;
    align-items: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--linear-gradient);
    line-height: 1;
}

.hero-stat-label {
    font-size: 18px;
    color: #303030;
    line-height: 28px;
    font-weight: 400;
}

.hero-stat-icon svg {
    width: 24px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/*logo slider */
.logo-bar {
    padding: 36px 0;
}

.logo-bar-caption {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 10px 0;
    justify-content: center;
}

.logo-bar .section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 640px;
    margin: 0 auto 16px;
    text-align: center;
}

.logo-row .brand {
    width: 210px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 18px;
    transition:
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

    flex-shrink: 0;
}

.logo-row .brand img {
    max-width: 130px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile */
@media (max-width:768px) {

    .logo-row {
        gap: 14px;
    }
    .logo-row .brand {
        width: 150px;
        height: 100px;
        border-radius: 14px;
    }
    .logo-row .brand img {
        max-width: 95px;
        max-height: 50px;
    }

}

/* ─── PAIN POINTS ─── */
.pain {
    padding: 70px 0;
    background: var(--transparent);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pain-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--linear-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pain-card:hover::before {
    transform: scaleX(1);
}

.pain-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.pain-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--muted);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pain-card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
}

/* ─── CHANNELS ─── */
.channels {
    padding: 70px 0;
}

.channels h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.channels>.container>p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 60px;
}

.channel-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    border: 0;
    background: transparent;
}

.channel-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    min-height: 420px;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06),
        0 2px 8px rgba(0, 0, 0, .04);

    transition: all .35s ease;
}

.ch-name {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.05;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    z-index: 2;
}

.ch-desc {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--ink);
    position: relative;
    z-index: 2;
}

@media(max-width:1024px) {

    .channel-table {
        grid-template-columns: repeat(2, 1fr);
    }

    .ch-name {
        font-size: 28px;
    }
}

@media(max-width:768px) {

    .channel-table {
        grid-template-columns: 1fr;
    }

    .channel-row {
        min-height: auto;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .ch-name {
        font-size: 25px;
    }

    .ch-desc {
        font-size: 16px;
    }
}

/* ─── SERVICES ─── */
.services {
    padding: 70px 0;
}

.services h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.services>.container>p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 56px;
}

.services-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0;
}

.stab {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate);
    padding: 10px 20px;
    letter-spacing: .03rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    margin-bottom: -1px;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
}

.stab:hover {
    color: var(--ink);
}

.stab.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.service-panel {
    display: none;
}

.service-panel.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .04);
    transition: border-color 0.2s, background 0.2s;
}

.service-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    height: auto;
    width: 35px;
}

.service-item p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.service-item strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}

/* ─── KPIs ─── */
.kpis {
    padding: 70px 0;

}

.kpis h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.kpis>.container>p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 56px;
}

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

.kpi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--linear-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.kpi-card:hover::before {
    transform: scaleX(1);
}

.kpi-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.kpi-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 12px;
    font-weight: 500;
}

.kpi-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--ink);
}

.kpi-card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ─── CASE STUDY ─── */

.case-study {
    padding: 70px 0;
}

.case-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 36px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    box-shadow: 0 4px 24px rgba(26, 26, 46, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-brand {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-brand .name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    font-size: 20px;
    margin-bottom: 4px;
}

.case-brand .industry {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.case-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.case-stat {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px;
}

.case-stat .delta {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1;
    background: var(--linear-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-stat .label {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.case-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.case-detail strong {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.case-quote {
    margin-top: 24px;
    padding: 16px 20px;
    border-left: 3px solid var(--muted);
    border-radius: 4px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* Responsive grid stack for mobile/tablets */
@media (max-width: 900px) {
    .case-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    .case-meta {
        grid-template-columns: 1fr;
    }
    .case-detail {
        grid-template-columns: 1fr;
    }
}

/* ─── BOTTOM CTA ─── */
.bottom-cta {
    padding: 70px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bottom-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.05);
    text-align: center;
    border: 1px solid var(--line);

}

.bottom-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-align: center;
}

.bottom-cta p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* ─── Glowing Gradient Button ─── */
.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    margin-top: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 999px;
    background: var(--linear-gradient);
    z-index: 1;
    transition: transform 0.2s ease;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}

/* ─── FAQ ─── */
.faq {
    padding: 70px 0;
}

.faq h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.faq>.container-narrow>p {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 56px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: var(--white);
}

.faq-item.open {
    border-color: var(--gold);
}

.faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.faq-q:hover {
    background: var(--gold);
}

.faq-q span {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a-inner {
    padding: 8px 28px 28px;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.faq-a-inner p {
    font-size: 16px;
    color: var(--ink);
    font-weight: 300;
    line-height: 1.8;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 70px 0;
    border-top: 1px solid var(--border-light);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 700px;
}

.cta-section h2 em {
    color: var(--linear-gradient);
    font-style: italic;
}

.cta-section>.container>p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.75;
}

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

.cta-card {
    background: var(--navy-3);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.cta-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.cta-card.featured {
    border-color: var(--linear-gradient);
    background: linear-gradient(145deg, var(--navy-3), rgba(201, 168, 76, 0.05));
}

.cta-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -1px;
    left: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    background: var(--linear-gradient);
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 0 0 3px 3px;
    font-weight: 600;
}

.cta-tier {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.cta-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    flex-grow: 1;
}

.cta-card .btn-primary,
.cta-card .btn-secondary {
    display: block;
    text-align: center;
    padding: 13px 24px;
    font-size: 14px;
}

/* ─── FORM ─── */
.audit-form {
    padding: 70px 0;
    border-top: 1px solid var(--border-light);
}
.audit-form-inner {
    margin: 0 auto;
    text-align: center;
    scroll-margin-top: 100px;
}

.audit-form h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.audit-form-inner .sub-heading {
    color: var(--muted);
}

.audit-form>.audit-form-inner>p {
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 40px;
}


.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
    opacity: 0.9;
    text-align: center;
    background: rgb(0, 0, 0, 0.7);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
    text-align: left;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    background: var(--white);
    border-radius: 3px;
    padding: 9px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--line);
    color: #6d6d6d;
    transition: border 0.15s, box-shadow 0.15s;
}

.form-group input::placeholder {
    color: #8f8f8f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--linear-gradient);
}

/* ─── CUSTOM MULTI-SELECT ─── */
.custom-multi-select {
    position: relative;
    width: 100%;
}
.select-box {
    position: relative;
    width: 100%;
}

.select-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;

}
.select-trigger {
    background: var(--white);
    border-radius: 3px;
    padding: 9px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid var(--line);
    color: #6d6d6d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.select-box.open .select-trigger {
    border-color: var(--gold, #c9a84c);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.select-box.open .dropdown-arrow {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
    max-height: 240px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    flex-direction: column;
}

.select-box.open .select-dropdown {
    display: flex;
}

.select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.select-dropdown::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 4px;
}
.option-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-soft);
    cursor: pointer;
    transition: background 0.2s;
}

.option-item:hover {
    background: var(--cream);
}

.option-item input[type="checkbox"] {
    display: none;
}

.checkbox-box {
    width: 16px;
    height: 16px;
    border: 1px solid var(--slate-light);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}
.option-item input[type="checkbox"]:checked+.checkbox-box {
    background: var(--linear-gradient);
    border-color: transparent;
}
.option-item input[type="checkbox"]:checked+.checkbox-box::after {
    content: "✓";
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
}
.form-group textarea {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 9px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #8f8f8f;
    outline: none;
    resize: none;
    max-height: 70px;
    width: 100%;
    transition: border 0.15s, box-shadow 0.15s;
    line-height: 1.6;
}
.form-group textarea::placeholder {
    color: #8f8f8f;
}
.form-submit {
    width: 100%;
    background: var(--linear-gradient);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    margin-top: 6px;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error,
.select-box.error .select-trigger {
    border-color: red !important;
    box-shadow: 0 0 0 3px rgba(224, 91, 75, 0.10);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid,
.select-box.valid .select-trigger {
    border-color: #2dbd8f !important;
    box-shadow: 0 0 0 3px rgba(45, 189, 143, 0.10);
}

.field-error {
    font-size: 11.5px;
    color: red;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: errFade 0.18s ease;
}

.field-error::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e05b4b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center/contain no-repeat;
}

@keyframes errFade {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .nav-cta.mobile {
        display: inline-block;
    }
    .bottom-cta,
    .faq,
    .case-study,
    .kpis,
    .services {
        padding: 50px 0px;
    }

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .channel-head,
    .channel-row {
        grid-template-columns: 1fr;
    }

    .channel-head {
        display: none;
    }

    .ch-tag {
        margin-top: 8px;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .service-panel.active {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
    }

    .cs-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cs-results {
        gap: 28px;
    }

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

    .nav-wrapper {
        padding: 15px 0;
    }

    .sticky-bar p {
        text-align: center;
    }

    .services-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-tabs::-webkit-scrollbar {
        display: none;
    }

    .stab {
        padding: 10px 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .nav-cta.mobile {
        display: inline-block;
    }

    .sticky-bar p {
        text-align: center;
    }


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

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


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

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

    .hero-stats {
        gap: 13px;
    }

    .cs-body,
    .cs-header {
        padding: 28px;
    }

    .container-narrow {
        padding: 0 20px;
    }

    nav {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0px 60px;
    }

    .sticky-bar {
        flex-direction: column;
        gap: 10px;
        padding: 16px 20px;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .services-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-tabs::-webkit-scrollbar {
        display: none;
    }

    .stab {
        padding: 10px 16px;
        flex-shrink: 0;
    }
}

@media (max-width:768px) {
    .hero h1 {
        margin-bottom: 15px;
    }

    .hero-row {
        row-gap: 30px;
    }
    .logo-bar,
    .pain,
    .channels,
    .bottom-cta,
    .faq,
    .case-study,
    .kpis,
    .services {
        padding: 40px 0;
    }
}