/* ================================================================
   SEOAD — COMPLETE RESPONSIVE STYLESHEET (REVISED)
   Typography: Poppins (body) + all paragraphs black, consistent weight/size
   Icons: Font Awesome (no emoji replacements)
   Spacing: uniform section padding
   Breakpoints: xs <480 | sm 480-575 | md 576-767 | lg 768-991 | xl 992-1199 | xxl 1200+
================================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

/* ── CSS Variables ── */
:root {
    --color-red: #e3362e;
    --color-green: #86b413;
    --color-dark: #0f172a;
    --color-body: #000000;
    --color-muted: #64748b;
    --color-border: #e8e8e8;
    --color-bg: #ffffff;
    --color-bg-soft: #f7f8fa;

    --font-main: "Poppins", sans-serif;

    --para-size: 17px;
    --para-weight: 600;
    --para-line: 1.8;
    --para-color: #000000;

    --section-pad: 45px;
    --section-pad-sm: 50px;
    --section-pad-xs: 20px;

    --radius-card: 16px;
    --radius-btn: 1px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.13);
    --transition: 0.25s ease;

    /* Mobile nav pastel purple palette */
    --nav-mob-bg: #f8f4ff;
    --nav-mob-border: #e4d9f7;
    --nav-mob-accent: #7c3aed;
    --nav-mob-accent-dark: #6d28d9;
    --nav-mob-light: #ede9fe;
    --nav-mob-lighter: #f3eeff;
    --nav-mob-text: #1a1a2e;
    --nav-mob-muted: #6b5e9e;
    --nav-mob-pill: #c4b5fd;
}

/* ================================================================
   RESET & BASE
================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: var(--color-red);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Universal paragraph rule ── */
p,
.ds-content p,
.digi-why-right > p,
.why-works-left > p,
.wwc-body p,
.testi-text,
.stab-card-body p,
.panel-intro p,
.section-head p,
.footer-tagline {
    color: var(--para-color) !important;
    font-size: var(--para-size) !important;
    font-weight: var(--para-weight) !important;
    line-height: var(--para-line) !important;
    font-family: var(--font-main) !important;
}

/* ================================================================
   UTILITIES
================================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.pb-120 {
    padding-bottom: var(--section-pad);
    padding-top: 24px;
}

/* ================================================================
   HEADER
================================================================ */
.main-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}
.sticky-header {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}
.logo {
    max-height: 50px;
    width: auto;
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #27500a;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(134, 180, 19, 0.3);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-enquiry:hover {
    background: #27500a;
    box-shadow: 0 12px 24px rgba(134, 180, 19, 0.4);
    transform: translateY(-2px);
    color: #fff !important;
}
.btn-enquiry i {
    font-size: 0.8rem;
}

.btn-enquiry-mobile {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--color-green);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(134, 180, 19, 0.3);
    transition: background var(--transition);
    margin-bottom: 8px;
}
.btn-enquiry-mobile:hover {
    background: #739a10;
    color: #fff !important;
}

/* ================================================================
   NAVBAR — DESKTOP
================================================================ */
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}
.navbar-toggler i {
    font-size: 28px;
    color: #111;
}
.main-menu {
    gap: 10px;
    margin-right: 20px;
}
.main-menu .nav-item {
    position: relative;
}
.main-menu .nav-link {
    font-size: 17px;
    font-weight: 700;
    color: #000 !important;
    padding: 14px 18px !important;
    border-radius: 14px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    font-family: var(--font-main);
}
.nav-link.active,
.nav-link:hover {
    background: #decaf1;
    color: #fff;
}
@keyframes rainbowGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.home-link {
    background: transparent;
    color: #000 !important;
    width: auto;
    height: auto;
    border-radius: 14px;
    font-size: 17px;
    padding: 14px 18px !important;
    transition: all var(--transition);
}
.home-link i {
    color: inherit !important;
}
.home-link:hover,
.home-link.active {
    background: var(--color-green);
    color: #fff !important;
}
.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}
.dropdown-menu {
    border: none !important;
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}
.custom-dropdown {
    min-width: 280px;
    padding: 12px !important;
    border-radius: 20px !important;
}
.nav-item.dropdown:not(.mega-menu) {
    position: relative;
}
.nav-item.dropdown:not(.mega-menu) .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 12px;
}
.custom-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    margin-bottom: 6px;
    transition: all var(--transition);
    background: transparent;
    border: 1px solid transparent;
}
.custom-dropdown .dropdown-item:last-child {
    margin-bottom: 0;
}
.custom-dropdown .dropdown-item:hover {
    background: #fdf2f2;
    border-color: #f9c5c3;
    padding-left: 20px;
}
.dd-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #fff0ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-red);
    transition: all var(--transition);
}
.custom-dropdown .dropdown-item:hover .dd-icon {
    background: var(--color-red);
    color: #fff;
}
.dd-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dd-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}
.dd-text small {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    line-height: 1.3;
}
.custom-dropdown .dropdown-item:hover .dd-text strong {
    color: var(--color-red);
}

/* ── Mega Menu ── */
.mega-menu {
    position: static;
}
.mega-dropdown {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    margin-top: 18px;
    padding: 0 !important;
    border: none !important;
    border-top: 4px solid var(--color-green) !important;
    border-radius: 0 0 24px 24px !important;
    overflow: hidden;
    background: #fff;
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: #fff;
    gap: 0;
}
.mega-column {
    padding: 28px 24px;
    border-right: 1px solid #ececec;
    height: 100%;
}
.mega-column:last-child {
    border-right: none;
}
.mega-column h5 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #000000;
    background: #dec8f4;
    padding: 8px 10px;
    margin: -14px -12px 10px -12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-bottom: 3px solid #e53935;
}
.mega-column h5 .text-muted {
    font-size: 11px;
    color: #000000 !important;
    text-transform: none;
}
.mega-column a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    padding: 7px 10px;
    border-radius: 10px;
    transition: all var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}
