:root {
    --bg-main: #03060f;
    --bg-soft: #091122;
    --bg-card: rgba(12, 20, 37, 0.62);
    --text-main: #f2f6ff;
    --text-muted: #afbddb;
    --stroke: rgba(150, 176, 255, 0.22);
    --accent: #2f6dff;
    --accent-soft: #72a0ff;
    --glow: 0 0 34px rgba(64, 123, 255, 0.5);
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    background: radial-gradient(circle at 85% -10%, #152c61 0%, transparent 35%), radial-gradient(circle at 0% 0%, #0e1b3d 0%, transparent 34%), var(--bg-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-muted);
    line-height: 1.72;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-pad {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

.section-pad-tight {
    padding: 36px 0;
}

.home-page {
    overflow-x: clip;
}

.home-page .hero-section.section-pad {
    padding-bottom: 42px;
}

.home-page .home-services-section {
    padding-top: 52px;
}

.home-page .section-pad-tight h2 {
    margin-bottom: 12px;
}

.home-page .section-pad-tight p {
    max-width: 920px;
}

.page-hero {
    padding-top: 148px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    max-width: 920px;
    margin-inline: auto;
}

.page-hero p {
    max-width: 760px;
    margin-inline: auto;
}

.section-muted {
    background: linear-gradient(180deg, rgba(10, 18, 35, 0.72), rgba(5, 11, 23, 0.45));
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #9dbbff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.bg-glow {
    position: fixed;
    border-radius: 999px;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.bg-glow-one {
    width: 380px;
    height: 380px;
    left: -120px;
    top: 12%;
    background: rgba(58, 118, 255, 0.3);
}

.bg-glow-two {
    width: 440px;
    height: 440px;
    right: -150px;
    bottom: 7%;
    background: rgba(43, 95, 235, 0.28);
}

#site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #02040b;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

#site-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-brand {
    filter: drop-shadow(0 0 20px rgba(79, 129, 255, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-d-mark {
    width: min(122px, 30vw);
    height: auto;
    max-height: min(110px, 24vw);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    animation: loaderPulse 1.3s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.88;
    }
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--stroke);
    border-radius: 22px;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(3, 8, 18, 0.45);
}

#mainNavbar {
    padding: 16px 0;
    z-index: 1055;
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

#mainNavbar.scrolled {
    background: rgba(4, 10, 22, 0.74);
    border-bottom: 1px solid rgba(138, 167, 245, 0.2);
    backdrop-filter: blur(14px);
}

.brand-logo-link {
    line-height: 0;
    padding: 0;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    max-width: min(220px, calc(100vw - 88px));
    display: block;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 0 16px rgba(80, 132, 255, 0.34));
}

.brand-logo-img--footer {
    height: 46px;
    max-width: 250px;
}

.nav-link {
    color: #d8e2ff;
    font-size: 0.93rem;
    font-weight: 500;
    margin: 0 7px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #7eadff, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav {
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f6dff, #1f4de2);
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(71, 128, 255, 0.25);
}

/* —— Services mega menu (Lumosys-style) —— */
#mainNavbar,
#mainNavbar .container,
#mainNavbar .navbar-collapse {
    overflow: visible;
}

.nav-mega-item {
    position: static;
}

.nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-mega-chevron {
    font-size: 0.65rem;
    opacity: 0.75;
    transition: transform 0.25s ease;
}

.nav-mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
    z-index: 1050;
}

.nav-mega-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

@media (min-width: 992px) {

    .nav-mega-item.is-open .nav-mega-chevron,
    .nav-mega-item:hover .nav-mega-chevron {
        transform: rotate(180deg);
    }

    .nav-mega-item.is-open .nav-mega-panel,
    .nav-mega-item:hover .nav-mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.nav-mega-inner {
    margin: 10px max(12px, calc((100vw - 1320px) / 2)) 0;
    padding: 22px 22px 16px;
    border-radius: 18px;
    border: 1px solid rgba(145, 172, 240, 0.28);
    background: rgba(6, 12, 26, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px rgba(2, 6, 16, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-mega-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.nav-mega-col-head h6 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.nav-mega-col-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-col--web .nav-mega-col-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.mega-col--crm .nav-mega-col-icon {
    background: rgba(20, 184, 166, 0.18);
    color: #5eead4;
}

.mega-col--ai .nav-mega-col-icon {
    background: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
}

.mega-col--data .nav-mega-col-icon {
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
}

.mega-col--shop .nav-mega-col-icon {
    background: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
}

.nav-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mega-links li+li {
    margin-top: 4px;
}

.nav-mega-links a {
    display: block;
    padding: 5px 0;
    font-size: 0.86rem;
    color: rgba(210, 222, 255, 0.78);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-mega-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.nav-mega-links li:last-child a {
    color: #a78bfa;
    font-weight: 600;
    margin-top: 6px;
}

.nav-mega-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(140, 168, 240, 0.2);
}

.nav-mega-footer p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
}

.nav-mega-footer a {
    font-size: 0.88rem;
    font-weight: 600;
    color: #b794ff;
    white-space: nowrap;
}

.nav-mega-footer a:hover {
    color: #ddd6fe;
}

.nav-mega-footer a i {
    margin-left: 4px;
}

/* Service detail pages */
.service-page .service-lead {
    max-width: 40rem;
    margin: 0 auto 1rem;
}

.service-hero-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-top: 1.25rem;
    padding: 14px 22px;
    border-radius: 16px;
    border: 1px solid rgba(140, 168, 240, 0.25);
    background: rgba(12, 20, 40, 0.55);
}

.service-hero-price__usd {
    font-family: Manrope, sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    color: #fff;
}

.service-hero-price__inr {
    font-family: Manrope, sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
}

.service-hero-price__note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.service-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(140, 168, 240, 0.12);
    color: var(--text-muted);
}

.service-feature-list li:last-child {
    border-bottom: 0;
}

.service-feature-list i {
    color: #7eadff;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-deliverables {
    margin: 12px 0 0;
    padding-left: 1.1rem;
    color: var(--text-muted);
}

.service-deliverables li {
    margin-bottom: 8px;
}

.services-hub-card {
    padding: 24px;
    height: 100%;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.services-hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(171, 196, 255, 0.55);
}

.services-hub-card h3 {
    font-size: 1.15rem;
    margin: 12px 0 8px;
}

.services-hub-card .hub-price {
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    margin: 10px 0 4px;
}

.services-hub-card .hub-price span {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 8px;
}

/* —— Expanded service detail pages —— */
.svc-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.svc-hero-glow {
    position: absolute;
    width: min(520px, 90vw);
    height: 320px;
    top: 10%;
    right: -8%;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.service-page--websites .svc-hero-glow {
    background: rgba(59, 130, 246, 0.55);
}

.service-page--ecommerce .svc-hero-glow {
    background: rgba(168, 85, 247, 0.5);
}

.service-page--crm .svc-hero-glow {
    background: rgba(20, 184, 166, 0.45);
}

.service-page--ai .svc-hero-glow {
    background: rgba(236, 72, 153, 0.4);
}

.service-page--scraping .svc-hero-glow {
    background: rgba(245, 158, 11, 0.42);
}

.svc-hero .container {
    position: relative;
    z-index: 1;
}

.svc-hero h1 {
    max-width: 100%;
    margin-inline: 0;
    text-align: inherit;
}

.service-page .service-lead {
    margin-inline: 0;
    text-align: inherit;
    max-width: 36rem;
}

.svc-hero-note {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 34rem;
    margin: 0 0 1rem;
}

.svc-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    justify-content: inherit;
}

@media (min-width: 992px) {
    .svc-trust-pills {
        justify-content: flex-start;
    }
}

.svc-trust-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
}

