
   /* =========================
   CLIENTS PAGE THEME
========================= */

:root {
    --clients-primary: #ffcc00;
    --clients-primary-dark: #d4a900;
    --clients-bg: #0d0d0d;
    --clients-bg-two: #050505;
    --clients-card: #111111;
    --clients-card-two: #151515;
    --clients-border: rgba(255, 204, 0, 0.22);
    --clients-white: #ffffff;
    --clients-muted: #b5b5b5;
    --clients-soft: #888888;
    --clients-black: #000000;
    --clients-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
}

body {
    background: var(--clients-bg) !important;
    color: var(--clients-white);
}

.text-primary {
    color: var(--clients-primary) !important;
}

/* =========================
   COMMON
========================= */

.clients-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--clients-border);
    color: var(--clients-primary);
    background: rgba(255, 204, 0, 0.04);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.clients-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.clients-section-heading h2 {
    font-size: 44px;
    font-weight: bold;
    color: var(--clients-white);
    line-height: 1.22;
    margin-bottom: 15px;
}

.clients-section-heading h2 span {
    color: var(--clients-primary);
}

.clients-section-heading p {
    color: var(--clients-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.clients-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

.clients-btn-yellow {
    background: var(--clients-primary);
    color: var(--clients-black);
    border: 1px solid var(--clients-primary);
}

.clients-btn-yellow:hover {
    background: var(--clients-white);
    color: var(--clients-black);
    transform: translateY(-3px);
}

.clients-btn-outline {
    background: transparent;
    color: var(--clients-primary);
    border: 1px solid var(--clients-border);
}

.clients-btn-outline:hover {
    background: var(--clients-primary);
    color: var(--clients-black);
    border-color: var(--clients-primary);
    transform: translateY(-3px);
}

.clients-btn-dark {
    background: var(--clients-black);
    color: var(--clients-white);
    border: 1px solid var(--clients-black);
}

.clients-btn-dark:hover {
    background: var(--clients-white);
    color: var(--clients-black);
    transform: translateY(-3px);
}

.clients-btn-whatsapp {
    background: #25d366;
    color: var(--clients-white);
    border: 1px solid #25d366;
}

.clients-btn-whatsapp:hover {
    background: #1ebe5d;
    color: var(--clients-white);
    transform: translateY(-3px);
}

/* =========================
   HERO SECTION
========================= */

.clients-hero-section {
    position: relative;
    overflow: hidden;
    padding: 135px 0 95px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 204, 0, 0.10), transparent 28%),
        linear-gradient(135deg, #050505 0%, #0d0d0d 55%, #000000 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.clients-glow-one {
    width: 420px;
    height: 420px;
    background: rgba(255, 204, 0, 0.08);
    top: -140px;
    right: -120px;
}

.clients-glow-two {
    width: 360px;
    height: 360px;
    background: rgba(255, 204, 0, 0.06);
    bottom: -140px;
    left: -120px;
}

.clients-hero-title {
    font-size: 58px;
    font-weight: bold;
    line-height: 1.12;
    color: var(--clients-white);
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.clients-hero-title span {
    color: var(--clients-primary);
}

.clients-hero-desc {
    max-width: 720px;
    color: var(--clients-muted);
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.clients-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.clients-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.clients-hero-proof div {
    min-width: 140px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 204, 0, 0.16);
    border-radius: 18px;
}

.clients-hero-proof strong {
    display: block;
    color: var(--clients-primary);
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
}

.clients-hero-proof span {
    color: var(--clients-muted);
    font-size: 13px;
}

.clients-hero-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--clients-border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--clients-shadow);
    backdrop-filter: blur(16px);
}

.clients-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.clients-card-top span {
    color: var(--clients-white);
    font-size: 18px;
    font-weight: bold;
}

.clients-card-top i {
    width: 48px;
    height: 48px;
    background: var(--clients-primary);
    color: var(--clients-black);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.clients-performance-item {
    margin-bottom: 24px;
}

.clients-performance-item p {
    color: var(--clients-muted);
    margin-bottom: 8px;
    font-size: 14px;
}

.clients-performance-item strong {
    color: var(--clients-primary);
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.clients-progress {
    width: 100%;
    height: 7px;
    background: #2a2a2a;
    border-radius: 999px;
    overflow: hidden;
}

.clients-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--clients-primary), #fff3a3);
    border-radius: 999px;
}