.mega-column a i {
    font-size: 13px;
    color: var(--color-red);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.mega-column a:hover {
    color: var(--color-red);
    background: #fdf2f2;
    border-color: #f9c5c3;
    transform: translateX(4px);
}
.mega-column a:hover i {
    color: var(--color-red);
}

/* Desktop hover */
@media (min-width: 1200px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all var(--transition);
    }
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.mobile-menu-btn {
    display: none;
}

@media (max-width: 1199px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: 0;
        font-size: 26px;
    }

    .mobile-drawer {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #ffffff !important;
        z-index: 999999 !important;
        transform: translateX(-100%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.35s ease !important;
        will-change: transform;
        box-shadow: none !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .mobile-drawer.show {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .drawer-header {
        height: 74px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9;
    }

    .drawer-header button {
        border: 0;
        background: none;
        font-size: 20px;
    }

    #drawerBack {
        display: none;
    }

    .drawer-page {
        display: none;
        padding: 20px;
        overflow-y: auto;
        flex: 1;
        -webkit-overflow-scrolling: touch;
    }

    .drawer-page.active {
        display: flex;
        flex-direction: column;
    }

    .navbar-collapse {
        display: none !important;
    }
}
/* ================================================================
   HERO SLIDER — hero-slider.css  v4  (fixed)
================================================================ */
.digi-hero-slider *,
.digi-hero-slider *::before,
.digi-hero-slider *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.digi-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;
    background: var(--ds-bg, #eff6ff);
    transition: background 0.6s ease;
    display: flex;
    flex-direction: column;
}

/* ── TRACK & SLIDES ─────────────────────────────────────────── */
/*  FIX #1 & #2: track must be 600% wide (6 slides × 100vw).   */
/*  Each slide is exactly 1/6 of the track = one viewport width. */
/* Change this */
.digi-slider-track {
    display: flex;
    width: 600%; /* 6 slides */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.digi-slide {
    width: calc(100% / 6);
    min-width: calc(100% / 6);
    flex-shrink: 0;
    overflow: hidden;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.ds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    overflow: hidden;
}

/* ── ROW / CONTENT / IMAGE ──────────────────────────────────── */
.ds-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0 16px;
    gap: 0;
    width: 100%;
}

.ds-content {
    order: 1;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 14px;
    overflow: hidden;
}

.ds-img {
    order: 2;
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

/* Image entrance */
.digi-slide .ds-img {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.5s ease 0.1s,
        transform 0.5s ease 0.1s;
}
.digi-slide.ds-active .ds-img {
    opacity: 1;
    transform: translateY(0);
}

.ds-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* ── PER-THEME IMAGE ANIMATIONS ─────────────────────────────── */
[data-theme="aeo"].ds-active .ds-img img {
    animation: robotBounce 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.12s both;
}
@keyframes robotBounce {
    0% {
        transform: translateY(0) scale(1);
    }
    20% {
        transform: translateY(-14px) scale(1.03);
    }
    40% {
        transform: translateY(0) scale(0.98);
    }
    55% {
        transform: translateY(-6px) scale(1.01);
    }
    70% {
        transform: translateY(0) scale(1);
    }
    85% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

[data-theme="geo"].ds-active .ds-img img {
    animation: orbitIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes orbitIn {
    0% {
        transform: rotate(-6deg) scale(0.9);
    }
    60% {
        transform: rotate(2deg) scale(1.02);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

[data-theme="seo"].ds-active .ds-img img {
    animation: magnify 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes magnify {
    0% {
        transform: scale(0.82);
    }
    70% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

[data-theme="smm"].ds-active .ds-img img {
    animation: socialWiggle 0.75s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.1s both;
}
@keyframes socialWiggle {
    0% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-10px);
    }
    35% {
        transform: translateX(8px);
    }
    55% {
        transform: translateX(-5px);
    }
    70% {
        transform: translateX(3px);
    }
    85% {
        transform: translateX(-2px);
    }
    100% {
        transform: translateX(0);
    }
}

[data-theme="mkt"].ds-active .ds-img img {
    animation: flyIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes flyIn {
    0% {
        transform: translateX(-36px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

[data-theme="ppc"].ds-active .ds-img img {
    animation: coinFlip 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes coinFlip {
    0% {
        transform: rotateY(90deg) scale(0.85);
    }
    60% {
        transform: rotateY(-8deg) scale(1.02);
    }
    100% {
        transform: rotateY(0deg) scale(1);
    }
}

/* ── FLOATING CARDS ─────────────────────────────────────────── */
/*  FIX #5: constrain max-width safely and ensure text wrapper. */
.fc {
    position: absolute;
    background: #fff;
    border-radius: 9px;
    padding: 6px 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    z-index: 4;
    min-width: 0;
    max-width: calc(50% - 16px);
    opacity: 0;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.fc-tl {
    top: 8px;
    left: 8px;
    transform: translate(-8px, -8px);
}
.fc-br {
    bottom: 8px;
    right: 8px;
    transform: translate(8px, 8px);
}

.digi-slide.ds-active .fc-tl {
    opacity: 1;
    transform: translate(0, 0);
    transition-delay: 0.38s;
}
.digi-slide.ds-active .fc-br {
    opacity: 1;
    transform: translate(0, 0);
    transition-delay: 0.52s;
}

/* Floating card loop animations */
[data-theme="aeo"].ds-active .fc-tl {
    animation: fcJump 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite 0.9s;
}
[data-theme="aeo"].ds-active .fc-br {
    animation: fcFloat 3.2s ease-in-out infinite 1.4s;
}
@keyframes fcJump {
    0%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    65% {
        transform: translateY(-3px);
    }
    80% {
        transform: translateY(0);
    }
}

[data-theme="geo"].ds-active .fc-tl {
    animation: fcOrbit 4s ease-in-out infinite 0.9s;
}
[data-theme="geo"].ds-active .fc-br {
    animation: fcOrbit 4s ease-in-out infinite 2.2s;
}
@keyframes fcOrbit {
    0%,
    100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(3px, -4px);
    }
    50% {
        transform: translate(0, -7px);
    }
    75% {
        transform: translate(-3px, -4px);
    }
}

[data-theme="seo"].ds-active .fc-tl {
    animation: fcPulse 2s ease-in-out infinite 0.9s;
}
[data-theme="seo"].ds-active .fc-br {
    animation: fcFloat 3s ease-in-out infinite 1.6s;
}
@keyframes fcPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
}

[data-theme="smm"].ds-active .fc-tl {
    animation: fcBounce 2.4s ease-in-out infinite 0.9s;
}
[data-theme="smm"].ds-active .fc-br {
    animation: fcBounce 2.4s ease-in-out infinite 1.8s;
}
@keyframes fcBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    40%,
    60% {
        transform: translateY(-6px);
    }
}

[data-theme="mkt"].ds-active .fc-tl {
    animation: fcFloat 3s ease-in-out infinite 0.9s;
}
[data-theme="mkt"].ds-active .fc-br {
    animation: fcFloat 3s ease-in-out infinite 2s;
}

[data-theme="ppc"].ds-active .fc-tl {
    animation: fcCoin 2.5s ease-in-out infinite 0.9s;
}
[data-theme="ppc"].ds-active .fc-br {
    animation: fcFloat 3.5s ease-in-out infinite 1.8s;
}
@keyframes fcCoin {
    0%,
    100% {
        transform: rotateY(0);
    }
    40% {
        transform: rotateY(18deg);
    }
    60% {
        transform: rotateY(-9deg);
    }
}

@keyframes fcFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.fc-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    background: var(--ds-icon-bg);
    color: var(--ds-accent);
    transition:
        background 0.4s,
        color 0.4s;
}

/* FIX #6: .fc-text wrapper was missing in original HTML — styles now target it */
.fc-text {
    min-width: 0;
    overflow: hidden;
}

.fc-val {
    font-size: 10px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fc-lbl {
    font-size: 8.5px;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fc-up {
    color: #22c55e;
    font-size: 9px;
}
.fc-dn {
    color: #22c55e;
    font-size: 9px;
}

/* ── H1 ─────────────────────────────────────────────────────── */
.ds-content h1 {
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.22;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}
.ds-content h1 .hl {
    color: var(--ds-accent);
    transition: color 0.4s;
}

/* ── TAG ────────────────────────────────────────────────────── */
.ds-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    margin-bottom: 8px;
    background: var(--ds-tag-bg);
    color: var(--ds-tag-color);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.4s,
        color 0.4s;
}
.ds-tag i {
    font-size: 9px;
}
.digi-slide.ds-active .ds-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

/* ── CONTENT FADE-UP ────────────────────────────────────────── */
.ds-content h1,
.ds-pills,
.ds-btns {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.38s ease,
        transform 0.38s ease;
}
.digi-slide.ds-active .ds-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.digi-slide.ds-active .ds-pills {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}
.digi-slide.ds-active .ds-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.26s;
}

/* ── PILLS ──────────────────────────────────────────────────── */
.ds-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 14px;
    max-width: 100%;
    overflow: hidden;
}
.ds-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9.5px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 20px;
    background: var(--ds-pill-bg);
    color: var(--ds-pill-color);
    border: 1px solid var(--ds-pill-border);
    transition:
        background 0.4s,
        color 0.4s,
        border-color 0.4s;
    white-space: nowrap;
    flex-shrink: 0;
}
.ds-pill i {
    font-size: 9px;
}

/* ── PREMIUM BUTTON ─────────────────────────────────────────── */
.ds-btns {
    display: flex;
    justify-content: center;
    margin: 4px 0 14px;
}
.ds-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 155px;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    background: var(--ds-accent);
    background: linear-gradient(135deg, var(--ds-accent) 0%, color-mix(in srgb, var(--ds-accent) 82%, #000) 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px -4px var(--ds-accent-shadow, rgba(0, 0, 0, 0.28)),
                0 2px 6px -1px rgba(0, 0, 0, 0.08),
                inset 0 1px 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.25s ease,
                background 0.4s ease;
}
.ds-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-22deg);
    transition: 0.6s ease;
    pointer-events: none;
}
.ds-btn-primary:hover::before {
    left: 140%;
}
.ds-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px -4px var(--ds-accent-shadow, rgba(0, 0, 0, 0.35)),
                0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
}
.ds-btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 14px var(--ds-accent-shadow, rgba(0, 0, 0, 0.2));
}
.ds-btn-primary i {
    font-size: 13px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ds-btn-primary:hover i {
    transform: translateX(5px);
}

/* ── NAV ARROWS ─────────────────────────────────────────────── */
/*  FIX #4: unified base — no conflicting bottom values.        */
.ds-nav {
    position: absolute;
    z-index: 20;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.13);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #374151;
    transition:
        background 0.22s,
        color 0.22s,
        transform 0.2s;
    /* mobile: vertically centred over image area */
    top: auto;
    bottom: 148px;
    transform: none;
}
.ds-nav:hover {
    background: var(--ds-accent);
    color: #fff;
}
.ds-nav.prev {
    left: 16px;
}
.ds-nav.next {
    right: 16px;
}

/* ── DOTS ───────────────────────────────────────────────────── */
.ds-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 12px 0 16px;
}
.ds-dot {
    width: 7px;
    height: 7px;
    border-radius: 4px;
    border: none;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-dot.active {
    width: 22px;
    background: var(--ds-accent);
}

/* ── ≤360px ─────────────────────────────────────────────────── */
@media (max-width: 360px) {
    .ds-container {
        padding: 0 10px;
    }
    .ds-row {
        padding: 16px 0 12px;
    }
    .ds-content h1 {
        font-size: 25px;
        margin-bottom: 14px;
    }
    .ds-tag {
        font-size: 8px;
        padding: 3px 9px;
    }
    .ds-pills {
        gap: 4px;
        margin-bottom: 10px;
    }
    .ds-pill {
        font-size: 8.5px;
        padding: 3px 7px;
    }
    .ds-img {
        height: 175px;
        border-radius: 11px;
    }
    .ds-img img {
        border-radius: 11px;
    }
    .fc {
        padding: 4px 7px;
        gap: 5px;
        border-radius: 7px;
        max-width: calc(50% - 12px);
    }
    .fc-tl {
        top: 6px;
        left: 6px;
    }
    .fc-br {
        bottom: 6px;
        right: 6px;
    }
    .fc-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
        border-radius: 5px;
    }
    .fc-val {
        font-size: 9px;
    }
    .fc-lbl {
        font-size: 7.5px;
    }

    /* ✅ FIXED: elegant button on tiny screens */
    .ds-btn-primary {
        font-size: 13px;
        padding: 8px 18px;
        width: auto;
        min-width: 140px;
        border-radius: 8px;
    }

    .ds-nav {
        width: 26px;
        height: 26px;
        font-size: 10px;
        bottom: 134px;
    }
    .ds-nav.prev {
        left: 10px;
    }
    .ds-nav.next {
        right: 10px;
    }
}

/* ── 361–480px ──────────────────────────────────────────────── */
@media (min-width: 361px) and (max-width: 480px) {
    .ds-container {
        padding: 0 14px;
    }
    .ds-row {
        padding: 18px 0 14px;
    }
    .ds-content h1 {
        font-size: clamp(28px, 8vw, 36px);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .ds-img {
        height: 195px;
    }
    .fc {
        max-width: calc(50% - 14px);
    }
    .fc-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    .fc-val {
        font-size: 9.5px;
    }
    .fc-lbl {
        font-size: 8px;
    }

    /* ✅ FIXED: elegant button */
    .ds-btn-primary {
        width: auto;
        min-width: 145px;
        padding: 9px 22px;
        font-size: 13.5px;
        border-radius: 8px;
    }

    .ds-nav {
        bottom: 148px;
    }
    .ds-nav.prev {
        left: 14px;
    }
    .ds-nav.next {
        right: 14px;
    }
}

/* ── 481–639px ──────────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 639px) {
    .ds-container {
        padding: 0 18px;
    }
    .ds-row {
        padding: 20px 0 16px;
    }
    .ds-content h1 {
        font-size: 35px;
        margin-bottom: 13px;
    }
    .ds-tag {
        font-size: 10px;
        padding: 4px 12px;
    }
    .ds-pills {
        gap: 5px;
        margin-bottom: 13px;
    }
    .ds-pill {
        font-size: 10px;
        padding: 4px 10px;
    }
    .ds-img {
        height: 215px;
        border-radius: 8px;
    }
    .ds-img img {
        border-radius: 8px;
    }
    .fc {
        padding: 6px 9px;
        gap: 7px;
        border-radius: 8px;
        max-width: calc(50% - 16px);
    }
    .fc-tl {
        top: 8px;
        left: 8px;
    }
    .fc-br {
        bottom: 8px;
        right: 8px;
    }
    .fc-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 7px;
    }
    .fc-val {
        font-size: 10px;
    }
    .fc-lbl {
        font-size: 8.5px;
    }

    /* ✅ FIXED: elegant button */
    .ds-btn-primary {
        width: auto;
        min-width: 150px;
        padding: 10px 24px;
        border-radius: 8px;
    }

    .ds-nav {
        width: 30px;
        height: 30px;
        font-size: 11px;
        bottom: 158px;
    }
    .ds-nav.prev {
        left: 18px;
    }
    .ds-nav.next {
        right: 18px;
    }
}

/* ── 640px+ (tablet) ────────────────────────────────────────── */
@media (min-width: 640px) {
    .ds-container {
        padding: 0 28px;
    }
    .ds-row {
        flex-direction: column;
        padding: 36px 0 24px;
    }
    .ds-content {
        order: 1;
        margin-bottom: 18px;
    }
    .ds-img {
        order: 2;
        height: 280px;
        border-radius: 18px;
        overflow: hidden;
    }
    .ds-img img {
        border-radius: 18px;
    }
    .fc {
        padding: 9px 13px;
        border-radius: 11px;
        gap: 9px;
        max-width: calc(50% - 20px);
    }
    .fc-tl {
        top: 12px;
        left: 12px;
    }
    .fc-br {
        bottom: 12px;
        right: 12px;
    }
    .fc-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 9px;
    }
    .fc-val {
        font-size: 12px;
    }
    .fc-lbl {
        font-size: 10px;
    }
    .ds-content h1 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    .ds-tag {
        font-size: 10px;
        padding: 5px 13px;
        margin-bottom: 10px;
    }
    .ds-pills {
        gap: 7px;
        margin-bottom: 18px;
    }
    .ds-pill {
        font-size: 10.5px;
        padding: 5px 12px;
    }
    .ds-pill i {
        font-size: 10px;
    }
    .ds-btn-primary {
        width: auto;
        padding: 7px 12px;
        font-size: 14px;
    }
    .ds-nav {
        bottom: 180px;
        top: auto;
        width: 36px;
        height: 36px;
        font-size: 13px;
        transform: none;
    }
    .ds-nav.prev {
        left: 8px;
    }
    .ds-nav.next {
        right: 8px;
    }
    .ds-dots {
        padding: 14px 0 20px;
    }
}

/* ── 1024px+ (desktop) ──────────────────────────────────────── */
@media (min-width: 1024px) {
    .ds-container {
        padding: 0 44px;
    }
    .ds-row {
        flex-direction: row;
        align-items: center;
        gap: 56px;
        padding: 115px 0 56px;
        min-height: 480px;
    }
    .ds-content {
        order: 1;
        flex: 1;
        text-align: left;
        width: auto;
        margin-bottom: 0;
        overflow: visible;
    }
    .ds-img {
        order: 2;
        flex: 0 0 440px;
        max-width: 440px;
        width: 440px;
        height: 330px;
        overflow: visible;
        border-radius: 20px;
    }
    .ds-img img {
        border-radius: 20px;
    }
    .fc {
        padding: 10px 15px;
        border-radius: 13px;
        gap: 10px;
        min-width: 140px;
        max-width: 180px;
    }
    .fc-tl {
        top: 16px;
        left: -14px;
    }
    .fc-br {
        bottom: 16px;
        right: -14px;
    }
    .fc-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 10px;
    }
    .fc-val {
        font-size: 13px;
    }
    .fc-lbl {
        font-size: 10.5px;
    }
    .ds-content h1 {
        font-size: clamp(26px, 3vw, 40px);
        margin-bottom: 20px;
        word-break: normal;
    }
    .ds-tag {
        font-size: 11px;
        margin-bottom: 16px;
    }
    .ds-pills {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 28px;
    }
    .ds-pill {
        font-size: 15.5px;
        padding: 6px 14px;
    }
    .ds-pill i {
        font-size: 11px;
    }
    .ds-btns {
        justify-content: flex-start;
    }
    .ds-btn-primary {
        width: auto;
        font-size: 14px;
    }
    /* FIX #4: desktop — vertically centred, not bottom-anchored */
    .ds-nav {
        width: 42px;
        height: 42px;
        font-size: 14px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    .ds-nav:hover {
        transform: translateY(-50%) scale(1.07);
    }
    .ds-nav.prev {
        left: 12px;
    }
    .ds-nav.next {
        right: 12px;
    }
    .ds-dots {
        padding: 0 0 28px;
    }
}

/* ── 1280px+ ─────────────────────────────────────────────────── */
@media (min-width: 1280px) {
    .ds-row {
        gap: 72px;
        padding: 120px 0 64px;
    }
    .ds-img {
        flex: 0 0 480px;
        max-width: 480px;
        width: 480px;
        height: 360px;
    }
    .ds-content h1 {
        font-size: clamp(36px, 3.4vw, 46px);
    }
    .fc {
        min-width: 148px;
        max-width: 190px;
    }
    .fc-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .fc-val {
        font-size: 14px;
    }
    .fc-lbl {
        font-size: 11px;
    }
}
/* ── Hide pills on mobile ─────────────────────────────────── */
@media (max-width: 639px) {
    .ds-pills {
        display: none;
    }
}
/* ================================================================
   TICKER SECTION
================================================================ */
.ticker-wrap {
    width: 100%;
    margin: 32px 0;
    position: relative;
}
.ticker-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}
.ticker-track {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.feature-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 50px;
    background: #ffffff;
    border: 1px solid rgba(227, 54, 46, 0.12);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.03);
}
.card-label {
    flex: 1;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
}
.berry-side {
    flex-shrink: 0;
    font-size: 1.7rem;
    line-height: 1;
    margin-left: 136px;
    margin-right: 136px;
}
.ticker-icon {
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #e3362e;
}
.progress-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background: #e3362e;
    border-radius: 0 4px 4px 0;
}
.progress-bar.running {
    width: 100%;
    transition: width var(--dur, 3s) linear;
}
.blob {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transform: rotate(20deg);
    opacity: 0.75;
}
.blob-yellow {
    background: #fff176;
}
.blob-green {
    background: #a5d6a7;
}
.blob-purple {
    background: #ce93d8;
}
.blob-green2 {
    background: #66bb6a;
}
.blob-teal {
    background: #4dd0e1;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}
.dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dots button.active {
    width: 30px;
    border-radius: 20px;
    background: #e3362e;
}

@media (max-width: 1024px) {
    .feature-card {
        min-height: 90px;
        padding: 18px 32px;
    }
    .card-label {
        font-size: 1.5rem;
    }
    .berry-side {
        font-size: 1.4rem;
    }
}
@media (max-width: 767px) {
    .feature-card {
        min-height: 80px;
        padding: 16px 20px;
        gap: 12px;
    }
    .card-label {
        font-size: 1rem;
        line-height: 1.4;
    }
    .berry-side {
        font-size: 1.1rem;
    }
    .blob {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 480px) {
    .feature-card {
        min-height: 72px;
        padding: 14px 16px;
        border-radius: 18px;
    }
    .card-label {
        font-size: 0.95rem;
    }
    .berry-side {
        display: none;
    }
}

/* ================================================================
   LOGO / TRUSTED BRANDS
================================================================ */
.digtal-marketing-logo {
    padding-bottom: var(--section-pad);
    padding-top: 0px;
}

/* ================================================================
   ABOUT / WHY SECTION
================================================================ */
.digi-why {
    padding: var(--section-pad) 0;
    background: #fff;
}
.digi-why-left img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    animation: floatImage 5s ease-in-out infinite;
    transition: transform 0.5s ease;
}
@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.digi-why-right {
    padding-top: 0px;
}
.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.why-eyebrow .span-arrow {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-red);
}
.why-eyebrow img {
    height: 18px;
}
.seo-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-green {
    color: var(--color-green);
}
.seo-red {
    color: var(--color-red);
}
.seo-berry {
    font-size: 0;
}
.seo-brand-icon {
    font-size: 1.4rem;
    color: var(--color-red);
    position: relative;
    top: -4px;
}
.digi-why-right h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.2;
}
.digi-why-right > p {
    max-width: 560px;
    margin-bottom: 40px;
}
.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 0;
}
.why-stat-card {
    position: relative;
    border-radius: 20px;
    padding: 24px 20px 20px;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.why-stat-card:nth-child(1) {
    background: #e11d48;
}
.why-stat-card:nth-child(2) {
    background: #7c3aed;
}
.why-stat-card:nth-child(3) {
    background: #2563eb;
}
.why-stat-card:nth-child(4) {
    background: #059669;
}
.why-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.why-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        transparent 60%
    );
    pointer-events: none;
}
.why-stat-text h4 {
    margin: 0 0 6px;
    line-height: 1;
}
.why-stat-text h4 span {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    display: inline-block;
}
.why-stat-text > span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: block;
}
.why-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.35);
}
.why-card-icon svg {
    width: 100%;
    height: 100%;
}

