:root {
    /* Colors & Effects */
    --color-bg1: rgba(255, 255, 255, 0);
    --color-bg2: rgba(255, 255, 255, 0);
    --color1: 255, 42, 145;
    --color2: 34, 149, 216;
    --color3: 34, 188, 197;
    --color4: 255, 42, 145;
    --color5: 34, 188, 197;
    --color-interactive: 180, 100, 255;
    --circle-size: 80%;
    --blending: multiply;
    --intensity: 0.30;

    /* Light Mode Defaults */
    --bg-color: #ffffff;
    --text-color: #333333;
    --heading-color: #0B3558;

    /* Glass Effect Defaults */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: rgba(0, 0, 0, 0.05);

    /* Button Defaults */
    --btn-text-white: #000000;
    --btn-bg-white: #ffffff;
    --btn-bg-white-hover: #f0f0f0;

    /* Semantic Components - Light Mode */
    --pill-bg: rgba(255, 255, 255, 0.5);
    --pill-border: rgba(255, 255, 255, 0.3);
    --pill-text: #000000;
    --pill-hover-shadow: rgba(0, 0, 0, 0.15);

    --icon-bg: rgba(255, 255, 255, 0.6);
    --icon-color: #000000;
    --icon-border: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --heading-color: #ffffff;

    /* Glass Effect Dark Mode */
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.5);

    /* Buttons Dark Mode */
    --btn-text-white: #000000;
    --btn-bg-white: #ffffff;
    --btn-bg-white-hover: #f0f0f0;

    /* Semantic Components - Dark Mode */
    --pill-bg: rgba(0, 0, 0, 0.3);
    --pill-border: rgba(255, 255, 255, 0.1);
    --pill-text: #ffffff;
    --pill-hover-shadow: rgba(0, 0, 0, 0.3);

    --icon-bg: rgba(0, 0, 0, 0.6);
    --icon-color: #ffffff;
    --icon-border: rgba(255, 255, 255, 0.1);

    /* Background Colors Adjustments */
    --color1: 200, 42, 145;
    --color2: 34, 100, 216;
    --blending: hard-light;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* IE8 Support */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography Base */
h1 {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 3rem;
    line-height: 3.2rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

h3 {
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
}

p {
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

hr {
    margin: 30px 0px 50px 0px;
    color: rgba(0, 0, 0, 0.3);
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* Default light border for visibility */
}

[data-theme="dark"] hr {
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
}

svg {
    display: none;
}

/* Margin Top Utilities */
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

/* Margin Bottom Utilities */
.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

/* Font Weight Utilities */
.strong-100 {
    font-weight: 100;
}

.strong-200 {
    font-weight: 200;
}

.strong-300 {
    font-weight: 300;
}

.strong-400 {
    font-weight: 400;
}

.strong-500 {
    font-weight: 500;
}

.strong-600 {
    font-weight: 600;
}

.strong-700 {
    font-weight: 700;
}

.strong-800 {
    font-weight: 800;
}

.strong-900 {
    font-weight: 900;
}

/* =========================================
   Layout & Backgrounds
   ========================================= */
.main-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.main-wrapper-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0 80px 0;
}

.glass-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px var(--glass-shadow);
}

/* Gradient Background */
.gradient-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 10%;
    bottom: 10%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--color-bg1), var(--color-bg2));

    /* Fade out top and bottom 10% */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.g1,
.g2,
.g3,
.g4,
.g5,
.interactive {
    position: absolute;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
}

.g1 {
    background: radial-gradient(circle at center, rgba(var(--color1), var(--intensity)) 0, rgba(var(--color1), 0) 50%) no-repeat;
    animation: moveVertical 30s ease infinite;
}

.g2 {
    background: radial-gradient(circle at center, rgba(var(--color2), var(--intensity)) 0, rgba(var(--color2), 0) 50%) no-repeat;
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s infinite reverse;
}

.g3 {
    background: radial-gradient(circle at center, rgba(var(--color3), var(--intensity)) 0, rgba(var(--color3), 0) 50%) no-repeat;
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
}