.clients-mini-note {
    margin-top: 28px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.18);
    color: var(--clients-muted);
    font-size: 14px;
    line-height: 1.7;
}

.clients-mini-note i {
    color: var(--clients-primary);
    margin-right: 6px;
}

/* =========================
   LOGO STRIP
========================= */

.clients-logo-strip {
    background: var(--clients-bg);
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.clients-logo-title {
    color: var(--clients-soft);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.clients-logo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.clients-logo-box {
    min-width: 130px;
    height: 56px;
    padding: 0 20px;
    border-radius: 14px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--clients-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
}

.clients-logo-box:hover {
    color: var(--clients-primary);
    border-color: var(--clients-primary);
    transform: translateY(-3px);
}

/* =========================
   STATS SECTION
========================= */

.clients-stats-section {
    background: #080808;
    padding: 90px 0;
}

.clients-stat-card {
    height: 100%;
    padding: 34px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 24px;
    text-align: center;
    transition: 0.35s ease;
}

.clients-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--clients-primary);
    box-shadow: 0 18px 48px rgba(255, 204, 0, 0.08);
}

.clients-stat-card i {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: rgba(255, 204, 0, 0.08);
    color: var(--clients-primary);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.clients-stat-card h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--clients-white);
    margin-bottom: 8px;
}

.clients-stat-card p {
    color: var(--clients-muted);
    margin: 0;
    font-size: 15px;
}

/* =========================
   SEGMENT SECTION
========================= */

.clients-segment-section {
    background: var(--clients-bg);
    padding: 105px 0;
}

.clients-segment-card {
    height: 100%;
    padding: 34px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.clients-segment-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 204, 0, 0.06);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    filter: blur(40px);
    opacity: 0;
    transition: 0.35s ease;
}