/* ================================================================
   SERVICES TAB SECTION
================================================================ */
.services-tab-section {
    background: #fff;
    padding: var(--section-pad) 0;
    overflow: hidden;
}
.services-tab-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.stab-sec-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--color-green);
    line-height: 1.25;
    text-align: center;
    margin: 0 0 12px;
}
.stab-sec-title span {
    color: var(--color-red);
}
.stab-nav-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 40px;
}
.stab-nav-wrap::-webkit-scrollbar {
    display: none;
}
.stab-nav {
    display: flex;
    justify-content: center; /* Center tabs */
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.stab-nav-item {
    flex-shrink: 0;
}
.stab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
    white-space: nowrap;
    font-family: var(--font-main);
}
.stab-btn:hover {
    color: #1a1a2e;
    background: #fdf5f9;
}
.stab-btn.active {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
    background: #fff5f5;
}
.stab-tab-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stab-tab-icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
}
.stab-panel {
    display: none;
    animation: stabFade 0.3s ease;
}
.stab-panel.active {
    display: block;
}
@keyframes stabFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.stab-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}
.stab-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow var(--transition),
        transform var(--transition),
        border-color var(--transition);
}
.stab-card:hover {
    box-shadow: 0 16px 48px rgba(227, 54, 46, 0.1);
    transform: translateY(-6px);
    border-color: #f5c0d9;
}
.stab-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf0f7, #f0f4ff);
}
.stab-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.stab-card:hover .stab-card-img img {
    transform: scale(1.07);
}
.stab-card-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: background var(--transition);
}
.stab-card:hover .stab-card-badge {
    background: var(--color-green);
}
.stab-card-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-green);
    transition: stroke var(--transition);
}
.stab-card:hover .stab-card-badge svg {
    stroke: #fff;
}
.stab-card-body {
    padding: 20px 20px 10px;
    flex: 1;
}
.stab-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
}
.stab-section-cta {
    text-align: center;
    padding-bottom: 24px;
}
.stab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #27500a;
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 6px 24px rgba(227, 54, 46, 0.25);
}
.stab-cta-btn:hover {
    background: #27500a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 54, 46, 0.35);
}
@media (max-width: 768px) {
    .stab-nav-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .stab-nav-wrap::-webkit-scrollbar {
        display: none;
    }

    .stab-nav {
        justify-content: flex-start; /* Mobile stays same */
        min-width: max-content;
        width: max-content;
    }
}