.g4 {
    background: radial-gradient(circle at center, rgba(var(--color4), var(--intensity)) 0, rgba(var(--color4), 0) 50%) no-repeat;
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
}

.g5 {
    background: radial-gradient(circle at center, rgba(var(--color5), var(--intensity)) 0, rgba(var(--color5), 0) 50%) no-repeat;
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 25s ease infinite;
}

.interactive {
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.5) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.5;
    pointer-events: none;
}

/* =========================================
   Components
   ========================================= */

/* Buttons */
.btn-custom {
    background: #1271ff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    margin: 0 8px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(18, 113, 255, 0.2);
    display: inline-block;
    text-decoration: none;
}

.btn-custom:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-color-main {
    background-color: #2295d8 !important;
}

.btn-color-main:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    background-color: #ff2a91 !important;
    box-shadow: 0 15px 30px rgba(11, 53, 88, 0.4);
}

.btn-white {
    background-color: var(--btn-bg-white) !important;
    color: var(--btn-text-white) !important;
}

.btn-white:hover {
    background-color: var(--btn-bg-white-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Text Gradient */
.txt-gradient {
    background: linear-gradient(130deg, #ff2a91 0%, #2295d8 60%, #2295d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* Theme Switch */
.theme-switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.theme-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-color);
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: .4s;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--text-color);
    transition: .4s;
    z-index: 2;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--glass-bg);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--heading-color);
}

input:checked+.slider:before {
    transform: translateX(28px);
    background-color: #fff;
}

.sun-icon,
.moon-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-color);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.sun-icon {
    left: 8px;
    opacity: 1;
}

.moon-icon {
    right: 8px;
    opacity: 0.5;
}

input:checked+.slider .sun-icon {
    opacity: 0.5;
    color: #fff;
}

input:checked+.slider .moon-icon {
    opacity: 1;
    color: #fff;
}


/* Social Icons */
.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--icon-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--icon-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    color: var(--icon-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--pill-hover-shadow);
    color: var(--icon-color);
}


/* Footer Pills */
.footer-pills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 80px;
}

.footer-pill {
    padding: 7px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: var(--pill-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--pill-border);
    color: var(--pill-text);
}

.footer-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--pill-hover-shadow);
    color: var(--pill-text);
}


/* =========================================
   Sections
   ========================================= */

/* Hero Section */
.hero-section {
    border-radius: 30px;
    padding: 5rem 5rem 0rem 5rem;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 30px auto;
}

.disclaimer {
    padding: 30px 0 0 0;
    font-size: 0.75rem;
}

/* Counters Section */
.counters-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 700px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.counter-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.counter-card:nth-child(1),
.counter-card:nth-child(2),
.counter-card:nth-child(3) {
    width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
}

.counter-card:nth-child(4),
.counter-card:nth-child(5) {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-number-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.plus-sign {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 3px;
    margin-top: -3px;
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0;
    font-weight: 400;
}


/* Reviews Section */
.reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.reviews-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 1rem 2rem 0.5rem 2rem;
    box-shadow: 0 10px 30px var(--glass-shadow);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    display: block;
}

.reviews-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reviews-badge img {
    display: inline-block;
    width: 26px;
    height: 26px;
    vertical-align: middle;
    margin-right: 8px;
}

.reviews-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.reviews-score {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-color);
}

.reviews-stars {
    color: #fbbc04;
    font-size: 1rem;
    margin-left: 8px;
}

.review-text {
    color: var(--text-color);
}


/* Awards Section */
.awards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 70px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.award-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.award-subtitle {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
}


/* Clients Section */
.clients-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 50px auto 150px auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    transition: all 0.3s ease;
}

.clients-grid .client-logo.is-visible {
    opacity: 0.87;
}

.clients-grid .client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

[data-theme="dark"] .client-logo {
    filter: brightness(0) invert(1);
}


/* Footer Section */
footer {
    position: relative;
    width: 100%;
    z-index: 20;
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: 20px;
}