.svc-trust-pills i {
    color: #6ee7b7;
    font-size: 0.85rem;
}

.svc-hero-card {
    padding: 26px;
    text-align: center;
}

.svc-hero-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-col--shop .svc-hero-card-icon,
.mega-col--shop.service-detail-icon {
    background: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
}

.svc-hero-card .service-hero-price {
    margin-top: 0;
    width: 100%;
}

.service-hero-price__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}

.svc-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(140, 168, 240, 0.15);
}

.svc-hero-stat strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 1.15rem;
    color: #fff;
}

.svc-hero-stat span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.svc-bento-grid .bento-card--wide {
    grid-column: span 8;
}

.svc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.svc-process-step {
    padding: 22px;
    position: relative;
}

.svc-process-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 12px;
    background: rgba(47, 109, 255, 0.2);
    color: #9ec0ff;
    border: 1px solid rgba(126, 173, 255, 0.35);
}

.service-page--ecommerce .svc-process-num {
    background: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
    border-color: rgba(192, 132, 252, 0.35);
}

.service-page--crm .svc-process-num {
    background: rgba(20, 184, 166, 0.18);
    color: #5eead4;
    border-color: rgba(45, 212, 191, 0.35);
}

.service-page--ai .svc-process-num {
    background: rgba(236, 72, 153, 0.18);
    color: #f9a8d4;
    border-color: rgba(244, 114, 182, 0.35);
}

.service-page--scraping .svc-process-num {
    background: rgba(245, 158, 11, 0.18);
    color: #fcd34d;
    border-color: rgba(251, 191, 36, 0.35);
}

.svc-process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.svc-usecase-card {
    padding: 24px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.svc-usecase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(171, 196, 255, 0.5);
}

.svc-usecase-card>i {
    font-size: 1.5rem;
    color: #9fb9ff;
    margin-bottom: 12px;
    display: block;
}

.svc-tier-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.svc-tier-card--featured {
    border-color: rgba(126, 173, 255, 0.55);
    box-shadow: 0 0 40px rgba(47, 109, 255, 0.15);
}

.svc-tier-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(47, 109, 255, 0.25);
    color: #b8d4ff;
    margin-bottom: 10px;
    width: fit-content;
}

.svc-tier-price .amount-usd {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.svc-tier-price .amount-inr {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.svc-tier-desc {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.svc-deep-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    min-height: 100%;
}

.svc-deep-card .service-detail-icon {
    margin-bottom: 4px;
}

.svc-deep-card h4 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.3;
}

.svc-deep-card p {
    margin: 0;
    flex: 1;
    line-height: 1.6;
    padding-bottom: 4px;
}

.svc-card-tag {
    display: inline-block;
    align-self: flex-start;
    margin: 0 0 2px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #c4b5fd;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(167, 139, 250, 0.14);
    border: 1px solid rgba(167, 139, 250, 0.28);
}

.service-page--websites .svc-card-tag {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(147, 197, 253, 0.3);
}

.service-page--ecommerce .svc-card-tag {
    color: #d8b4fe;
    background: rgba(168, 85, 247, 0.14);
    border-color: rgba(216, 180, 254, 0.3);
}

.service-page--crm .svc-card-tag {
    color: #5eead4;
    background: rgba(20, 184, 166, 0.12);
    border-color: rgba(94, 234, 212, 0.3);
}

.service-page--ai .svc-card-tag {
    color: #f9a8d4;
    background: rgba(236, 72, 153, 0.12);
    border-color: rgba(249, 168, 212, 0.3);
}

.service-page--scraping .svc-card-tag {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(252, 211, 77, 0.3);
}

.cta-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
}

.cta-banner h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.cta-banner p {
    margin: 0;
    max-width: 36rem;
}

.svc-final-cta {
    align-items: center;
}

.svc-results-strip {
    padding-top: 0;
}

.svc-results-card {
    padding: 28px 20px;
}

.svc-result-item strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.svc-result-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.svc-faq {
    max-width: 760px;
    margin-inline: auto;
}

.svc-related-card {
    padding: 20px;
    transition: transform 0.22s ease, border-color 0.22s ease;
    color: inherit;
}

.svc-related-card:hover {
    color: inherit;
    transform: translateY(-5px);
    border-color: rgba(171, 196, 255, 0.5);
}

.svc-related-card i {
    font-size: 1.35rem;
    color: #9fb9ff;
    margin-bottom: 10px;
    display: block;
}

.svc-related-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.svc-related-card p {
    font-size: 0.86rem;
}

@media (max-width: 991px) {
    .svc-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .svc-bento-grid .bento-card--wide {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
    }

    .cta-banner .d-flex {
        justify-content: center !important;
        width: 100%;
    }

    .cta-banner .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575px) {
    .svc-process-grid {
        grid-template-columns: 1fr;
    }

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

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
}

.trust-pill--green {
    border-color: rgba(52, 211, 153, 0.35);
    color: #6ee7b7;
}

.trust-pill--purple {
    border-color: rgba(167, 139, 250, 0.35);
    color: #c4b5fd;
}

.trust-pill--blue {
    border-color: rgba(96, 165, 250, 0.35);
    color: #93c5fd;
}

.price-asterisk {
    color: #a78bfa;
    font-weight: 600;
}

.hero-section {
    padding-top: 146px;
    overflow: hidden;
    isolation: isolate;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-light {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-light-one {
    width: 350px;
    height: 350px;
    left: -130px;
    top: 40px;
    background: radial-gradient(circle, rgba(108, 154, 255, 0.3), transparent 70%);
    animation: driftOne 9s ease-in-out infinite;
}

.hero-light-two {
    width: 420px;
    height: 420px;
    right: -150px;
    top: 20px;
    background: radial-gradient(circle, rgba(73, 124, 255, 0.25), transparent 72%);
    animation: driftTwo 11s ease-in-out infinite;
}

.hero-grid-glow {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: linear-gradient(to right, rgba(148, 179, 255, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(148, 179, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0));
}

.hero-blob {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(6px);
    opacity: 0.5;
}

.hero-blob-one {
    width: 220px;
    height: 220px;
    left: 32%;
    top: 16%;
    background: radial-gradient(circle, rgba(76, 131, 255, 0.4), transparent 70%);
    animation: floatY 7s ease-in-out infinite;
}

.hero-blob-two {
    width: 260px;
    height: 260px;
    right: 20%;
    bottom: 0%;
    background: radial-gradient(circle, rgba(120, 166, 255, 0.28), transparent 74%);
    animation: floatY 9s ease-in-out infinite reverse;
}

.hero-blob-three {
    width: 160px;
    height: 160px;
    right: 8%;
    top: 20%;
    background: radial-gradient(circle, rgba(65, 116, 255, 0.36), transparent 70%);
    animation: floatY 6.6s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(167, 194, 255, 0.82);
    box-shadow: 0 0 12px rgba(99, 147, 255, 0.62);
    animation: particleFloat var(--dur, 8s) linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110px);
        opacity: 0;
    }
}

@keyframes driftOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(22px, 16px, 0);
    }
}