.clients-segment-card:hover,
.clients-segment-card.active {
    border-color: rgba(255, 204, 0, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.clients-segment-card:hover::before,
.clients-segment-card.active::before {
    opacity: 1;
}

.clients-segment-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.22);
    color: var(--clients-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.clients-segment-card h3 {
    color: var(--clients-white);
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 14px;
}

.clients-segment-card p {
    color: var(--clients-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.clients-segment-card span {
    display: inline-block;
    color: var(--clients-primary);
    font-size: 13px;
    font-weight: bold;
}

/* =========================
   CASE STUDIES
========================= */

.clients-case-section {
    background: #080808;
    padding: 105px 0;
}

.clients-case-card {
    height: 100%;
    background: linear-gradient(180deg, #111111, #0b0b0b);
    border: 1px solid rgba(255, 204, 0, 0.20);
    border-radius: 26px;
    padding: 34px;
    transition: 0.35s ease;
}

.clients-case-card:hover {
    transform: translateY(-8px);
    border-color: var(--clients-primary);
    box-shadow: 0 18px 50px rgba(255, 204, 0, 0.08);
}

.clients-case-tag {
    display: inline-block;
    padding: 7px 14px;
    color: var(--clients-primary);
    background: rgba(255, 204, 0, 0.07);
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 18px;
}

.clients-case-card h3 {
    color: var(--clients-white);
    font-size: 25px;
    font-weight: 850;
    margin-bottom: 14px;
}

.clients-case-card p {
    color: var(--clients-muted);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 28px;
}

.clients-case-result {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-case-result div {
    flex: 1;
    min-width: 120px;
}

.clients-case-result strong {
    display: block;
    color: var(--clients-primary);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.clients-case-result span {
    color: var(--clients-soft);
    font-size: 13px;
}

/* =========================
   TRUST SECTION
========================= */

.clients-trust-section {
    background: var(--clients-bg);
    padding: 105px 0;
}

.clients-trust-title {
    color: var(--clients-white);
    font-size: 46px;
    font-weight: bold;
    line-height: 1.22;
    margin-bottom: 18px;
}

.clients-trust-title span {
    color: var(--clients-primary);
}

.clients-trust-desc {
    color: var(--clients-muted);
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 28px;
}

.clients-trust-list {
    display: grid;
    gap: 14px;
}

.clients-trust-list div {
    color: var(--clients-white);
    font-size: 15px;
    padding: 15px 18px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.clients-trust-list i {
    color: var(--clients-primary);
    margin-right: 10px;
}

.clients-trust-box {
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 204, 0, 0.22);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--clients-shadow);
}

.clients-trust-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.clients-trust-box-header h3 {
    color: var(--clients-white);
    font-size: 23px;
    font-weight: 850;
    margin: 0;
}

.clients-trust-box-header span {
    color: var(--clients-primary);
    font-weight: bold;
}

.clients-process-line {
    display: grid;
    gap: 22px;
}

.clients-process-item {
    display: flex;
    gap: 18px;
}

.clients-process-item > span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clients-primary);
    color: var(--clients-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.clients-process-item h4 {
    color: var(--clients-white);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.clients-process-item p {
    color: var(--clients-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   TESTIMONIALS
========================= */

.clients-testimonial-section {
    background: #080808;
    padding: 105px 0;
}

.clients-testimonial-card {
    height: 100%;
    background: #111;
    border: 1px solid rgba(255, 204, 0, 0.22);
    border-radius: 24px;
    padding: 32px;
    transition: 0.35s ease;
}

.clients-testimonial-card:hover {
    border-color: var(--clients-primary);
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(255, 204, 0, 0.08);
}

.clients-stars {
    color: var(--clients-primary);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.clients-testimonial-card p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 25px;
}

.clients-testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.clients-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--clients-primary);
    color: var(--clients-primary);
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.clients-testimonial-user h4 {
    color: var(--clients-white);
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 4px;
}

.clients-testimonial-user span {
    color: var(--clients-soft);
    font-size: 13px;
}

/* =========================
   FAQ SECTION
========================= */

.clients-faq-section {
    background: var(--clients-bg);
    padding: 105px 0;
}

.clients-faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.clients-faq-item {
    border: 1px solid rgba(255, 204, 0, 0.20);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #111;
    transition: 0.3s ease;
}

.clients-faq-item.active {
    border-color: var(--clients-primary);
}

.clients-faq-question {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.clients-faq-question h3 {
    color: var(--clients-white);
    font-size: 17px;
    font-weight: 750;
    margin: 0;
}

.clients-faq-question i {
    color: var(--clients-primary);
    transition: 0.3s ease;
}

.clients-faq-item.active .clients-faq-question i {
    transform: rotate(45deg);
}

.clients-faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.clients-faq-answer p {
    color: var(--clients-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.clients-faq-item.active .clients-faq-answer {
    display: block;
}

/* =========================
   CTA SECTION
========================= */

.clients-cta-section {
    background: #080808;
    padding: 95px 0;
}

.clients-cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #ffcc00, #c99f00);
    border-radius: 32px;
    padding: 64px 30px;
    box-shadow: 0 20px 60px rgba(255, 204, 0, 0.16);
}

.clients-cta-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    top: -120px;
    right: -80px;
}

.clients-cta-box span {
    display: inline-block;
    color: var(--clients-black);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.clients-cta-box h2 {
    color: var(--clients-black);
    font-size: 42px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 16px;
}

.clients-cta-box p {
    color: #1b1b1b;
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.clients-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .clients-hero-section {
        padding: 105px 0 75px;
    }

    .clients-hero-title {
        font-size: 44px;
    }

    .clients-section-heading h2,
    .clients-trust-title {
        font-size: 36px;
    }

    .clients-logo-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

    .clients-hero-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .clients-hero-title {
        font-size: 36px;
    }

    .clients-hero-desc {
        font-size: 15px;
    }

    .clients-hero-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .clients-hero-proof div {
        width: 100%;
    }

    .clients-section-heading h2,
    .clients-trust-title,
    .clients-cta-box h2 {
        font-size: 30px;
    }

    .clients-section-heading p {
        font-size: 15px;
    }

    .clients-stats-section,
    .clients-segment-section,
    .clients-case-section,
    .clients-trust-section,
    .clients-testimonial-section,
    .clients-faq-section,
    .clients-cta-section {
        padding: 70px 0;
    }

    .clients-segment-card,
    .clients-case-card,
    .clients-testimonial-card,
    .clients-trust-box {
        padding: 26px;
    }

    .clients-trust-box-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .clients-cta-box {
        padding: 45px 20px;
        border-radius: 24px;
    }
}

@media (max-width: 575px) {
    .clients-hero-section {
        padding: 85px 0 60px;
    }

    .clients-hero-title {
        font-size: 31px;
    }

    .clients-btn {
        width: 100%;
    }

    .clients-logo-list {
        width: 100%;
    }

    .clients-logo-box {
        width: 100%;
    }

    .clients-stat-card h2 {
        font-size: 38px;
    }

    .clients-case-result {
        flex-direction: column;
    }

    .clients-faq-question h3 {
        font-size: 15px;
    }
}
/* =====================================================
   CLIENTS PAGE FULL RESPONSIVE CSS
   Paste this at the bottom of css/clients.css
===================================================== */

/* Global Responsive Fix */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.clients-hero-section,
.clients-logo-strip,
.clients-stats-section,
.clients-segment-section,
.clients-case-section,
.clients-trust-section,
.clients-testimonial-section,
.clients-faq-section,
.clients-cta-section {
    width: 100%;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   LARGE DESKTOP FIX
   1200px to 1399px
===================================================== */

@media (max-width: 1399px) {
    .clients-hero-title {
        font-size: 54px;
    }

    .clients-section-heading h2 {
        font-size: 42px;
    }

    .clients-trust-title {
        font-size: 44px;
    }

    .clients-hero-card {
        padding: 32px;
    }
}

/* =====================================================
   SMALL DESKTOP / LAPTOP
   992px to 1199px
===================================================== */

@media (max-width: 1199px) {
    .clients-hero-section {
        padding: 115px 0 85px;
    }

    .clients-hero-title {
        font-size: 48px;
        line-height: 1.15;
    }

    .clients-hero-desc {
        font-size: 16px;
        max-width: 650px;
    }

    .clients-section-heading h2 {
        font-size: 38px;
    }

    .clients-trust-title {
        font-size: 40px;
    }

    .clients-segment-card,
    .clients-case-card,
    .clients-testimonial-card {
        padding: 30px;
    }

    .clients-stat-card h2 {
        font-size: 42px;
    }

    .clients-cta-box h2 {
        font-size: 38px;
    }
}

/* =====================================================
   TABLET VIEW
   768px to 991px
===================================================== */

@media (max-width: 991px) {
    .clients-hero-section {
        padding: 95px 0 70px;
        text-align: left;
    }

    .clients-hero-title {
        font-size: 42px;
        line-height: 1.18;
        letter-spacing: -0.8px;
    }

    .clients-hero-desc {
        font-size: 16px;
        line-height: 1.75;
        max-width: 100%;
    }

    .clients-hero-buttons {
        margin-bottom: 35px;
    }

    .clients-hero-proof {
        gap: 14px;
    }

    .clients-hero-proof div {
        min-width: 155px;
        flex: 1;
    }

    .clients-hero-card {
        margin-top: 10px;
        padding: 30px;
        border-radius: 24px;
    }

    .clients-logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .clients-logo-title {
        white-space: normal;
    }

    .clients-logo-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .clients-logo-box {
        width: 100%;
        min-width: unset;
    }

    .clients-stats-section,
    .clients-segment-section,
    .clients-case-section,
    .clients-trust-section,
    .clients-testimonial-section,
    .clients-faq-section,
    .clients-cta-section {
        padding: 80px 0;
    }

    .clients-section-heading {
        margin-bottom: 45px;
    }

    .clients-section-heading h2 {
        font-size: 36px;
    }

    .clients-section-heading p {
        font-size: 15px;
    }

    .clients-trust-title {
        font-size: 36px;
    }

    .clients-trust-desc {
        font-size: 15px;
    }

    .clients-trust-box {
        padding: 30px;
        border-radius: 24px;
    }

    .clients-cta-box {
        padding: 55px 28px;
    }

    .clients-cta-box h2 {
        font-size: 34px;
    }
}

/* =====================================================
   MOBILE LANDSCAPE / BIG MOBILE
   576px to 767px
===================================================== */

@media (max-width: 767px) {
    .clients-hero-section {
        padding: 80px 0 60px;
    }

    .clients-badge {
        font-size: 11px;
        padding: 7px 14px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .clients-hero-title {
        font-size: 36px;
        line-height: 1.18;
        margin-bottom: 18px;
    }

    .clients-hero-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .clients-hero-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }

    .clients-btn {
        padding: 13px 22px;
        font-size: 14px;
        border-radius: 10px;
    }

    .clients-hero-proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .clients-hero-proof div {
        min-width: unset;
        padding: 16px 12px;
        text-align: center;
    }

    .clients-hero-proof strong {
        font-size: 25px;
    }

    .clients-hero-proof span {
        font-size: 12px;
    }

    .clients-hero-card {
        padding: 26px;
        border-radius: 22px;
    }

    .clients-card-top span {
        font-size: 16px;
    }

    .clients-card-top i {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .clients-performance-item strong {
        font-size: 20px;
    }

    .clients-logo-strip {
        padding: 28px 0;
    }

    .clients-logo-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-logo-box {
        height: 52px;
        font-size: 13px;
        padding: 0 14px;
    }

    .clients-stats-section,
    .clients-segment-section,
    .clients-case-section,
    .clients-trust-section,
    .clients-testimonial-section,
    .clients-faq-section,
    .clients-cta-section {
        padding: 65px 0;
    }

    .clients-section-heading {
        margin-bottom: 35px;
    }

    .clients-section-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .clients-section-heading p {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .clients-stat-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .clients-stat-card i {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .clients-stat-card h2 {
        font-size: 36px;
    }

    .clients-stat-card p {
        font-size: 14px;
    }

    .clients-segment-card,
    .clients-case-card,
    .clients-testimonial-card {
        padding: 26px;
        border-radius: 20px;
    }

    .clients-segment-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .clients-segment-card h3,
    .clients-case-card h3 {
        font-size: 21px;
    }

    .clients-segment-card p,
    .clients-case-card p,
    .clients-testimonial-card p {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .clients-case-result {
        gap: 12px;
    }

    .clients-case-result strong {
        font-size: 24px;
    }

    .clients-trust-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .clients-trust-list div {
        font-size: 14px;
        padding: 14px 15px;
    }

    .clients-trust-box {
        padding: 26px;
        border-radius: 22px;
    }

    .clients-trust-box-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .clients-trust-box-header h3 {
        font-size: 21px;
    }

    .clients-process-item {
        gap: 14px;
    }

    .clients-process-item > span {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .clients-process-item h4 {
        font-size: 16px;
    }

    .clients-process-item p {
        font-size: 13.5px;
    }

    .clients-testimonial-user {
        align-items: flex-start;
    }

    .clients-avatar {
        width: 44px;
        height: 44px;
    }

    .clients-faq-question {
        padding: 18px 20px;
    }

    .clients-faq-question h3 {
        font-size: 15.5px;
        line-height: 1.5;
    }

    .clients-faq-answer {
        padding: 0 20px 18px;
    }

    .clients-faq-answer p {
        font-size: 14px;
    }

    .clients-cta-box {
        padding: 42px 22px;
        border-radius: 22px;
    }

    .clients-cta-box h2 {
        font-size: 29px;
        line-height: 1.3;
    }

    .clients-cta-box p {
        font-size: 14.5px;
        line-height: 1.7;
    }
}

/* =====================================================
   SMALL MOBILE
   320px to 575px
===================================================== */

@media (max-width: 575px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .clients-hero-section {
        padding: 70px 0 55px;
    }

    .clients-hero-title {
        font-size: 31px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .clients-hero-desc {
        font-size: 14.5px;
    }

    .clients-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .clients-btn {
        width: 100%;
        min-height: 48px;
    }

    .clients-hero-proof {
        grid-template-columns: 1fr;
    }

    .clients-hero-proof div {
        text-align: left;
        padding: 16px 18px;
    }

    .clients-hero-card {
        padding: 22px;
        border-radius: 20px;
    }

    .clients-card-top {
        margin-bottom: 24px;
    }

    .clients-card-top span {
        font-size: 15px;
    }

    .clients-performance-item {
        margin-bottom: 20px;
    }

    .clients-mini-note {
        font-size: 13.5px;
        padding: 15px;
    }

    .clients-logo-list {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .clients-logo-box {
        width: 100%;
        height: 50px;
    }

    .clients-stats-section,
    .clients-segment-section,
    .clients-case-section,
    .clients-trust-section,
    .clients-testimonial-section,
    .clients-faq-section,
    .clients-cta-section {
        padding: 55px 0;
    }

    .clients-section-heading {
        margin-bottom: 30px;
    }

    .clients-section-heading h2 {
        font-size: 27px;
    }

    .clients-section-heading p {
        font-size: 14px;
    }

    .clients-stat-card {
        padding: 25px 18px;
    }

    .clients-stat-card h2 {
        font-size: 34px;
    }

    .clients-segment-card,
    .clients-case-card,
    .clients-testimonial-card,
    .clients-trust-box {
        padding: 22px;
        border-radius: 18px;
    }

    .clients-segment-card h3,
    .clients-case-card h3 {
        font-size: 20px;
    }

    .clients-segment-card p,
    .clients-case-card p,
    .clients-testimonial-card p {
        font-size: 14px;
    }

    .clients-case-result {
        flex-direction: column;
    }

    .clients-case-result div {
        width: 100%;
    }

    .clients-trust-title {
        font-size: 27px;
    }

    .clients-trust-desc {
        font-size: 14.5px;
    }

    .clients-trust-list {
        gap: 12px;
    }

    .clients-trust-list div {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .clients-process-item {
        align-items: flex-start;
    }

    .clients-process-item > span {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .clients-process-item h4 {
        font-size: 15.5px;
    }

    .clients-process-item p {
        font-size: 13px;
    }

    .clients-testimonial-user h4 {
        font-size: 15px;
    }

    .clients-testimonial-user span {
        font-size: 12.5px;
    }

    .clients-faq-question {
        padding: 17px 18px;
        gap: 12px;
    }

    .clients-faq-question h3 {
        font-size: 14.5px;
    }

    .clients-faq-answer {
        padding: 0 18px 17px;
    }

    .clients-faq-answer p {
        font-size: 13.5px;
    }

    .clients-cta-box {
        padding: 38px 18px;
        border-radius: 20px;
    }

    .clients-cta-box span {
        font-size: 11px;
    }

    .clients-cta-box h2 {
        font-size: 26px;
    }

    .clients-cta-box p {
        font-size: 14px;
    }

    .clients-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* =====================================================
   EXTRA SMALL MOBILE
   320px to 420px
===================================================== */

@media (max-width: 420px) {
    .clients-hero-title {
        font-size: 28px;
    }

    .clients-section-heading h2 {
        font-size: 25px;
    }

    .clients-trust-title {
        font-size: 25px;
    }

    .clients-cta-box h2 {
        font-size: 24px;
    }

    .clients-badge {
        font-size: 10px;
        padding: 7px 12px;
    }

    .clients-hero-card,
    .clients-segment-card,
    .clients-case-card,
    .clients-testimonial-card,
    .clients-trust-box {
        padding: 20px;
    }

    .clients-stat-card h2 {
        font-size: 31px;
    }

    .clients-segment-icon {
        width: 54px;
        height: 54px;
        font-size: 21px;
    }

    .clients-case-result strong {
        font-size: 22px;
    }
}

/* =====================================================
   VERY SMALL MOBILE
   Below 360px
===================================================== */

@media (max-width: 360px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .clients-hero-title {
        font-size: 26px;
    }

    .clients-section-heading h2,
    .clients-trust-title,
    .clients-cta-box h2 {
        font-size: 23px;
    }

    .clients-btn {
        font-size: 13px;
        padding: 12px 16px;
    }

    .clients-faq-question h3 {
        font-size: 13.5px;
    }
}