footer p {
    text-align: center;
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 400;
    margin: 6px 0px;
}

.footer-logo {
    width: 220px;
    height: auto;
    display: block;
    margin: 20px auto 50px auto;
    transition: filter 0.3s ease;
    filter: brightness(0);
}

[data-theme="dark"] .footer-logo {
    filter: brightness(0) invert(1);
}


/* =========================================
   Animations
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 0.9;
    transform: translate(0, 0);
}

.fade-up {
    transform: translateY(30px);
}

.fade-down {
    transform: translateY(-30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.fade-in {
    transform: none;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Background Blobs Animations */
@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }

    50% {
        transform: translateX(50%) translateY(10%);
    }

    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}


/* =========================================
   Media Queries
   ========================================= */

/* Tablet & Smaller (Max 1024px) */
@media (max-width: 1024px) {}

/* Tablet (Max 990px) */
@media (max-width: 990px) {
    .main-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 0px 20px 0px 20px;
    }

    .main-wrapper-inner {
        display: block;
        padding-bottom: 30px;
    }

    .hero-section {
        padding: 5rem 4rem 2rem 4rem;
        margin: 20px auto;
    }

    h1 {
        font-size: 2.2rem;
    }

    .btn-custom {
        display: block;
        width: 100%;
        margin: 0 auto 20px auto;
    }

    .btn-custom:last-child {
        margin-bottom: 0;
    }

    footer {
        margin-top: 0;
        width: 100%;
        z-index: 20;
    }

    .glass-box {
        text-align: center;
    }

    /* Counters Table Layout */
    .counters-wrapper {
        flex-direction: row;
        justify-content: center;
    }

    .counter-card:nth-child(1),
    .counter-card:nth-child(2),
    .counter-card:nth-child(3),
    .counter-card:nth-child(4) {
        width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }

    .counter-card:nth-child(5) {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 0px;
    }
}

/* Mobile (Max 600px) */
@media (max-width: 600px) {
    .hero-section {
        padding: 3rem 2rem 2rem 2rem;
    }

    .counters-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        /* Reduced gap for mobile fitting */
    }

    /* 2 in a row (4 items total) */
    .counter-card:nth-child(1),
    .counter-card:nth-child(2),
    .counter-card:nth-child(3),
    .counter-card:nth-child(4) {
        width: calc(50% - 5px);
        /* 50% minus half the gap */
        flex: 0 0 calc(50% - 5px);
        padding: 15px 10px;
        /* Revert to standard padding */
    }

    /* Reset font sizes for 2-column layout */
    .counter-card:nth-child(1) h3,
    .counter-card:nth-child(2) h3,
    .counter-card:nth-child(3) h3 {
        font-size: 2.2rem;
    }

    .counter-card:nth-child(1) .counter-label,
    .counter-card:nth-child(2) .counter-label,
    .counter-card:nth-child(3) .counter-label {
        font-size: 0.85rem;
    }

    .counter-card:nth-child(1) .plus-sign,
    .counter-card:nth-child(2) .plus-sign,
    .counter-card:nth-child(3) .plus-sign {
        font-size: 1.4rem;
    }


    /* Full width for last item (2000+) */
    .counter-card:nth-child(5) {
        width: 100%;
        max-width: none;
        flex: 1 1 100%;
    }

    .reviews-container {
        flex-direction: row;
        gap: 10px;
    }

    .reviews-badge {
        width: calc(50% - 5px);
        flex: 0 0 calc(50% - 5px);
        padding: 1rem 0.5rem;
        /* Reduce padding for mobile */
    }

    .reviews-badge img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .reviews-score {
        font-size: 1rem;
    }

    .reviews-stars {
        font-size: 0.8rem;
        margin-left: 5px;
    }

    .awards-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .award-card {
        width: 100%;
        min-width: auto;
        padding: 20px;
        flex: 1 1 auto;
        text-align: center;
    }

    .award-card h3 {
        font-size: 1.3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .client-logo:last-child {
        display: none;
    }
}