@keyframes driftTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-28px, 14px, 0);
    }
}

.hero-section h1 {
    font-size: 45px;
}

.hero-highlight {
    color: transparent;
    background: linear-gradient(92deg, #7db1ff, #3d8bff 40%, #92c4ff);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 20px rgba(61, 135, 255, 0.3);
    position: relative;
}

.hero-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(90, 148, 255, 0.92), transparent);
    animation: underlinePulse 2.4s ease-in-out infinite;
}

@keyframes underlinePulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(0.9);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-subtext {
    margin-bottom: 24px;
    max-width: 640px;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.hero-trust-list span {
    border: 1px solid rgba(149, 177, 255, 0.32);
    background: rgba(58, 108, 245, 0.14);
    color: #d8e5ff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.83rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium,
.btn-premium-outline {
    border-radius: 14px;
    padding: 12px 24px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-premium {
    border: 0;
    background: linear-gradient(135deg, #2f6dff, #4e94ff);
    box-shadow: 0 10px 28px rgba(43, 104, 255, 0.42);
    position: relative;
    overflow: hidden;
    color: #f5f9ff;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(43, 104, 255, 0.48);
    color: #ffffff;
}

.btn-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.45s ease;
}

.btn-premium:hover::before {
    left: 120%;
}

.btn-premium-outline {
    border: 1px solid rgba(138, 168, 247, 0.45);
    background: rgba(14, 23, 42, 0.46);
    color: #f0f4ff;
}

.btn-premium-outline:hover {
    transform: translateY(-3px);
    border-color: rgba(176, 198, 255, 0.8);
    box-shadow: 0 0 24px rgba(78, 135, 255, 0.24);
}

.hero-metrics h3,
.stat-item h3 {
    font-size: 1.9rem;
    margin: 0;
}

.hero-metrics p,
.stat-item p {
    margin: 0;
    font-size: 0.86rem;
}

.hero-client-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-client-indicators span {
    font-size: 0.83rem;
    color: #d9e5ff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-visual {
    min-height: auto;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-page .hero-section {
    background: #030711;
}

.home-page .hero-light-two,
.home-page .hero-blob-two,
.home-page .hero-blob-three {
    opacity: 0.2;
}

.home-page .hero-grid-glow {
    opacity: 0.15;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 70%);
}

.home-page {
    overflow-x: clip;
}

.home-page .hero-particles {
    display: none;
}

.home-page .section-pad:not(.hero-section) {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.hero-right-col {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}

/* Estedic-style hero — no card bg, open grid + particles */
.hero-estedic-panel {
    position: relative;
    z-index: 2;
    min-height: 520px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.hero-estedic-grid {
    position: absolute;
    inset: -30px -20px -10px -10px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    background-color: transparent;
    background-image:
        linear-gradient(to right, rgba(88, 130, 210, 0.14) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(88, 130, 210, 0.11) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-particle-stage {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    width: 100%;
    z-index: 2;
}

.hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 54px);
    pointer-events: none;
    z-index: 1;
}

.hero-particle-canvas[hidden] {
    display: none;
}

.hero-brand-wordmark {
    position: relative;
    z-index: 3;
    margin: auto 0 8px;
    padding-top: 6px;
    font-family: Manrope, sans-serif;
    font-size: clamp(1.55rem, 3.4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.hero-brand-wordmark__main {
    color: #eef3ff;
    text-shadow: 0 0 32px rgba(100, 160, 255, 0.38);
}

.hero-brand-wordmark__x {
    background: linear-gradient(92deg, #7db1ff, #3d8bff 42%, #92c4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(61, 135, 255, 0.5));
}

.hero-tech-slider {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 20px 0 4px;
    background: none;
    border: none;
    border-top: 1px solid rgba(100, 140, 220, 0.12);
    width: 100%;
}

.hero-tech-slider__label {
    margin: 0 0 16px;
    padding: 0;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(150, 170, 210, 0.55);
    font-weight: 600;
    text-align: center;
}

.hero-tech-slider__track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero-tech-slider__row {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    padding: 0 8px;
    animation: heroTechMarquee 36s linear infinite;
}

.hero-tech-slider__row:hover {
    animation-play-state: paused;
}

.hero-tech-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: rgba(190, 205, 235, 0.55);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.hero-tech-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(1) brightness(1.4);
}

.hero-tech-item:hover {
    opacity: 1;
    color: rgba(220, 232, 255, 0.88);
}

.hero-tech-item:hover img {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

@keyframes heroTechMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-visual-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.hero-visual-intro .chip {
    margin-bottom: 8px;
}

.hero-visual-vision {
    margin: 0;
    font-size: 0.86rem;
    color: #b8c9ef;
    line-height: 1.5;
    max-width: 380px;
}

.hero-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    position: relative;
    z-index: 2;
}

.hero-service-tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(150, 176, 255, 0.18);
    background: rgba(10, 18, 36, 0.52);
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero-service-tile.is-active {
    border-color: rgba(108, 158, 255, 0.52);
    background: rgba(42, 82, 180, 0.2);
    box-shadow: 0 0 22px rgba(64, 120, 255, 0.16);
}

.hero-tile-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 118, 255, 0.16);
    color: #9ec0ff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero-service-tile.is-active .hero-tile-icon {
    background: rgba(88, 140, 255, 0.28);
    color: #c8dcff;
}

.hero-tile-body h3 {
    margin: 0 0 4px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #eef3ff;
}

.hero-tile-body p {
    margin: 0;
    font-size: 0.73rem;
    line-height: 1.4;
    color: #9eb0d6;
}

.hero-live-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(130, 160, 255, 0.22);
    background: rgba(8, 16, 32, 0.58);
    position: relative;
    z-index: 2;
}

.hero-live-bar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5dffa0;
    box-shadow: 0 0 10px rgba(93, 255, 160, 0.7);
    animation: livePulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-live-bar-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7db1ff;
    flex-shrink: 0;
}

.hero-live-bar p,
#heroLiveNotif {
    margin: 0;
    font-size: 0.8rem;
    color: #dce6ff;
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.chip {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(80, 132, 255, 0.16);
    color: #d5e4ff;
    font-size: 0.8rem;
    border: 1px solid rgba(130, 168, 255, 0.28);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8dffb8;
    background: rgba(36, 120, 78, 0.18);
    border: 1px solid rgba(98, 220, 150, 0.35);
}

.live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5dffa0;
    box-shadow: 0 0 12px rgba(93, 255, 160, 0.75);
    animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.65;
    }
}

.visual-wave {
    position: absolute;
    left: -22%;
    right: -22%;
    bottom: -26%;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(61, 126, 255, 0.42), transparent 64%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
        opacity: 0.82;
    }
}