/* ================================================================
   WHY WORKS SECTION
================================================================ */
.why-works-section {
    padding: var(--section-pad) 0;
    background: #fff;
}
.why-works-left {
    padding-right: 30px;
}
.why-works-left h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--color-red);
    line-height: 1.25;
    margin-bottom: 16px;
}
.why-works-hl {
    color: var(--color-green);
    display: block;
}
.why-works-left > p {
    max-width: 560px;
    margin-bottom: 28px;
}
.why-works-btn {
    display: inline-block;
    background: #27500a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.why-works-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 54, 46, 0.35);
    color: #fff;
}
.why-works-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.why-works-eyebrow span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.3px;
}
.why-arrow-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.why-arrow-wrap svg {
    display: block;
}
.why-arrow-berry {
    position: absolute;
    top: -14px;
    right: -18px;
    font-size: 0;
}
.why-arrow-icon {
    position: absolute;
    top: -14px;
    right: -18px;
    font-size: 16px;
    color: var(--color-red);
    animation: whyBerryFloat 2.5s ease-in-out infinite;
}
@keyframes whyBerryFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-6deg);
    }
    50% {
        transform: translateY(-6px) rotate(5deg);
    }
    75% {
        transform: translateY(-2px) rotate(-3deg);
    }
}
.why-works-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}
.wwc-item {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1.5px solid transparent;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}
.wwc-item.active {
    border-color: var(--color-red);
    box-shadow: 0 6px 28px rgba(227, 54, 46, 0.1);
}
.wwc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}
.wwc-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}
.wwc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.wwc-item.active .wwc-icon {
    transform: scale(1.08);
}
.icon-red {
    background: #fff0ef;
    color: var(--color-red);
}
.icon-green {
    background: #f1f8e4;
    color: var(--color-green);
}
.wwc-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wwc-title-wrap strong {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}
.wwc-item.active .wwc-title-wrap strong {
    color: var(--color-red);
}
.wwc-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-red);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition);
    padding: 0;
    flex-shrink: 0;
}
.wwc-item.active .wwc-toggle {
    background: var(--color-red);
}
.wwc-plus,
.wwc-minus {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-red);
    position: absolute;
    transition:
        opacity var(--transition),
        transform var(--transition);
}
.wwc-item.active .wwc-plus,
.wwc-item.active .wwc-minus {
    color: #fff;
}
.wwc-minus {
    opacity: 0;
    transform: scale(0.5);
}
.wwc-item.active .wwc-plus {
    opacity: 0;
    transform: scale(0.5);
}
.wwc-item.active .wwc-minus {
    opacity: 1;
    transform: scale(1);
}
.wwc-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
    padding: 0 18px;
}
.wwc-item.active .wwc-body {
    max-height: 200px;
    padding: 0 18px 16px;
}
.wwc-body p {
    padding-left: 60px;
    margin: 0;
}