.clients-strip {
    padding: 28px 0;
    border-top: 1px solid rgba(145, 170, 238, 0.15);
    border-bottom: 1px solid rgba(145, 170, 238, 0.15);
}

.clients-strip p {
    margin-bottom: 14px;
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    text-align: center;
    color: #c5d4f9;
}

/* —— Customers who trust us (Estedic light band) —— */
.trusted-clients-section {
    position: relative;
    padding: 0;
    overflow-x: clip;
    max-width: 100%;
}

.trusted-clients-band {
    position: relative;
    padding: 28px 0 32px;
    max-width: 100%;
    background: linear-gradient(180deg, #e6eef9 0%, #dce8f6 45%, #e3ecf8 100%);
    border-top: 1px solid rgba(100, 145, 210, 0.18);
    border-bottom: 1px solid rgba(100, 145, 210, 0.18);
    overflow: hidden;
    isolation: isolate;
}

.trusted-clients-band__curves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background:
        radial-gradient(ellipse 42% 80% at -5% 50%, rgba(255, 255, 255, 0.85), transparent 70%),
        radial-gradient(ellipse 38% 75% at 105% 40%, rgba(255, 255, 255, 0.75), transparent 68%),
        radial-gradient(ellipse 55% 40% at 50% 110%, rgba(180, 205, 240, 0.35), transparent 70%);
}

.trusted-clients-label {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3a6aad;
}

.trusted-clients-marquee-wrap {
    position: relative;
    z-index: 1;
    padding: 4px 0;
}

.trusted-clients-marquee-wrap::before,
.trusted-clients-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(100px, 10vw);
    z-index: 2;
    pointer-events: none;
}

.trusted-clients-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #e3ecf8 35%, transparent);
}

.trusted-clients-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #dce8f6 35%, transparent);
}

.trusted-clients-marquee {
    overflow: hidden;
}

.trusted-clients-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 0 20px;
    animation: trustedMarquee 40s linear infinite;
}

.trusted-clients-marquee-wrap:hover .trusted-clients-track {
    animation-play-state: paused;
}

.trusted-client-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    max-width: 220px;
    height: 58px;
    padding: 0 22px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(130, 165, 215, 0.14);
    box-shadow: 0 4px 18px rgba(30, 70, 130, 0.07);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trusted-client-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(80, 130, 210, 0.28);
    box-shadow: 0 8px 24px rgba(30, 70, 130, 0.12);
}

.trusted-client-pill__text {
    font-family: Manrope, Inter, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1e3050;
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
}

@keyframes trustedMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.service-card,
.founder-card,
.bento-card,
.timeline-item,
.stat-item,
.testimonial-card,
.contact-card {
    padding: 24px;
}

.mission-card,
.cta-side {
    padding: 24px;
}

.mission-card h4,
.cta-side h4 {
    margin-bottom: 10px;
}

.mission-card p:last-child,
.cta-side p:last-child {
    margin-bottom: 0;
}

.service-detail-card {
    padding: 26px;
    border-radius: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(171, 196, 255, 0.6);
    box-shadow: 0 0 28px rgba(63, 121, 255, 0.22);
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    font-size: 1.3rem;
    color: #c5daff;
    border: 1px solid rgba(152, 179, 248, 0.4);
    background: rgba(66, 113, 235, 0.2);
}

.service-card {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card i {
    color: #9fb9ff;
    font-size: 1.48rem;
}

.service-card h3 {
    margin: 12px 0 8px;
    font-size: 1.08rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #9fb9ff;
}

a.service-card {
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.service-card:hover {
    color: inherit;
}

a.service-card:hover .service-card-link {
    color: #c7d8ff;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 191, 255, 0.52);
    box-shadow: 0 0 26px rgba(63, 121, 255, 0.22);
}

.stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.stack-badges span {
    border-radius: 999px;
    border: 1px solid rgba(141, 171, 249, 0.38);
    background: rgba(53, 100, 225, 0.15);
    padding: 6px 12px;
    font-size: 0.78rem;
    color: #d8e6ff;
}

.founder-card .role {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ab7f7;
}

.skill-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 0.92rem;
}

.skill-line strong {
    color: #b9d0ff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.stat-item {
    border-radius: 18px;
    border: 1px solid var(--stroke);
    text-align: center;
    background: rgba(11, 19, 36, 0.68);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.bento-card {
    grid-column: span 4;
    min-height: 185px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bento-card:nth-child(2),
.bento-card:nth-child(5) {
    grid-column: span 8;
}

.bento-card i {
    color: #9bb7ff;
    font-size: 1.25rem;
}

.bento-card:hover {
    transform: translateY(-7px);
    border-color: rgba(169, 194, 255, 0.56);
}

#why-us .bento-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

#why-us .bento-card,
#why-us .bento-card:nth-child(2),
#why-us .bento-card:nth-child(5) {
    grid-column: span 1;
    min-height: 170px;
}

.founder-names {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin: 22px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.about-copy {
    display: flex;
    flex-direction: column;
}

.about-side-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(150, 176, 255, 0.18);
    background: linear-gradient(160deg, rgba(14, 24, 46, 0.72), rgba(8, 14, 28, 0.55));
}

.about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    flex: 1;
}

.about-stats-grid .stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 118px;
    padding: 22px 16px;
}

.about-stack-wrap {
    padding-top: 4px;
    border-top: 1px solid rgba(150, 176, 255, 0.14);
}

.about-stack-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8fa8d8;
}

.founder-names__sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a4c, #ff4d4d);
    box-shadow: 0 0 14px rgba(255, 100, 60, 0.65);
}

.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 40%, rgba(255, 120, 50, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 88% 60%, rgba(255, 70, 90, 0.1) 0%, transparent 38%);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
    position: relative;
    z-index: 1;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 4px 0;
    transition: transform 0.22s ease;
}

.why-feature:hover {
    transform: translateX(4px);
}

.why-feature__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    background: linear-gradient(145deg, #ff7a45 0%, #ff3d5a 52%, #7b5cff 100%);
    box-shadow: 0 8px 28px rgba(255, 80, 60, 0.28);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.why-feature:hover .why-feature__icon {
    box-shadow: 0 10px 36px rgba(255, 90, 50, 0.45);
    transform: scale(1.06);
}

.why-feature__body h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.why-feature__body p {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.filter-btn {
    appearance: none;
    border: 1px solid rgba(149, 176, 244, 0.28);
    background: rgba(12, 22, 40, 0.72);
    color: #d8e6ff;
    border-radius: 12px;
    padding: 9px 14px;
    font-size: 0.84rem;
    line-height: 1.1;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(164, 191, 255, 0.62);
    background: rgba(44, 87, 196, 0.3);
    color: #ffffff;
}

.filter-btn.active {
    border-color: rgba(173, 197, 255, 0.75);
    background: linear-gradient(135deg, rgba(48, 103, 245, 0.78), rgba(46, 83, 214, 0.66));
    color: #f4f8ff;
    box-shadow: 0 0 20px rgba(76, 128, 255, 0.28);
}

.portfolio-card,
.blog-card,
.pricing-card {
    height: 100%;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    background: rgba(10, 18, 34, 0.82);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.portfolio-card span {
    color: #a4c0ff;
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.portfolio-card h4 {
    margin-top: 10px;
}

.portfolio-card a {
    color: #bed2ff;
    font-size: 0.9rem;
    display: inline-flex;
    margin-top: 8px;
}

.portfolio-card:hover,
.blog-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(163, 188, 255, 0.58);
}

.table-wrap {
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(153, 179, 245, 0.22);
    background: rgba(8, 15, 29, 0.72);
}

.premium-table {
    margin-bottom: 0;
    color: #d8e5ff;
    border-color: rgba(150, 176, 242, 0.2);
}

.premium-table> :not(caption)>*>* {
    background: transparent;
    color: inherit;
    border-color: rgba(150, 176, 242, 0.16);
    padding: 14px 12px;
}

.premium-table thead th {
    font-weight: 700;
    color: #f3f7ff;
    background: rgba(45, 84, 176, 0.22);
}

.premium-table tbody tr:hover {
    background: rgba(67, 115, 228, 0.1);
}

.premium-table tbody td:first-child,
.premium-table thead th:first-child {
    font-weight: 600;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(77, 131, 255, 0.14), rgba(120, 165, 255, 0.72), rgba(77, 131, 255, 0.14));
}

.timeline-item {
    border: 1px solid var(--stroke);
    border-radius: 18px;
    background: rgba(9, 16, 31, 0.74);
    position: relative;
}

.timeline-item span {
    color: #9ab6ff;
    font-weight: 700;
    font-size: 0.84rem;
}

.testimonial-slider {
    position: relative;
    min-height: 235px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.testimonial-card p {
    color: #dbe7ff;
    font-size: 1.04rem;
    margin-bottom: 16px;
}

.testimonial-card h6 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 0.76rem;
    color: #ecf3ff;
    border: 1px solid rgba(157, 183, 255, 0.4);
    background: rgba(57, 106, 236, 0.28);
}

.pricing-card h5 {
    color: #dbe6ff;
}

.pricing-card h3 {
    font-size: 2.1rem;
    margin-bottom: 0.7rem;
}

.pricing-card h3 span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card.featured {
    border-color: rgba(161, 188, 255, 0.62);
    box-shadow: var(--glow);
    transform: scale(1.03);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
}

.price-features li {
    margin-bottom: 8px;
    color: #d2e0ff;
    position: relative;
    padding-left: 16px;
}

.price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ea7ff;
}

.accordion-item {
    margin-bottom: 11px;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: rgba(8, 14, 27, 0.8);
}

.accordion-button {
    background: transparent;
    color: #e8efff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(58, 113, 247, 0.22);
}

.accordion-body {
    color: var(--text-muted);
    background: rgba(5, 11, 21, 0.76);
}

.blog-image {
    min-height: 150px;
    border-radius: 14px;
    border: 1px solid rgba(145, 169, 238, 0.32);
    margin-bottom: 14px;
    background: linear-gradient(130deg, rgba(76, 128, 255, 0.34), rgba(15, 30, 56, 0.84));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 2rem;
    color: rgba(200, 220, 255, 0.88);
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}

.blog-image--travel {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(10, 18, 36, 0.82));
}

.blog-image--logistics {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(10, 18, 36, 0.82));
}

.blog-image--ecommerce {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.24), rgba(10, 18, 36, 0.82));
}

.blog-image--retail {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.22), rgba(10, 18, 36, 0.82));
}

.blog-image--industrial {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.28), rgba(10, 18, 36, 0.82));
}

.blog-image--software {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.24), rgba(10, 18, 36, 0.82));
}

.tag {
    display: inline-block;
    font-size: 0.73rem;
    color: #bfd3ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.blog-card a {
    color: #c8d9ff;
    font-size: 0.9rem;
}

.contact-points {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.contact-points a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4e2ff;
}

.contact-points i {
    color: #8db0ff;
}

.contact-card .form-control,
.contact-card .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(143, 170, 237, 0.28);
    color: #fff;
}

.contact-card .form-select option {
    background: #0b1327;
    color: #eaf1ff;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: rgba(126, 164, 255, 0.82);
    box-shadow: 0 0 0 0.2rem rgba(56, 114, 255, 0.18);
}

.contact-card .form-control::placeholder {
    color: rgba(210, 224, 255, 0.62);
}

.contact-card--compact {
    padding: 22px 24px;
}

.inquiry-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inquiry-field--full {
    grid-column: 1 / -1;
}

.inquiry-field label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #c5d8ff;
}

.inquiry-field label i {
    color: #8db0ff;
    font-size: 0.9rem;
}

.inquiry-form .form-control {
    min-height: 46px;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.92rem;
}

.inquiry-form textarea.form-control {
    min-height: 88px;
    resize: vertical;
}

.inquiry-form__submit {
    width: 100%;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 575px) {
    .inquiry-form__grid {
        grid-template-columns: 1fr;
    }
}

/* —— Thank you page —— */
.thank-you-page {
    position: relative;
    overflow: hidden;
}

.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
}

.thank-you-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.thank-you-glow--one {
    width: 420px;
    height: 420px;
    top: 10%;
    left: -8%;
    background: rgba(47, 109, 255, 0.22);
}

.thank-you-glow--two {
    width: 360px;
    height: 360px;
    bottom: 5%;
    right: -6%;
    background: rgba(255, 100, 60, 0.16);
}

.thank-you-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 42px 36px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thank-you-icon {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff7a45, #ff3d5a 55%, #7b5cff);
    box-shadow: 0 12px 40px rgba(255, 80, 60, 0.35);
    animation: thankYouPop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.thank-you-icon__ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 130, 80, 0.35);
    animation: thankYouRing 1.8s ease-out infinite;
}

.thank-you-icon i {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 700;
}

.thank-you-card h1 {
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.thank-you-lead {
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

.thank-you-lead strong {
    color: #ffb07a;
}

.thank-you-steps {
    text-align: left;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.thank-you-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(150, 176, 255, 0.16);
    background: rgba(8, 14, 28, 0.45);
}

.thank-you-step__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(47, 109, 255, 0.5), rgba(123, 92, 255, 0.4));
}

.thank-you-step h3 {
    margin: 0 0 4px;
    font-size: 0.98rem;
}