/* ================================================================
   PRICING SECTION
================================================================ */
.pricing-section {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 6.5rem 1rem 3rem;
    color: #111;
    max-width: 1140px;
    margin: 34px auto;
}
.brand-header {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
    line-height: 1;
}
.brand-seo {
    color: #e03131;
}
.brand-ad {
    color: #86b413;
}
.section-head {
    text-align: center;
    margin-bottom: 1.8rem;
}
.section-head h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-top: 6px;
}
.service-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-bottom: 1.4rem;
    padding: 2px 0 6px;
}
.service-nav-scroll {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.service-nav-scroll::-webkit-scrollbar {
    display: none;
}
.service-nav {
    display: flex;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2px;
}
.service-nav-wrap .currency-switcher {
    flex-shrink: 0;
}
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition:
        background 0.15s,
        color 0.15s,
        border-color 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.svc-btn:hover {
    background: #f5f5f5;
    color: #111;
    border-color: #bbb;
}
.svc-btn.active {
    background: #fff0f0;
    color: #c0392b;
    border-color: #e88080;
    font-weight: 700;
}
.controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
}
.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    transition: color 0.15s;
}
.toggle-label.active {
    color: #111;
}
.toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.tog-slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.tog-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle input:checked + .tog-slider {
    background: #c0392b;
}
.toggle input:checked + .tog-slider::before {
    transform: translateX(20px);
}
.save-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    background: #e8f5d6;
    color: #2d6a0a;
    padding: 4px 10px;
    border-radius: 20px;
}
.currency-switcher {
    display: flex;
    gap: 3px;
    background: #f0eded;
    padding: 3px;
    border-radius: 8px;
}
.cur-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #999;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.15s,
        color 0.15s;
    letter-spacing: 0.2px;
}
.cur-btn.active {
    background: #fff;
    color: #111;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.svc-panel {
    display: none;
}
.svc-panel.active {
    display: block;
}
.panel-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}
.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.badge-aeo {
    background: #eeedfe;
    color: #3c3489;
}
.badge-geo {
    background: #e1f5ee;
    color: #0f6e56;
}
.badge-social {
    background: #fde8e0;
    color: #8a2e10;
}
.badge-email {
    background: #e6f1fb;
    color: #185fa5;
}
.badge-digital {
    background: #eaf3de;
    color: #3b6d11;
}
.badge-ppc {
    background: #faeeda;
    color: #854f0b;
}
.panel-intro h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.card {
    background: #fceaea;
    border: 1.5px solid #f2c0c0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.card.featured {
    border: 2.5px solid #c0392b;
    background: #fde4e4;
}
.pop-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c0392b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.card-header {
    padding: 20px 18px 14px;
    border-bottom: 1px solid #f2c0c0;
}
.plan-tier-name {
    font-size: 11px;
    font-weight: 800;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 1px;
    margin-bottom: 2px;
}
.currency-symbol {
    font-size: 20px;
    font-weight: 800;
    color: #e03131;
    line-height: 1;
    flex-shrink: 0;
}
.amount {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1;
}
.amount.struck {
    text-decoration: line-through;
    text-decoration-color: #c0392b;
    color: #888;
    font-size: 22px;
    font-weight: 600;
}
.price-row.old-price .currency-symbol {
    font-size: 14px;
    color: #aaa;
}
.period {
    font-size: 15px;
    font-weight: 800;
    color: #333;
    margin-left: 2px;
    align-self: flex-end;
    padding-bottom: 3px;
}
.currency-tag {
    font-size: 13px;
    font-weight: 800;
    color: #e03131;
    margin-left: 5px;
    align-self: flex-end;
    padding-bottom: 4px;
    flex-shrink: 0;
}
.currency-tag.muted {
    color: #bbb;
}
.billing-info {
    min-height: 22px;
    margin-bottom: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.annual-saving {
    font-weight: 700;
    color: #2d6a0a;
    background: #e8f5d6;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 11px;
}
.billed-note {
    color: #444;
    font-size: 12px;
    font-weight: 500;
}
.plan-desc {
    font-size: 13px;
    color: #333;
    line-height: 1.55;
    font-weight: 400;
}
.card-body {
    padding: 12px 18px;
    flex: 1;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 7px 0;
    border-bottom: 1px solid #f2c0c0;
    font-size: 13px;
    line-height: 1.4;
}
.feature-item:last-child {
    border-bottom: none;
}
.feat-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 9px;
    margin-top: 1px;
}
.icon-check {
    background: #d9f0c0;
    color: #2d6a0a;
}
.icon-star {
    background: #d6eaf8;
    color: #1a5f9e;
}
.feat-label {
    font-weight: 700;
    color: #111;
    font-size: 14px;
}
.feat-detail {
    color: #000000;
    margin-left: 4px;
    font-weight: 500;
}
.card-footer {
    padding: 12px 18px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.toggle-label-mini {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    white-space: nowrap;
    transition: color 0.15s;
}
.toggle-label-mini.active {
    color: #111;
}
.toggle-mini {
    width: 32px;
    height: 18px;
}
.toggle-mini .tog-slider::before {
    width: 14px;
    height: 14px;
    left: 2px;
    top: 2px;
}
.toggle-mini input:checked + .tog-slider::before {
    transform: translateX(14px);
}
.btn-plan {
    display: block;
    flex: 1 1 auto;
    min-width: 110px;
    width: auto;
    padding: 11px 16px;
    border: none;
    border-radius: 8px;
    background: #27500a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.15s,
        transform 0.1s;
    letter-spacing: 0.2px;
}
.btn-plan:hover {
    background: #1c3a07;
}
.btn-plan:active {
    transform: scale(0.98);
}

@media (max-width: 860px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pricing-section {
        padding: 1.5rem 0.75rem 2rem;
    }
    .brand-header {
        font-size: 28px;
    }
    .service-nav {
        gap: 5px;
    }
    .svc-btn {
        font-size: 12px;
        padding: 7px 11px;
    }
    .controls-row {
        gap: 0.8rem;
    }
    .save-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    .card {
        border-radius: 12px;
    }
    .card-header {
        padding: 16px 14px 12px;
    }
    .card-body {
        padding: 10px 14px;
    }
    .card-footer {
        padding: 10px 14px 16px;
    }
    .amount {
        font-size: 32px;
    }
    .currency-symbol {
        font-size: 17px;
    }
    .period {
        font-size: 13px;
    }
    .currency-tag {
        font-size: 12px;
    }
    .feature-item {
        font-size: 12px;
        gap: 8px;
        padding: 6px 0;
    }
    .btn-plan {
        font-size: 13px;
        padding: 10px;
    }
}
@media (max-width: 360px) {
    .amount {
        font-size: 28px;
    }
    .svc-btn {
        font-size: 11px;
        padding: 6px 9px;
        gap: 4px;
    }
}
/* ================================================================
   IMPROVED MOBILE RESPONSIVE
================================================================ */

@media (max-width: 768px) {
    /* Section */
    .pricing-section {
        padding: 40px 15px;
    }

    /* Service Tabs */
    .service-nav-wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .service-nav-scroll {
        overflow-x: auto;
        width: 100%;
    }

    .service-nav {
        flex-wrap: nowrap;
        width: max-content;
        justify-content: flex-start;
        gap: 8px;
    }

    .svc-btn {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
    }

    .currency-switcher {
        justify-content: flex-end;
        margin-left: 84px;
    }

    /* Controls */
    .controls-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Plans */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        max-width: 100%;
    }

    /* Pricing */
    .amount {
        font-size: 34px;
    }

    .currency-symbol {
        font-size: 18px;
    }

    .period {
        font-size: 14px;
    }

    .currency-tag {
        font-size: 12px;
    }

    /* Features */
    .feature-item {
        font-size: 13px;
        line-height: 1.5;
    }

    .feat-label {
        font-size: 13px;
    }

    .feat-detail {
        font-size: 13px;
    }

    /* Buttons */
    .btn-plan {
        width: 33%;
        min-height: 45px;
    }
}
@media (max-width: 480px) {
    .brand-header {
        font-size: 30px;
    }

    .section-head h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .amount {
        font-size: 30px;
    }

    .plan-tier-name {
        font-size: 10px;
    }

    .card-header,
    .card-body,
    .card-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .svc-btn {
        padding: 9px 14px;
        font-size: 12px;
    }
}
/* ================================================================
   TESTIMONIALS SECTION
================================================================ */
.testimonials-section {
    width: 100%;
    background: #faf0ec;
    padding: var(--section-pad) 40px;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 60px;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' fill='%23e8344e' opacity='0.06'/%3E%3C/svg%3E")
        no-repeat;
    pointer-events: none;
}
.testi-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.testi-header {
    text-align: center;
    margin-bottom: 48px;
}
.testi-header .badge-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    justify-content: center;
}
.testi-header .badge-text {
    color: #e8344e;
    font-size: 15px;
    font-weight: 600;
}
.testi-header .badge-arrow svg {
    width: 28px;
    height: 14px;
}
.testi-header .berry {
    font-size: 0;
}
.testi-header .berry-icon {
    font-size: 20px;
    color: var(--color-red);
}
.testi-heading {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-green);
    line-height: 1.15;
    margin-bottom: 14px;
}
.testi-heading span {
    color: #e8344e;
}
.testi-sub {
    font-size: var(--para-size);
    max-width: 520px;
    margin: 0 auto;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi-card--featured {
    grid-column: span 2;
}
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232, 52, 78, 0.1);
}
.testi-card--featured {
    background: #e8344e;
}
.testi-card--featured .testi-quote,
.testi-card--featured .testi-text,
.testi-card--featured .testi-author strong,
.testi-card--featured .testi-author span,
.testi-card--featured .testi-stars {
    color: #fff !important;
}
.testi-quote {
    font-size: 38px;
    line-height: 1;
    color: #e8344e;
    opacity: 0.35;
}
.testi-card--featured .testi-quote {
    color: #fff;
    opacity: 0.4;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #faf0ec;
    color: #e8344e;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-card--featured .testi-avatar {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.testi-author > div:nth-child(2) {
    flex: 1;
}
.testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}
.testi-author span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.testi-stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.testi-cta {
    text-align: center;
    margin-top: 44px;
}
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #27500a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 1px;
    padding: 14px 36px;
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition);
}
.btn-view-all svg {
    width: 24px;
    height: 12px;
}
.btn-view-all:hover {
    background: #27500a;
    color: #fff;
}
.btn-view-all:active {
    transform: scale(0.97);
}

/* ================================================================
   FOOTER
================================================================ */
.footer-section {
    font-family: var(--font-main);
}
.footer-top {
    background: #0c0e2b;
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.footer-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-red) 0%,
        var(--color-green) 100%
    );
}
.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 64px;
    align-items: start;
}
.footer-logo-wrap {
    margin-bottom: 18px;
}
.footer-logo-wrap img {
    max-height: 40px;
    display: block;
    width: fit-content;
}
.footer-tagline {
    max-width: 300px;
    margin-bottom: 24px;
    color: #ffffff !important;
}
.footer-tagline p {
    color: #ffffff !important;
}
.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #2a2a2a;
    margin-bottom: 28px;
}
.newsletter-input {
    flex: 1;
    background: #1a1a1a;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #fff;
    font-family: var(--font-main);
    min-width: 0;
}
.newsletter-input::placeholder {
    color: #555;
}
.newsletter-btn {
    background: var(--color-red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.newsletter-btn:hover {
    background: #c42a23;
}
.rating-wrap h6 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.stars i {
    color: #f5c518;
    font-size: 14px;
    margin-right: 2px;
}
.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 32px;
}
.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--color-red);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li a {
    font-size: 17px;
    color: #fff !important;
    text-decoration: none;
    transition:
        color var(--transition),
        padding-left var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}
.footer-links li a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: opacity var(--transition);
    flex-shrink: 0;
}
.footer-links li a:hover {
    color: var(--color-green) !important;
    padding-left: 4px;
}
.footer-links li a:hover::before {
    opacity: 1;
}
.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #2a2a2a;
    margin-bottom: 16px;
}
.map-wrap iframe {
    display: block;
    width: 100%;
    height: 160px;
    border: 0;
    filter: grayscale(20%) brightness(0.85);
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #fff !important;
    text-decoration: none;
    transition: color var(--transition);
    word-break: break-all;
    font-weight: 400;
}
.contact-info-list li a:hover {
    color: var(--color-red) !important;
}
.ci-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: #ffff;
    transition:
        background var(--transition),
        color var(--transition);
}
.contact-info-list li a:hover .ci-icon {
    background: var(--color-red);
    color: #fff;
}
.footer-bottom {
    background: #0c0e2b;
    padding: 18px 0;
    border-top: 1px solid #1e1e1e;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.copyright {
    font-size: 13.5px;
    color: #fff !important;
}
.copyright * {
    color: inherit !important;
}
.copyright a {
    color: var(--color-green) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}
.copyright a:hover {
    color: var(--color-red) !important;
}
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
.social-list li a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}
.social-list li a:hover {
    background: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
}
.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer-policy-links li {
    margin: 0;
}
.footer-policy-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-policy-links a:hover {
    color: #ffffff;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-size: 18px;
}
.footer-social a:hover {
    background: #86b413;
    transform: translateY(-3px);
}
.footer-social .fa-youtube {
    color: #ffff;
}