.thank-you-step p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.thank-you-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.thank-you-note {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.thank-you-note a {
    color: #9ec0ff;
    font-weight: 600;
}

@keyframes thankYouPop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes thankYouRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (max-width: 575px) {
    .thank-you-card {
        padding: 32px 22px;
    }

    .thank-you-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.contact-card .alert {
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-card .alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: #86efac;
}

.contact-card .alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

.contact-info-card {
    padding: 24px;
    height: 100%;
}

.contact-info-card h4 {
    margin-bottom: 18px;
}

.contact-info-card p {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact-info-card .bi {
    color: #98b7ff;
    font-size: 1.02rem;
}

.quick-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.quick-badge-primary {
    background: rgba(49, 114, 255, 0.92);
    color: #f2f7ff;
}

.quick-badge-muted {
    background: rgba(147, 161, 186, 0.35);
    color: #d8e3fb;
}

.footer-section {
    padding: 70px 0 24px;
    border-top: 1px solid rgba(137, 168, 243, 0.2);
    background: rgba(5, 10, 20, 0.88);
}

.footer-links li {
    margin-bottom: 8px;
    color: #aebddf;
}

.footer-links a:hover {
    color: #fff;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(144, 171, 241, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.social-icon:hover {
    border-color: rgba(175, 200, 255, 0.72);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 14px;
    border-top: 1px solid rgba(136, 164, 232, 0.2);
    color: #95a6cc;
    font-size: 0.87rem;
}

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

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

/* Service pages: show all content immediately (no blank scroll) */
.service-page .reveal {
    opacity: 1;
    transform: none;
}

.service-page .reveal.show {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .service-page .reveal {
        animation: svcFadeUp 0.55s ease both;
    }

    .service-page .col-lg-7.reveal {
        animation-delay: 0.05s;
    }

    .service-page .col-lg-5.reveal {
        animation-delay: 0.12s;
    }

    .service-page .section-heading.reveal {
        animation-delay: 0.08s;
    }
}

@keyframes svcFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.cursor-dot {
    position: fixed;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(208, 222, 255, 0.72);
    background: rgba(89, 138, 255, 0.2);
    box-shadow: 0 0 18px rgba(73, 127, 255, 0.45);
}

@media (max-width: 1199px) {
    .section-pad {
        padding: 86px 0;
    }

    .section-pad-tight {
        padding: 30px 0;
    }

    .home-page .hero-section.section-pad {
        padding-bottom: 34px;
    }

    .home-page .home-services-section {
        padding-top: 44px;
    }

    .hero-section {
        padding-top: 132px;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 3.6vw, 3.2rem);
    }

    .hero-subtext {
        font-size: 0.98rem;
    }

    .hero-right-col,
    .hero-estedic-panel {
        min-height: 420px;
    }

    .hero-visual {
        padding: 22px;
    }

    .hero-service-grid {
        gap: 8px;
    }

    .service-detail-card {
        padding: 22px;
    }

    .testimonial-slider {
        min-height: 270px;
    }

    .bento-card {
        grid-column: span 6;
    }

    .bento-card:nth-child(2),
    .bento-card:nth-child(5) {
        grid-column: span 6;
    }

    #why-us .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #why-us .bento-card,
    #why-us .bento-card:nth-child(2),
    #why-us .bento-card:nth-child(5) {
        grid-column: span 1;
    }

    .why-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

body.nav-menu-open {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 118px;
    }

    .page-hero {
        padding-top: 124px;
    }

    .hero-section .row > .col-lg-6:first-child {
        text-align: center;
    }

    .hero-section .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .d-flex.flex-wrap.gap-3 {
        justify-content: center;
    }

    .hero-right-col {
        max-width: 100%;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-estedic-grid {
        inset: 0;
    }

    .hero-estedic-panel {
        max-width: 100%;
    }

    #mainNavbar .navbar-collapse {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        max-height: min(72vh, calc(100dvh - 88px));
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid rgba(145, 172, 240, 0.22);
        background: rgba(5, 12, 24, 0.98);
        backdrop-filter: blur(14px);
    }

    .nav-mega-item {
        position: relative;
    }

    .nav-mega-item.is-open .nav-mega-chevron {
        transform: rotate(180deg);
    }

    .nav-mega-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
        margin-top: 8px;
        z-index: auto;
    }

    .nav-mega-panel::before {
        display: none;
    }

    .nav-mega-item.is-open .nav-mega-panel {
        display: block;
        max-height: min(50vh, 360px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-mega-inner {
        margin: 0;
        padding: 14px;
        border-radius: 12px;
    }

    .nav-mega-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-mega-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .btn-nav {
        width: 100%;
        margin-top: 8px;
    }

    .hero-particles {
        opacity: 0.45;
    }

    .hero-metrics {
        margin-top: 22px !important;
    }

    .timeline,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline::before {
        display: none;
    }

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

    .hero-live-bar {
        flex-wrap: wrap;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 74px 0;
    }

    .section-pad-tight {
        padding: 26px 0;
    }

    .home-page .hero-section.section-pad {
        padding-bottom: 28px;
    }

    .home-page .home-services-section {
        padding-top: 36px;
    }

    .page-hero {
        padding-top: 114px;
    }

    .page-hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .hero-section h1 {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    .hero-trust-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-client-indicators {
        gap: 8px;
    }

    .hero-client-indicators span {
        width: 100%;
    }

    .hero-section .btn-premium,
    .hero-section .btn-premium-outline {
        width: 100%;
        text-align: center;
    }

    .hero-metrics .col-4 {
        width: 33.3333%;
    }

    .hero-metrics h3 {
        font-size: 1.55rem;
    }

    .hero-right-col,
    .hero-estedic-panel {
        min-height: 340px;
        margin-top: 12px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 420px;
    }

    .hero-estedic-panel {
        align-items: center;
    }

    .hero-estedic-grid {
        inset: -8px 0 0;
        left: 0;
        right: 0;
    }

    .hero-particle-stage {
        min-height: 300px;
        width: 100%;
    }

    .hero-particle-canvas {
        position: relative;
        top: 0;
        left: 0;
        width: 100% !important;
        max-width: 100%;
        height: 260px !important;
        margin: 0 auto;
        display: block;
    }

    .hero-brand-wordmark {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        padding-top: 4px;
    }

    .hero-tech-slider {
        width: 100%;
        padding-top: 12px;
    }

    .hero-tech-slider__label {
        text-align: center;
    }

    .hero-tech-slider__row {
        gap: 24px;
        animation-duration: 26s;
    }

    .home-page .reveal {
        transform: translateY(14px);
        transition-duration: 0.45s;
    }

    .hero-visual {
        padding: 18px;
        margin-top: 8px;
    }

    .hero-tile-body h3 {
        font-size: 0.82rem;
    }

    .hero-tile-body p {
        font-size: 0.7rem;
    }

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

    .portfolio-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .filter-btn {
        flex: 0 0 auto;
    }

    .pricing-card h3 {
        font-size: 1.75rem;
    }

    .table.premium-table th,
    .table.premium-table td {
        white-space: nowrap;
    }

    .timeline,
    .stats-grid,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    #why-us .bento-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-card,
    .bento-card:nth-child(2),
    .bento-card:nth-child(5) {
        grid-column: span 1;
    }

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

    #mainNavbar {
        background: rgba(5, 10, 22, 0.86);
        backdrop-filter: blur(12px);
    }

    .brand-logo-img {
        height: 34px;
        max-width: calc(100vw - 76px);
    }

    .brand-logo-img--footer {
        height: 38px;
        max-width: 240px;
    }

    .loader-d-mark {
        width: min(96px, 26vw);
        max-height: min(88px, 22vw);
    }

    .home-page .section-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .section-heading .what-we-do-intro,
    .home-page .about-copy,
    .home-page #contact .col-lg-5 {
        text-align: center;
    }

    .home-page .founder-names {
        justify-content: center;
    }

    .home-page .about-stack-wrap {
        text-align: center;
    }

    .home-page .stack-badges {
        justify-content: center;
    }

    .about-side-panel {
        padding: 16px;
    }

    .why-feature:hover {
        transform: none;
    }

    #mainNavbar .container {
        gap: 8px;
    }

    .brand-logo-link {
        flex-shrink: 0;
        min-width: 0;
        max-width: calc(100% - 52px);
    }

    .hero-light-one {
        width: 240px;
        height: 240px;
        left: -120px;
    }

    .hero-light-two {
        width: 270px;
        height: 270px;
        right: -130px;
    }

    .hero-blob-one,
    .hero-blob-two,
    .hero-blob-three,
    .hero-particles {
        display: none;
    }

    .testimonial-slider {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-inline: 18px;
    }

    .hero-trust-list {
        gap: 8px;
    }

    .hero-metrics .col-4 {
        width: 100%;
    }

    .hero-metrics h3 {
        font-size: 1.45rem;
    }

    .hero-metrics p {
        font-size: 0.82rem;
    }

    .service-detail-card,
    .pricing-card,
    .portfolio-card,
    .blog-card,
    .mission-card,
    .cta-side {
        padding: 18px;
        border-radius: 16px;
    }

    .contact-card {
        padding: 18px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .bg-glow,
    .hero-light,
    .proof-one,
    .proof-two,
    .visual-wave,
    .loader-d-mark {
        animation: none !important;
    }
}

.error-page-hero .error-code {
    margin: 0 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(4rem, 14vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    background: linear-gradient(180deg, #9ec1ff, #3d7fff 55%, #1f4fd1);
    -webkit-background-clip: text;
    background-clip: text;
}

.error-requested-path {
    margin-top: 12px;
    font-size: 0.88rem;
    color: #9eb0d6;
}

.error-requested-path code {
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(150, 176, 255, 0.24);
    background: rgba(10, 18, 36, 0.55);
    color: #d8e5ff;
}

.blog-card {
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

/* —— Blog index & article pages —— */
.blog-index-intro {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--text-muted);
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.blog-post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(130, 168, 255, 0.48);
    color: inherit;
}

.blog-post-card__visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 112px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(150, 176, 255, 0.14);
}

.blog-post-card__visual--crm {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--data {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--web {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(10, 18, 36, 0.2));
}

.blog-post-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #c8dcff;
    font-size: 1.35rem;
}

.blog-post-card__category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d5e4ff;
    background: rgba(47, 109, 255, 0.16);
    border: 1px solid rgba(130, 168, 255, 0.24);
}

.blog-post-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.blog-post-card__body h2,
.blog-related-card h3 {
    font-size: 1.12rem;
    line-height: 1.35;
    margin: 0 0 12px;
    color: #eef3ff;
}

.blog-post-card__body p,
.blog-related-card p {
    flex: 1;
    margin: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9eb0d6;
}

.blog-post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(150, 176, 255, 0.14);
}