/* Scroll to top */
#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 55px;
    height: 55px;
    background: #86b413;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(134, 180, 19, 0.35);
}
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTopBtn:hover {
    background: #739a10;
    color: #fff;
    transform: translateY(-3px);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 51px;
    height: 50px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float i,
.whatsapp-float .fa-whatsapp {
    color: #ffffff !important;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    color: #fff !important;
}
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ================================================================
   ████████████████ RESPONSIVE ████████████████
================================================================ */

/* ── 1200px – 1399px ── */
@media (max-width: 1399px) {
    .mega-menu-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .mega-column {
        padding: 22px 16px;
    }
    .mega-column h5 {
        font-size: 16px;
    }
    .mega-column a {
        font-size: 16px;
        padding: 6px 8px;
    }
    .custom-dropdown {
        min-width: 260px;
    }
}

/* ── 992px – 1199px — MOBILE NAV (Pastel Purple Theme) ── */
@media (max-width: 1199px) {
    /* Sticky bar */
    .main-header .sticky-header {
        background: var(--nav-mob-bg) !important;
        border-bottom: 1.5px solid var(--nav-mob-border) !important;
        box-shadow: 0 2px 12px rgba(124, 58, 237, 0.08) !important;
    }

    /* Hamburger */
    .navbar-toggler i {
        color: var(--nav-mob-accent) !important;
        font-size: 26px;
    }

    /* Logo */
    .navbar-brand .logo {
        max-height: 44px;
    }

    /* Collapse drawer */
    .navbar-collapse {
        background: #fdfbff;
        border-top: 1.5px solid var(--nav-mob-border);
        margin-top: 0;
        padding: 12px 10px 18px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 12px 36px rgba(124, 58, 237, 0.1);
        max-height: 85vh;
        overflow-y: auto;
    }
    .navbar-collapse::-webkit-scrollbar {
        width: 5px;
    }
    .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--nav-mob-pill);
        border-radius: 10px;
    }

    /* Menu layout */
    .main-menu {
        gap: 0;
        align-items: flex-start !important;
        width: 100%;
    }
    .main-menu .nav-item {
        width: 100%;
        margin-bottom: 4px;
    }

    /* All nav links */
    .main-menu .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px !important;
        background: var(--nav-mob-lighter);
        border-radius: 12px;
        color: var(--nav-mob-text) !important;
        border: 1px solid var(--nav-mob-border);
        font-size: 15px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.1px;
        transition:
            background 0.2s,
            color 0.2s,
            border-color 0.2s;
        animation: none !important;
    }
    .main-menu .nav-link:hover,
    .main-menu .nav-link.show,
    .main-menu .nav-link[aria-expanded="true"] {
        background: var(--nav-mob-light) !important;
        color: var(--nav-mob-accent) !important;
        border-color: var(--nav-mob-pill) !important;
        animation: none !important;
    }

    /* Home link */
    .home-link {
        width: 100%;
        height: auto;
        justify-content: flex-start !important;
        background: var(--nav-mob-light) !important;
        color: var(--nav-mob-accent) !important;
        border: 1px solid var(--nav-mob-pill) !important;
        border-radius: 12px;
        animation: none !important;
    }
    .home-link:hover {
        background: #ddd6fe !important;
        color: var(--nav-mob-accent-dark) !important;
        animation: none !important;
    }
    .home-link i {
        color: var(--nav-mob-accent) !important;
    }

    /* Dropdown menus */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        width: 100%;
        margin-top: 6px;
        margin-bottom: 4px;
        border-radius: 14px !important;
        background: var(--nav-mob-lighter);
        padding: 8px !important;
        box-shadow: none;
        border: 1.5px solid var(--nav-mob-border) !important;
    }
    .dropdown-menu.show {
        display: block;
    }

    /* Custom dropdown items */
    .custom-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        border: 1px solid var(--nav-mob-border);
        border-radius: 10px;
        margin-bottom: 6px;
        padding: 10px 12px;
        transition:
            background 0.2s,
            border-color 0.2s;
    }
    .custom-dropdown .dropdown-item:last-child {
        margin-bottom: 0;
    }
    .custom-dropdown .dropdown-item:hover {
        background: var(--nav-mob-light);
        border-color: var(--nav-mob-pill);
        padding-left: 12px;
    }

    /* Dropdown icon */
    .dd-icon {
        background: var(--nav-mob-light);
        color: var(--nav-mob-accent);
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 15px;
        border-radius: 9px;
    }
    .custom-dropdown .dropdown-item:hover .dd-icon {
        background: var(--nav-mob-accent);
        color: #fff;
    }

    /* Dropdown text */
    .dd-text strong {
        color: var(--nav-mob-text);
        font-size: 14px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
    }
    .dd-text small {
        color: var(--nav-mob-muted);
        font-size: 11px;
        font-weight: 500;
    }
    .custom-dropdown .dropdown-item:hover .dd-text strong {
        color: var(--nav-mob-accent);
    }

    /* Mega dropdown */
    .mega-dropdown {
        border-top: 2px solid var(--nav-mob-pill) !important;
        background: var(--nav-mob-lighter) !important;
        border: 1.5px solid var(--nav-mob-border) !important;
        border-radius: 14px !important;
    }

    /* Mega grid */
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        background: transparent;
        padding: 8px;
    }

    /* Mega column */
    .mega-column {
        background: #fff;
        border: 1px solid var(--nav-mob-border);
        border-radius: 12px;
        padding: 14px 12px 10px;
        border-right: none;
    }

    /* Mega column heading */
    .mega-column h5 {
        font-size: 11px !important;
        font-weight: 800 !important;
        color: #fff !important;
        background: var(--nav-mob-accent) !important;
        border-bottom: 2px solid #5b21b6 !important;
        padding: 7px 10px !important;
        margin: -14px -12px 10px -12px !important;
        border-radius: 12px 12px 0 0 !important;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .mega-column h5 .text-muted {
        color: #ddd6fe !important;
        font-size: 13px;
        text-transform: none;
        font-weight: 500;
    }

    /* Mega links */
    .mega-column a {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: var(--nav-mob-text) !important;
        margin-bottom: 4px !important;
        padding: 8px 10px !important;
        background: var(--nav-mob-bg) !important;
        border-radius: 8px !important;
        border: 1px solid var(--nav-mob-light) !important;
        transition:
            background 0.18s,
            color 0.18s,
            border-color 0.18s !important;
        transform: none !important;
        text-decoration: none !important;
    }
    .mega-column a i {
        color: var(--nav-mob-accent) !important;
        font-size: 12px !important;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
    }
    .mega-column a:hover {
        background: var(--nav-mob-light) !important;
        color: var(--nav-mob-accent) !important;
        border-color: var(--nav-mob-pill) !important;
        transform: none !important;
    }
    .mega-column a:hover i {
        color: var(--nav-mob-accent) !important;
    }

    /* CTA button */
    .btn-enquiry-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        background: var(--nav-mob-accent) !important;
        color: #fff !important;
        font-family: "Poppins", sans-serif !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        border-radius: 12px !important;
        padding: 13px 20px !important;
        margin: -564px 6px 4px !important;
        border: none !important;
        box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25) !important;
        transition: background 0.2s !important;
        width: calc(100% - 12px) !important;
        text-decoration: none !important;
    }
    .btn-enquiry-mobile:hover {
        background: var(--nav-mob-accent-dark) !important;
        color: #fff !important;
    }

    /* Non-nav overrides */
    .stab-cards-grid {
        gap: 20px;
    }
    .stab-btn {
        padding: 15px 22px;
    }
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 560px;
    }
}

/* ── 993px – 1199px: mega grid 3-col ── */
@media (min-width: 993px) and (max-width: 1199px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mega-column {
        padding: 24px 20px;
        border-right: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }
    .mega-column:nth-child(3),
    .mega-column:nth-child(6) {
        border-right: none;
    }
    .mega-column:nth-child(4),
    .mega-column:nth-child(5),
    .mega-column:nth-child(6) {
        border-bottom: none;
    }
}