.blog-post-card__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #8fa3cc;
}

.blog-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #9ec0ff;
    white-space: nowrap;
}

.blog-post-card:hover .blog-post-card__link {
    color: #c8dcff;
}

.blog-page-header {
    max-width: 780px;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: #9eb0d6;
}

.blog-breadcrumb a {
    color: #b8c9ef;
}

.blog-breadcrumb a:hover {
    color: #dce6ff;
}

.blog-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    font-size: 0.88rem;
    color: #9eb0d6;
}

.blog-article {
    padding: 32px 36px;
}

.blog-article h2 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #eef3ff;
}

.blog-article p {
    margin-bottom: 14px;
}

.blog-lead {
    font-size: 1.08rem;
    color: #dce6ff;
    line-height: 1.7;
    margin-bottom: 8px;
}

.blog-list {
    padding-left: 1.25rem;
    margin-bottom: 16px;
    color: #b8c9ef;
}

.blog-list li {
    margin-bottom: 8px;
    line-height: 1.55;
}

.blog-cta {
    margin-top: 32px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(130, 168, 255, 0.22);
    background: rgba(47, 109, 255, 0.08);
}

.blog-cta h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.blog-cta p {
    margin-bottom: 16px;
}

.blog-related-wrap {
    margin-top: 56px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 920px;
    margin-inline: auto;
}

.blog-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.blog-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 168, 255, 0.42);
    color: inherit;
}

.blog-related-card .blog-post-card__category {
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-related-card .blog-post-card__link {
    margin-top: auto;
    padding-top: 14px;
}

.blog-sidebar {
    padding: 22px;
    position: sticky;
    top: 110px;
}

.blog-sidebar h4 {
    margin-bottom: 14px;
}

/* Blog article page — magazine layout */
.blog-page {
    overflow-x: hidden;
}

.blog-article-hero {
    padding: 148px 0 48px;
    border-bottom: 1px solid rgba(150, 176, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.blog-article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.55;
    pointer-events: none;
}

.blog-article-hero--travel::before {
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.28), transparent 42%), radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.18), transparent 38%), linear-gradient(180deg, rgba(8, 16, 32, 0.2), transparent);
}

.blog-article-hero--logistics::before {
    background: radial-gradient(circle at 15% 30%, rgba(245, 158, 11, 0.22), transparent 40%), linear-gradient(180deg, rgba(8, 16, 32, 0.15), transparent);
}

.blog-article-hero--ecommerce::before,
.blog-article-hero--retail::before {
    background: radial-gradient(circle at 75% 15%, rgba(168, 85, 247, 0.22), transparent 42%), radial-gradient(circle at 10% 40%, rgba(236, 72, 153, 0.14), transparent 38%);
}

.blog-article-hero--industrial::before {
    background: radial-gradient(circle at 30% 20%, rgba(100, 116, 139, 0.28), transparent 45%);
}

.blog-article-hero--software::before {
    background: radial-gradient(circle at 70% 25%, rgba(20, 184, 166, 0.22), transparent 42%);
}

.blog-article-hero--crm::before {
    background: radial-gradient(circle at 25% 25%, rgba(20, 184, 166, 0.2), transparent 42%);
}

.blog-article-hero--data::before {
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.2), transparent 42%);
}

.blog-article-hero--web::before {
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.24), transparent 45%);
}

.blog-article-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.blog-article-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 760px;
    margin-inline: auto;
}

.blog-article-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
}

.blog-hero-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #dce6ff;
    background: rgba(47, 109, 255, 0.2);
    border: 1px solid rgba(130, 168, 255, 0.32);
}

.blog-hero-pill--muted {
    color: #b8c9ef;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(150, 176, 255, 0.18);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 0.8rem;
}

.blog-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #9eb0d6;
}

.blog-author-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(10, 18, 36, 0.55);
    border: 1px solid rgba(150, 176, 255, 0.2);
    color: #d5e4ff;
    font-size: 0.82rem;
}

.blog-breadcrumb__current {
    color: #c8d8f5;
}

.blog-article-section {
    padding-top: 48px;
}

.blog-article-layout {
    align-items: flex-start;
}

.blog-article-layout > aside,
.blog-aside-col {
    align-self: flex-start;
}

@media (min-width: 992px) {
    .blog-aside-col {
        position: sticky;
        top: 100px;
    }
}

.blog-aside-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(130, 168, 255, 0.35) transparent;
}

.blog-aside-stack::-webkit-scrollbar {
    width: 5px;
}

.blog-aside-stack::-webkit-scrollbar-thumb {
    background: rgba(130, 168, 255, 0.35);
    border-radius: 999px;
}

.blog-live-card {
    padding: 22px;
}

.blog-live-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8dffb8;
    background: rgba(36, 120, 78, 0.18);
    border: 1px solid rgba(98, 220, 150, 0.35);
}

.blog-live-card h2,
.blog-snapshot h2,
.blog-toc h2,
.blog-recent h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #eef3ff;
}

.blog-live-card p {
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.blog-snapshot,
.blog-toc,
.blog-recent {
    padding: 20px;
}

.blog-recent__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-recent__item {
    border-bottom: 1px solid rgba(150, 176, 255, 0.12);
}

.blog-recent__item:last-child {
    border-bottom: 0;
}

.blog-recent__link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.blog-recent__link:hover {
    opacity: 0.88;
}

.blog-recent__link:hover .blog-recent__title {
    color: #dce6ff;
}

.blog-recent__category {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #8eb4ff;
    margin-bottom: 4px;
}

.blog-recent__title {
    display: block;
    font-size: 0.86rem;
    line-height: 1.4;
    color: #e8efff;
    margin-bottom: 4px;
}

.blog-recent__date {
    display: block;
    font-size: 0.75rem;
    color: #8fa3cc;
}

.blog-recent__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(150, 176, 255, 0.14);
    font-size: 0.84rem;
    font-weight: 600;
    color: #9ec0ff;
}

.blog-recent__all:hover {
    color: #dce6ff;
}

.blog-snapshot__list {
    margin: 0;
}

.blog-snapshot__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(150, 176, 255, 0.1);
}

.blog-snapshot__row:last-child {
    border-bottom: 0;
}

.blog-snapshot__row dt {
    font-size: 0.78rem;
    color: #8fa3cc;
    margin: 0;
}

.blog-snapshot__row dd {
    margin: 0;
    font-size: 0.84rem;
    color: #e8efff;
    text-align: right;
}

.blog-toc ol {
    margin: 0;
    padding-left: 1.1rem;
}

.blog-toc li {
    margin-bottom: 8px;
}

.blog-toc a {
    font-size: 0.86rem;
    color: #b8c9ef;
}

.blog-toc a:hover {
    color: #dce6ff;
}

.blog-article-body {
    max-width: 100%;
}

.blog-highlights {
    margin: 28px 0 32px;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(130, 168, 255, 0.22);
    background: linear-gradient(135deg, rgba(47, 109, 255, 0.1), rgba(10, 18, 36, 0.4));
}

.blog-highlights__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: #c8dcff;
}

.blog-highlights ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #dce6ff;
}

.blog-highlights li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.blog-content-section {
    margin-bottom: 8px;
}

.blog-content-section h2 {
    font-size: 1.35rem;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-top: 8px;
    color: #eef3ff;
}

.blog-content-section p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #b8c9ef;
    margin-bottom: 16px;
}

.blog-article-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(150, 176, 255, 0.14);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share span {
    font-size: 0.82rem;
    color: #8fa3cc;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-share a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(150, 176, 255, 0.22);
    color: #b8c9ef;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.blog-share a:hover {
    border-color: rgba(130, 168, 255, 0.45);
    color: #eef3ff;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #9ec0ff;
}

.blog-back-link:hover {
    color: #dce6ff;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.blog-filter-btn {
    border: 1px solid rgba(150, 176, 255, 0.24);
    background: rgba(10, 18, 36, 0.45);
    color: #c8d8f5;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-filter-btn.active,
.blog-filter-btn:hover {
    border-color: rgba(130, 168, 255, 0.52);
    background: rgba(47, 109, 255, 0.18);
    color: #eef3ff;
}

.blog-section-block {
    margin-bottom: 12px;
}

.blog-section-head {
    max-width: 640px;
    margin-bottom: 24px;
}

.blog-section-head h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin-bottom: 8px;
}

.blog-section-head p {
    margin: 0;
    color: var(--text-muted);
}

.blog-index-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-post-card__visual--travel {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--logistics {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--ecommerce {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--retail {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--industrial {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.22), rgba(10, 18, 36, 0.2));
}

.blog-post-card__visual--software {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(10, 18, 36, 0.2));
}

@media (max-width: 991px) {
    .blog-index-grid,
    .blog-index-grid--wide {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-aside-col {
        position: static;
    }

    .blog-aside-stack {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .blog-article-hero {
        padding-top: 128px;
    }
}

@media (max-width: 767px) {
    .blog-article {
        padding: 22px 20px;
    }

    .blog-post-card__body {
        padding: 20px;
    }

    .blog-article-hero h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .blog-content-section p {
        font-size: 0.98rem;
    }
}

/* —— What we do —— */
.what-we-do-intro {
    max-width: 680px;
    margin: 0;
    color: var(--text-muted);
}

.what-we-do-card {
    display: block;
    height: 100%;
    padding: 24px;
    color: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.what-we-do-card:hover {
    transform: translateY(-3px);
    border-color: rgba(150, 176, 255, 0.38);
    color: inherit;
}

.what-we-do-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(91, 143, 255, 0.15);
    color: #9eb8ff;
    font-size: 1.2rem;
}

.what-we-do-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
    color: #eef3ff;
}

.what-we-do-card p {
    margin: 0 0 14px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.what-we-do-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #9ec0ff;
}

.what-we-do-card:hover .what-we-do-card__link {
    color: #c8dcff;
}

@media (max-width: 767px) {
    .what-we-do-section .section-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .what-we-do-intro {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .hero-right-col,
    .hero-estedic-panel {
        max-width: 100%;
        min-height: 300px;
    }

    .hero-particle-stage {
        min-height: 280px;
    }

    .hero-particle-canvas {
        height: 240px !important;
    }

    .hero-brand-wordmark {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .trusted-clients-band {
        padding: 22px 0 26px;
    }

    .trusted-clients-label {
        font-size: 0.65rem;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
    }

    .trusted-clients-marquee-wrap::before,
    .trusted-clients-marquee-wrap::after {
        width: 40px;
    }

    .trusted-clients-track {
        gap: 10px;
        padding: 0 12px;
    }

    .trusted-client-pill {
        min-width: 128px;
        height: 52px;
        padding: 0 16px;
    }

    .trusted-client-pill__text {
        font-size: 0.74rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-clients-track {
        animation: none !important;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        max-width: 960px;
        margin: 0 auto;
        padding: 0 16px;
    }
}