/* ── 768px – 991px ── */
@media (max-width: 991px) {
    .digi-slide {
        padding: 114px 0 40px;
        height: auto;
        min-height: unset;
    }
    .ds-row {
        flex-direction: column;
        gap: 0px;
    }
    .ds-content {
        text-align: center;
        flex: 1 1 100%;
    }
    .ds-pills,
    .ds-btns {
        justify-content: center;
    }
    .ds-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .ds-nav {
        display: none;
    }
    .digi-why {
        padding: var(--section-pad-sm) 0;
    }
    .digi-why-left {
        margin-bottom: 40px;
    }
    .digi-why-left img {
        height: 380px;
    }
    .digi-why-right > p {
        max-width: 100%;
        margin-bottom: 32px;
    }
    .why-works-section {
        padding: var(--section-pad-sm) 0;
    }
    .why-works-left {
        padding-right: 0;
        margin-bottom: 36px;
        text-align: center;
    }
    .why-works-eyebrow {
        justify-content: center;
    }
    .why-works-hl {
        display: inline;
    }
    .why-works-right {
        padding-left: 0;
    }
    .stab-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .stab-btn {
        padding: 13px 18px;
        font-size: 0.88rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-tagline {
        max-width: 100%;
    }
    .footer-right {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-location {
        grid-column: 1/-1;
    }
    .digi-why-right > p {
        margin-bottom: 16px;
    }
    .why-stats-grid {
        margin-top: 16px !important;
    }
}

/* ── 576px – 767px ── */
@media (max-width: 767px) {
    :root {
        --section-pad: var(--section-pad-sm);
    }
    .digi-slide {
        padding: 104px 0 20px;
        height: auto;
        min-height: unset;
    }
    .ds-img {
        flex: 1 1 100%;
        min-height: unset;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        overflow: visible;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .ds-img img {
        width: 100%;
        max-height: 220px;
        object-fit: cover;
        border-radius: 8px;
    }
    .ds-svg {
        max-width: 300px;
    }
    .fc {
        position: static;
        animation: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 7px 12px;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.04);
        max-width: calc(50% - 10px);
    }
    .fc-tl,
    .fc-br {
        position: static;
        transform: none;
    }
    .fc-val {
        font-size: 13px;
        font-weight: 700;
        color: #0f172a;
    }
    .fc-lbl {
        font-size: 9.5px;
        color: #64748b;
    }
    .fc-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 8px;
    }
    .digi-why {
        padding: var(--section-pad-xs) 0;
    }
    .digi-why-left img {
        height: 280px;
        object-fit: contain;
        max-height: 300px;
        width: 100%;
    }
    .why-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .why-stat-card {
        padding: 16px 14px;
    }
    .why-stat-text h4 span {
        font-size: 36px;
    }
    .why-stat-text > span {
        font-size: 12px;
    }
    .why-card-icon {
        width: 28px;
        height: 28px;
        top: 14px;
        right: 14px;
    }
    .why-works-section {
        padding: var(--section-pad-xs) 0;
    }
    .wwc-header {
        padding: 12px 14px;
    }
    .wwc-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    .wwc-title-wrap strong {
        font-size: 14px;
    }
    .wwc-body p {
        padding-left: 0;
        font-size: var(--para-size);
    }
    .why-works-btn {
        width: 53%;
        text-align: center;
    }
    .services-tab-section {
        padding: var(--section-pad-xs) 0;
    }
    .stab-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 28px;
    }
    .stab-btn {
        padding: 12px 14px;
        font-size: 0.83rem;
        gap: 6px;
    }
    .stab-tab-icon svg {
        width: 16px;
        height: 16px;
    }
    .stab-card-body {
        padding: 14px 14px 8px;
    }
    .stab-card-body h4 {
        font-size: 0.95rem;
    }
    .stab-cta-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    .svc-btn {
        padding: 9px 14px;
        font-size: 0.78rem;
    }
    .testimonials-section {
        padding: 50px 24px;
    }
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testi-card--featured {
        grid-column: span 2;
    }
    .ticker-wrap {
        margin-top: 18px;
    }
    .card-label {
        font-size: 22px;
    }
    .feature-card {
        padding: 0 28px;
        min-height: 76px;
    }
    .blob {
        display: none;
    }
    .footer-top {
        padding: 52px 0 40px;
    }
    .footer-right {
        grid-template-columns: 1fr 1fr;
    }
    .footer-policy-links {
        gap: 20px;
    }
    .mkt-main-img {
        width: 220px;
        height: 280px;
    }
    .mkt-msg-1,
    .mkt-msg-3 {
        font-size: 11px;
        padding: 6px 10px;
        left: 0;
    }
    .mkt-stat {
        bottom: -20px;
        right: 0;
        padding: 8px 10px;
    }
    .oth-stat-tl {
        top: 4px;
        left: 0;
        padding: 8px 10px;
    }
    .oth-stat-br {
        bottom: 4px;
        right: 0;
        padding: 8px 10px;
    }
    .oth-tag-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    .pricing-section {
        padding: var(--section-pad-xs) 16px;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 30px;
        right: 18px;
        bottom: 18px;
    }
}

/* ── 480px – 575px ── */
@media (max-width: 575px) {
    :root {
        --section-pad: var(--section-pad-xs);
    }
    .sticky-header {
        padding: 12px 0;
    }
    .logo {
        max-height: 42px;
    }
    .navbar-collapse {
        padding: 30px 8px 18px;
        border-radius: 0 0 16px 16px;
    }
    .main-menu .nav-link {
        font-size: 14px;
        padding: 11px 14px !important;
    }
    .stab-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stab-card-img {
        aspect-ratio: 16/8;
    }
    .stab-btn {
        padding: 11px 12px;
        font-size: 0.8rem;
    }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .svc-btn .svc-icon {
        display: none;
    }
    .footer-right {
        grid-template-columns: 1fr;
    }
    .footer-col-location {
        grid-column: auto;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-btn {
        border-radius: 0 0 6px 6px;
        text-align: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-policy-links {
        gap: 14px;
    }
    .testimonials-section {
        padding: 40px 16px;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .testi-card--featured {
        grid-column: span 1;
    }
}

/* ── < 480px ── */
@media (max-width: 480px) {
    .digi-slide {
        padding: 104px 0 16px;
        height: auto;
        min-height: unset;
    }
    .ds-container {
        padding: 0 16px;
    }
    .ds-tag {
        font-size: 7px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .ds-content h1 {
        font-size: clamp(28px, 8.2vw, 36px);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .ds-pills {
        gap: 6px;
        margin-bottom: 12px;
    }
    .ds-pill {
        font-size: 12px;
        padding: 4px 10px;
    }
    .ds-btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: auto;
        min-width: 145px;
        padding: 9px 22px;
        font-size: 13.5px;
        font-weight: 700;
        border-radius: 8px;
        background: var(--ds-accent);
        background: linear-gradient(135deg, var(--ds-accent) 0%, color-mix(in srgb, var(--ds-accent) 80%, #000) 100%);
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 6px 20px -2px var(--ds-accent-shadow, rgba(0, 0, 0, 0.28)),
                    0 2px 6px -1px rgba(0, 0, 0, 0.08),
                    inset 0 1px 1px rgba(255, 255, 255, 0.4);
    }
    .ds-btn-primary:active {
        transform: scale(0.97);
    }
    .ds-svg {
        max-width: 240px;
    }
    .fc {
        padding: 6px 10px;
        min-width: 105px;
        gap: 6px;
        border-radius: 8px;
    }
    .fc-val {
        font-size: 12px;
    }
    .fc-lbl {
        font-size: 9px;
    }
    .fc-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 7px;
    }
    .ds-dots {
        position: static;
        padding: 8px 0 14px;
    }
    .ds-dot {
        width: 6px;
        height: 6px;
    }
    .ds-dot.active {
        width: 18px;
    }
    .seo-title {
        font-size: 42px;
    }
    .why-stats-grid {
        grid-template-columns: 1fr;
    }
    .why-stat-text h4 span {
        font-size: 42px;
    }
    .mkt-main-img {
        width: 170px;
        height: 215px;
    }
    .mkt-ring-1 {
        width: 200px;
        height: 200px;
    }
    .mkt-ring-3 {
        width: 280px;
        height: 280px;
    }
    .mkt-msg-1,
    .mkt-msg-3 {
        font-size: 10px;
        padding: 5px 8px;
    }

    /* Mobile nav tiny screen */
    .main-menu .nav-link {
        font-size: 13px;
        padding: 10px 12px !important;
    }
    .mega-column h5 {
        font-size: 16px !important;
    }
    .mega-column a {
        font-size: 14px !important;
        padding: 7px 8px !important;
    }
}

/* ── 360px icon-only nav ── */
@media (max-width: 360px) {
    .stab-btn .stab-tab-label {
        display: none;
    }
    .stab-btn {
        padding: 12px 14px;
    }
    .stab-tab-icon svg {
        width: 20px;
        height: 20px;
    }
    .main-menu .nav-link {
        font-size: 12px;
        padding: 9px 10px !important;
    }
}

/* ── pt-120 fix mobile ── */
@media (min-width: 320px) and (max-width: 991px) {
    .pt-120 {
        padding-top: 0;
    }
}
/* Remove AEO/GEO/Social badge label */
.pr-badge,
.service-badge,
.badge-aeo,
.badge-geo,
.badge-social,
.badge-email,
.badge-digital,
.badge-ppc {
    display: none !important;
}

/* Remove heading underline / line */
.pr-heading::after,
.pr-heading::before,
.stab-sec-title::after,
.section-title::after {
    display: none !important;
}

/* Keep heading properly aligned after removing label */
.pr-heading {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
