:root {
    --color-bg: #ffffff;
    --color-bg-soft: #f6f6f2;
    --color-bg-warm: #fbfaf7;
    --color-ink: #050505;
    --color-accent: #2dd4bf;
    --color-accent-2: #6366f1;
    --color-accent-3: #f59e0b;
    --color-panel: rgba(0, 0, 0, 0.045);
    --color-border: rgba(0, 0, 0, 0.13);
    --color-text: #050505;
    --color-text-muted: rgba(5, 5, 5, 0.68);
    --color-text-soft: rgba(5, 5, 5, 0.52);
    --gradient-sheen: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58));
    --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    --shadow-premium: 0 24px 70px rgba(15, 23, 42, 0.1);
    --shadow-hover: 0 32px 90px rgba(15, 23, 42, 0.16);
    --radius-lg: 32px;
    --transition: all 0.32s cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(45,212,191,0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(99,102,241,0.1), transparent 24%),
        var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: auto;
}
.site-footer,
.hero-section,
.inner-hero,
.section-space,
.parallax-showcase,
.parallax-band {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.cursor-spark-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: normal;
}
.section-space { padding: 120px 0; }
.section-title, .hero-title, .contact-cta h2, .footer-cta h2, .service-card h3, .feature-card h3, .inner-hero h1, .destination-card h3, .blog-cta-panel h2, .public-blog-card h3, .blog-section-head h2 { font-family: 'Syne', sans-serif; letter-spacing: 0; }
.eyebrow { display: inline-block; margin-bottom: 1rem; color: var(--color-text-soft); letter-spacing: 0; text-transform: uppercase; font-size: 0.78rem; font-weight: 800; }
.glass-panel { background: var(--gradient-sheen); border: 1px solid rgba(15,23,42,0.1); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); box-shadow: var(--shadow-premium); position: relative; overflow: hidden; }
.glass-panel::before,
.service-card::before,
.destination-card::after,
.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(45,212,191,0.18), transparent 34%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.glass-panel:hover::before,
.service-card:hover::before,
.destination-card:hover::after,
.image-card:hover::before {
    opacity: 1;
}
.btn-pill { border-radius: 999px; padding: 0.95rem 1.6rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem; font-weight: 800; min-height: 48px; }
.btn i { font-size: 0.9em; transition: transform 0.28s ease; }
.btn:hover i,
.btn:focus-visible i { transform: translateX(4px); }
.btn:focus-visible,
.nav-link:focus-visible,
.social-links a:focus-visible,
.text-link:focus-visible {
    outline: 3px solid rgba(45,212,191,0.35);
    outline-offset: 3px;
}
.btn,
.nav-link,
.text-link,
.social-links a,
.navbar-brand,
.service-card,
.feature-card,
.stat-card,
.timeline-item,
.team-card,
.pricing-card,
.image-card,
.destination-card,
.mini-feature,
.mini-process,
.contact-form .form-control,
.contact-form .form-select {
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.ds-navbar { padding: 1rem 0; transition: var(--transition); }
.ds-navbar .container {
    min-height: 76px;
    border-radius: 999px;
    padding: 0.55rem 0.9rem 0.55rem 1rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 18px 50px rgba(15,23,42,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.ds-navbar.scrolled { padding: 0.55rem 0; }
.ds-navbar.scrolled .container { background: rgba(255, 255, 255, 0.9); border-color: rgba(15,23,42,0.12); box-shadow: 0 16px 44px rgba(15,23,42,0.12); }
.navbar-brand { display: inline-flex; align-items: center; gap: 0.75rem; font-family: 'Syne', sans-serif; font-weight: 700; color: #050505; }
.brand-logo {
    width: auto;
    height: 48px;
    max-width: 190px;
    object-fit: contain;
    filter: brightness(0);
}
.ds-navbar .brand-logo {
    height: 56px;
    max-width: 230px;
}
.brand-mark { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; border: 1px solid var(--color-border); background: rgba(0,0,0,0.05); }
.brand-copy { font-size: 1.15rem; letter-spacing: 0.04em; }
.nav-link { color: rgba(5,5,5,0.72); padding: 0.8rem 1rem !important; border-radius: 999px; transition: var(--transition); }
.nav-link:hover,
.nav-link:focus-visible { color: #000000; transform: translateY(-2px); background: rgba(15,23,42,0.05); text-shadow: none; }
.ds-navbar .nav-link.active,
.ds-navbar .navbar-nav .nav-link.active,
.ds-navbar .navbar-nav .nav-link.show {
    color: #000000;
    font-weight: 700;
    background: rgba(15,23,42,0.07);
    text-shadow: none;
}
.nav-cta { border-radius: 999px; padding: 0.75rem 1.3rem; white-space: nowrap; }
.btn:hover,
.nav-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}
.navbar-toggler-icon { filter: none; }
.btn-light {
    background: linear-gradient(135deg, #050505, #1f2937);
    border-color: #050505;
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-light:hover,
.btn-light:focus-visible {
    background: #222222;
    border-color: #222222;
    color: #ffffff;
}
.btn-outline-light {
    border-color: rgba(15,23,42,0.2);
    color: #050505;
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg, rgba(45,212,191,0.82), rgba(99,102,241,0.7)) border-box;
    border: 1px solid transparent;
}
.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: #050505;
    border-color: #050505;
    color: #ffffff;
}

.hero-section {
    padding: 120px 0 60px;
    background:
        radial-gradient(circle at calc(var(--hero-x, 50) * 1%) calc(var(--hero-y, 42) * 1%), rgba(45,212,191,0.18), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,246,242,0.82));
    position: relative;
}
.hero-video-layer {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.86), rgba(255,255,255,0.58) 52%, rgba(255,255,255,0.95)),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    transform: scale(1.04) translate3d(calc((var(--hero-x, 50) - 50) * -0.06px), calc((var(--hero-y, 50) - 50) * -0.06px), 0);
    opacity: 0.92;
}
.hero-gradient-grid {
    position: absolute;
    inset: 0;
    opacity: 0.58;
    background-image:
        linear-gradient(rgba(15,23,42,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,0.055) 1px, transparent 1px),
        radial-gradient(circle at 72% 18%, rgba(99,102,241,0.22), transparent 24%),
        radial-gradient(circle at 16% 78%, rgba(45,212,191,0.18), transparent 20%);
    background-size: 74px 74px, 74px 74px, auto, auto;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 86%);
    pointer-events: none;
    animation: gradientDrift 18s ease-in-out infinite alternate;
}
.floating-shape { position: absolute; border: 1px solid rgba(15,23,42,0.12); background: rgba(255,255,255,0.42); backdrop-filter: blur(12px); }
.shape-one { width: 280px; height: 280px; border-radius: 34% 66% 58% 42% / 35% 31% 69% 65%; top: 15%; right: -60px; animation: floatShape 12s ease-in-out infinite; }
.shape-two { width: 180px; height: 180px; border-radius: 50%; bottom: 10%; left: -40px; animation: floatShape 10s ease-in-out infinite reverse; }
.hero-title { font-size: clamp(3rem, 7vw, 6.6rem); line-height: 0.94; max-width: 820px; }
.hero-section [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}
.hero-text { max-width: 640px; color: var(--color-text-muted); font-size: 1.1rem; margin: 1.5rem 0 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}
.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(15,23,42,0.1);
    box-shadow: 0 12px 30px rgba(15,23,42,0.06);
    color: rgba(5,5,5,0.68);
    font-size: 0.92rem;
}
.hero-proof strong { color: #050505; }
.hero-panel { padding: 2rem; border-radius: var(--radius-lg); }
.hero-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(45,212,191,0.32);
}
.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.35rem;
    color: rgba(5,5,5,0.58);
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0;
}
.hero-panel-top i {
    color: var(--color-accent-2);
    animation: iconFloat 2.8s ease-in-out infinite;
}
.hero-panel-item { display: flex; gap: 1rem; padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.hero-panel-item span, .timeline-item span, .mini-process span { font-family: 'Syne', sans-serif; color: rgba(5,5,5,0.44); }
.hero-panel-meter {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.5rem;
}
.hero-panel-meter span {
    display: block;
    width: var(--width);
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(45,212,191,0.88), rgba(99,102,241,0.72));
    box-shadow: 0 0 22px rgba(45,212,191,0.18);
}

.hero-panel-item p, .feature-card p, .service-card p, .testimonial-card span, .footer-copy, .contact-cta p, .showcase-copy p, .inner-hero p, .mini-list li, .pricing-card p, .analytics-card p { color: var(--color-text-muted); }
.section-heading { max-width: 800px; margin-bottom: 3.5rem; }
.section-lead { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 0; }
.section-title { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 1rem; }
.feature-card, .service-card, .stat-card, .testimonial-card, .contact-cta, .footer-cta, .timeline-item, .pricing-card, .analytics-card, .team-card, .contact-form, .map-placeholder { border-radius: var(--radius-lg); }
.feature-card, .timeline-item, .pricing-card, .analytics-card, .team-card, .contact-form, .map-placeholder, .mini-feature, .mini-process, .info-stack { padding: 2rem; }
.feature-card i, .service-icon { width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.08); margin-bottom: 1.4rem; font-size: 1.2rem; }
.service-card { position: relative; overflow: hidden; min-height: 100%; padding: 2.2rem; background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(0,0,0,0.03)); border: 1px solid rgba(0,0,0,0.1); transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(45,212,191,0.32); box-shadow: var(--shadow-hover); }
.premium-card {
    isolation: isolate;
}
.premium-card::after {
    content: '';
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2), var(--color-accent-3));
    transform: scaleX(0.26);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.premium-card:hover::after { transform: scaleX(1); }
.service-card .service-icon,
.feature-card i,
.social-links a,
.brand-mark {
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.service-card:hover .service-icon,
.feature-card:hover i,
.social-links a:hover,
.navbar-brand:hover .brand-mark {
    transform: translateY(-4px) rotate(-6deg);
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.18);
}
.text-link { position: relative; display: inline-flex; padding-top: 1rem; font-weight: 700; }
.text-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: #050505; transform: scaleX(0.4); transform-origin: left; transition: var(--transition); }
.text-link:hover::after { transform: scaleX(1); }
.stat-card {
    padding: 2.25rem 1.8rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-card:hover,
.feature-card:hover,
.timeline-item:hover,
.team-card:hover,
.pricing-card:hover,
.analytics-card:hover,
.mini-process:hover,
.mini-feature:hover,
.contact-form:hover,
.map-placeholder:hover {
    transform: translateY(-4px);
    border-color: rgba(0,0,0,0.2);
    box-shadow: 0 20px 42px rgba(0,0,0,0.08);
}
.stat-card h3, .pricing-card h3, .analytics-card h3 { font-size: 2.5rem; font-family: 'Syne', sans-serif; }
.parallax-showcase, .parallax-band { position: relative; padding: 170px 0; background-position: center; background-size: cover; background-repeat: no-repeat; will-change: transform; }
.parallax-showcase { background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1800&q=80'); }
.parallax-showcase::before,
.parallax-band::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 25%), radial-gradient(circle at 80% 60%, rgba(255,255,255,0.12), transparent 24%);
}
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.35)); }
.showcase-copy { position: relative; max-width: 720px; will-change: transform; }
.parallax-showcase .showcase-copy,
.parallax-band .showcase-copy,
.destination-card {
    color: #ffffff;
}
.parallax-showcase .showcase-copy p,
.parallax-band .showcase-copy p {
    color: rgba(255,255,255,0.78);
}
.parallax-showcase .eyebrow,
.parallax-band .eyebrow {
    color: rgba(255,255,255,0.62);
}
.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    padding: 2.4rem;
    min-height: 272px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 0;
}
.testimonial-card h6 {
    margin: auto 0 0.2rem;
}
.swiper-pagination-bullet { background: rgba(0,0,0,0.24); }
.swiper-pagination-bullet-active { background: #050505; }
.section-dark {
    position: relative;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 18%, rgba(45,212,191,0.16), transparent 24%),
        radial-gradient(circle at 84% 34%, rgba(99,102,241,0.2), transparent 26%),
        linear-gradient(135deg, #060606, #111315 55%, #050505);
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.6;
    pointer-events: none;
}
.section-dark .container { position: relative; }
.section-dark .eyebrow,
.section-dark .section-lead,
.section-dark p,
.section-dark .feature-card p,
.section-dark .stack-card p,
.section-dark .faq-item p {
    color: rgba(255,255,255,0.68);
}
.section-dark .glass-panel {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 26px 80px rgba(0,0,0,0.28);
}
.section-dark .feature-card i,
.section-dark .service-icon,
.section-dark .stack-card i {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    color: #ffffff;
}
.logo-cloud-section {
    padding-top: 0;
    padding-bottom: 80px;
}
.logo-cloud {
    border-radius: 28px;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}
.logo-cloud > span {
    color: var(--color-text-muted);
    font-weight: 800;
}
.logo-cloud-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}
.logo-cloud-track strong {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(15,23,42,0.08);
    color: rgba(5,5,5,0.56);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
}
.technology-section {
    padding-top: 130px;
    padding-bottom: 130px;
}
.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.stack-card {
    min-height: 242px;
    padding: 1.8rem;
    border-radius: 28px;
}
.stack-card i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1.35rem;
    font-size: 1.15rem;
}
.stack-card h3,
.case-study-card h3,
.faq-item summary {
    font-family: 'Syne', sans-serif;
    letter-spacing: 0;
}
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.case-study-card {
    position: relative;
    min-height: 440px;
    border-radius: 34px;
    padding: 1.6rem;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255,255,255,0.16);
    background-position: center;
    background-size: cover;
    transition: transform 0.42s ease, box-shadow 0.42s ease;
}
.case-study-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.82));
}
.case-study-card::after {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.14);
    pointer-events: none;
}
.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.case-study-card > div,
.case-study-card > a {
    position: relative;
    z-index: 1;
}
.case-study-card span {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0;
}
.case-study-card h3 {
    font-size: clamp(1.55rem, 2vw, 2.1rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
}
.case-study-card p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 1.2rem;
}
.case-study-card > a {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #050505;
}
.case-study-card:hover > a i { transform: translateX(3px); }
.case-growth { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80'); }
.case-space { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=900&q=80'); }
.case-travel { background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=900&q=80'); }
.industries-section {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,246,242,0.88)),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.1), transparent 26%);
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.industry-chip {
    min-height: 92px;
    border-radius: 24px;
    padding: 1.15rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 900;
}
.industry-chip i {
    color: var(--color-accent);
    filter: drop-shadow(0 0 16px rgba(45,212,191,0.28));
}
.faq-list {
    display: grid;
    gap: 1rem;
}
.faq-item {
    border-radius: 24px;
    padding: 0;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.35rem 1.5rem;
    font-size: 1.12rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: transform 0.28s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 1.5rem 1.45rem;
    margin: 0;
    line-height: 1.75;
}
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}
.contact-cta, .footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.4rem; }
.site-footer { padding: 0 0 2rem; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 4rem 0 2rem; }
.footer-links { list-style: none; padding: 0; margin: 1rem 0 0; }
.footer-links li { margin-bottom: 0.8rem; color: var(--color-text-muted); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(0,0,0,0.14); }

.inner-hero {
    padding: 180px 0 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,246,242,0.9));
}
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.94)), var(--hero-image, none) center/cover no-repeat;
    opacity: 0.9;
}
.inner-hero::after {
    content: '';
    position: absolute;
    inset: auto -5% -35% -5%;
    height: 280px;
    background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 60%);
    filter: blur(50px);
}
.inner-hero .container { position: relative; }
.inner-hero-about { --hero-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80'); }
.inner-hero-services { --hero-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80'); }
.inner-hero-digital { --hero-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80'); }
.inner-hero-workspace { --hero-image: url('../../../assets/images/workspace/IMG_7069.JPG.jpeg'); }
.inner-hero-travel { --hero-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1600&q=80'); }
.inner-hero-contact { --hero-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80'); }
.inner-hero-blogs { --hero-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80'); }

.blog-cta-band {
    padding: 0 0 40px;
    margin-top: -72px;
    position: relative;
    z-index: 2;
}
.blog-cta-panel {
    min-height: 260px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.38)),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}
.blog-cta-panel .eyebrow {
    color: rgba(255,255,255,0.66);
}
.blog-cta-panel h2 {
    max-width: 760px;
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
}
.blog-layout,
.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
    align-items: start;
}
.blog-section-head {
    margin-bottom: 1.3rem;
}
.blog-section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0;
}
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}
.public-blog-card {
    min-width: 0;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}
.public-blog-media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #111;
}
.public-blog-media img,
.blog-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-image-fallback {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.72);
    font-size: 2rem;
}
.public-blog-body {
    padding: 1.25rem;
}
.blog-meta,
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
    color: var(--color-text-soft);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.public-blog-card h3 {
    font-size: 1.55rem;
    line-height: 1.08;
    margin-bottom: 0.75rem;
}
.public-blog-card p,
.blog-side-card p {
    color: var(--color-text-muted);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #050505;
    font-weight: 800;
}
.blog-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 100px;
}
.blog-side-card {
    padding: 1.25rem;
    border-radius: 24px;
}
.blog-side-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.blog-side-card > a:not(.latest-blog-row) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: var(--color-text-muted);
}
.blog-side-card > a.active,
.blog-side-card > a:hover {
    color: #000;
    font-weight: 800;
}
.latest-blog-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.latest-blog-row img {
    width: 72px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
}
.latest-blog-row span {
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.25;
}
.blog-empty {
    grid-column: 1 / -1;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: var(--color-text-muted);
}
.blog-detail-image {
    max-height: 560px;
    border-radius: 28px;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-premium);
}
.blog-content {
    padding: clamp(1.4rem, 4vw, 3rem);
    border-radius: 28px;
}
.blog-content h2,
.blog-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Syne', sans-serif;
}
.blog-content p,
.blog-content li {
    color: var(--color-text-muted);
    font-size: 1.03rem;
    line-height: 1.8;
}
.blog-content img {
    border-radius: 20px;
    margin: 1.2rem 0;
}

.info-stack { display: grid; gap: 1rem; }
.info-stack div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.info-stack div:last-child { border-bottom: 0; padding-bottom: 0; }
.timeline-grid, .gallery-grid, .analytics-grid { display: grid; gap: 1.5rem; }
.timeline-grid { grid-template-columns: repeat(4, 1fr); }
.analytics-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.image-card { min-height: 300px; border-radius: var(--radius-lg); background: url('../../../assets/images/workspace/IMG_7073.JPG.jpeg') center/cover no-repeat; border: 1px solid rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.gallery-grid .image-card { opacity: 1 !important; }
.image-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 42px rgba(0,0,0,0.08); }
.tall-image { min-height: 520px; }
.about-story-visual {
    min-height: 520px;
    padding: 1.1rem;
    border-radius: 32px;
}
.about-story-photo {
    width: 100%;
    height: 100%;
    min-height: 485px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.08);
}
.team-section .row > div,
.stats-section .row > div {
    display: flex;
}
.team-card,
.stats-section .stat-card {
    width: 100%;
}
.team-card {
    text-align: center;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.team-card h3,
.stats-section .stat-card h3 {
    margin-bottom: 0.9rem;
}
.team-card p,
.stats-section .stat-card p {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}
.stats-section .stat-card p {
    margin-bottom: 0;
}
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.08), rgba(255,255,255,0.9));
    border: 1px solid rgba(0,0,0,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    font-size: 2rem;
}
.stats-section {
    padding-top: 0;
}
.team-card:hover .team-avatar {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0,0,0,0.12);
}
.mini-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.mini-list li { position: relative; padding-left: 1.25rem; margin-bottom: 0.7rem; }
.mini-list li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 7px; height: 7px; border-radius: 50%; background: #050505; }
.pricing-card, .analytics-card, .mini-feature, .mini-process, .contact-form, .map-placeholder { background: var(--gradient-sheen); border: 1px solid var(--color-border); }
.pricing-card.featured { transform: translateY(-8px); border-color: rgba(0,0,0,0.2); }
.destination-card { min-height: 420px; border-radius: var(--radius-lg); position: relative; overflow: hidden; background-position: center; background-size: cover; display: flex; align-items: flex-end; border: 1px solid rgba(0,0,0,0.08); transition: transform 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.destination-card:hover { transform: translateY(-5px) scale(1.01); border-color: rgba(0,0,0,0.2); box-shadow: 0 22px 48px rgba(0,0,0,0.1); }
.destination-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.86)); }
.destination-card div { position: relative; padding: 1.75rem; }
.destination-card span { color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; }
.destination-card:hover h3 { transform: translateY(-3px); }
.contact-form .form-control, .contact-form .form-select { background: rgba(255,255,255,0.86); border: 1px solid rgba(0,0,0,0.14); color: #050505; padding: 0.95rem 1rem; border-radius: 14px; }
.contact-form .form-control::placeholder { color: rgba(5,5,5,0.46); }
.contact-form .form-control:focus, .contact-form .form-select:focus { background: #ffffff; color: #050505; box-shadow: none; border-color: rgba(0,0,0,0.34); }
.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(5,5,5,0.78)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}
.contact-form .form-select option {
    background: #ffffff;
    color: #050505;
}
.ds-chatbot {
    position: fixed;
    inset: 0;
    z-index: 10020;
    pointer-events: none;
}
.ds-chatbot__toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.16);
    background: linear-gradient(135deg, #050505, #2a2a2a);
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 22px 54px rgba(0,0,0,0.22);
    z-index: 10021;
    overflow: visible;
    pointer-events: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.ds-chatbot__toggle-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.18);
    animation: chatbotPulse 2.4s infinite;
}
.ds-chatbot__panel {
    position: fixed;
    right: 24px;
    bottom: 106px;
    width: min(380px, calc(100vw - 24px));
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,246,242,0.98));
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.2);
    padding: 1rem;
    display: none;
    z-index: 10022;
    pointer-events: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.ds-chatbot.is-open .ds-chatbot__panel {
    display: block;
}
.ds-chatbot__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    padding: 0.4rem 0.3rem 0.8rem;
}
.ds-chatbot__eyebrow {
    display: block;
    color: rgba(5,5,5,0.56);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    margin-bottom: 0.45rem;
}
.ds-chatbot__header h3 {
    margin: 0;
    font-family: 'Syne', sans-serif;
    font-size: 1.28rem;
}
.ds-chatbot__close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.05);
    color: #050505;
}
.ds-chatbot__messages {
    display: grid;
    gap: 0.75rem;
    max-height: 360px;
    overflow-y: auto;
    padding: 0.35rem 0.2rem 0.8rem;
}
.ds-chatbot__bubble {
    max-width: 88%;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    line-height: 1.55;
    font-size: 0.95rem;
}
.ds-chatbot__bubble.bot {
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
    color: #050505;
    border-bottom-left-radius: 6px;
}
.ds-chatbot__bubble.user {
    margin-left: auto;
    background: #050505;
    color: #ffffff;
    border-bottom-right-radius: 6px;
}
.ds-chatbot__service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-bottom: 0.8rem;
}
.ds-chatbot__service-chip {
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.14);
    background: rgba(0,0,0,0.05);
    color: #050505;
    padding: 0.6rem 0.9rem;
    font-size: 0.86rem;
}
.ds-chatbot__input-row {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}
.ds-chatbot__input {
    flex: 1;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.82);
    color: #050505;
    padding: 0.9rem 1rem;
}
.ds-chatbot__input:focus {
    outline: none;
    border-color: rgba(0,0,0,0.28);
}
.ds-chatbot__send {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 0;
    background: #050505;
    color: #ffffff;
}
.ds-chatbot__hint {
    display: block;
    color: rgba(5,5,5,0.5);
    margin-top: 0.7rem;
    padding-left: 0.2rem;
}
.ds-chatbot__status {
    color: rgba(5,5,5,0.52);
    font-size: 0.84rem;
    padding: 0.2rem 0.2rem 0;
}
@keyframes chatbotPulse {
    0% { transform: scale(0.92); opacity: 0.75; }
    70% { transform: scale(1.08); opacity: 0; }
    100% { transform: scale(1.08); opacity: 0; }
}
.services-model-grid .col-md-6 {
    display: flex;
}
.service-model-card {
    width: 100%;
    min-height: 258px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-model-card h3 {
    min-height: 88px;
    margin-bottom: 1rem;
}
.service-model-card p {
    margin-bottom: 0;
    max-width: 240px;
}
.service-model-card:hover i {
    transform: translateY(-4px);
}
.map-placeholder { min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.contact-page-section {
    position: relative;
}
.contact-card-grid {
    margin-bottom: 3.5rem;
}
.contact-info-card {
    padding: 1.8rem;
    border-radius: 32px;
    height: 100%;
}
.contact-info-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-info-card__top h3,
.contact-social-title,
.contact-copy-title {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.04em;
}
.contact-info-card__top h3 {
    margin: 0;
    font-size: 1.9rem;
}
.contact-info-card__icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #050505;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}
.contact-info-card p,
.contact-info-card p a {
    color: var(--color-text-muted);
}
.contact-info-card__media {
    min-height: 180px;
    border-radius: 26px;
    margin-top: 1.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    background-size: cover;
    background-position: center;
}
.contact-media-address {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=900&q=80');
}
.contact-media-call {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=900&q=80');
}
.contact-media-email {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80');
}
.contact-divider {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 auto 3.5rem;
    background: #050505;
    box-shadow: 0 0 0 10px rgba(0,0,0,0.04);
}
.contact-copy-block {
    max-width: 460px;
    padding-top: 1.5rem;
}
.contact-copy-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 1rem 0 1.5rem;
}
.contact-copy-text {
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.contact-social-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}
.contact-social-links a {
    width: 52px;
    height: 52px;
    border-color: rgba(0,0,0,0.18);
    background: rgba(0,0,0,0.05);
}
.contact-form-panel {
    padding: 2.4rem;
}
.contact-form-panel .form-control,
.contact-form-panel .form-select {
    min-height: 58px;
}
.contact-form-panel textarea.form-control {
    min-height: 220px;
    resize: vertical;
}
.process-strip { padding-top: 0; }
.reveal-line {
    overflow: hidden;
}
.reveal-line > * {
    transform: translateY(110%);
}

@keyframes floatShape {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -20px, 0) rotate(7deg); }
}
@keyframes gradientDrift {
    0% { transform: translate3d(0, 0, 0); opacity: 0.5; }
    100% { transform: translate3d(18px, -16px, 0); opacity: 0.72; }
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(8deg); }
}
@media (max-width: 991.98px) {
    .cursor-spark-canvas { display: none; }
    .ds-navbar .container { border-radius: 28px; }
    .navbar-collapse { margin-top: 1rem; padding: 1rem; border-radius: 20px; background: rgba(255,255,255,0.94); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
    .hero-section { padding-top: 140px; }
    .hero-panel { margin-top: 2rem; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .timeline-grid, .analytics-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-cloud { grid-template-columns: 1fr; }
    .logo-cloud-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .stack-grid,
    .case-study-grid { grid-template-columns: 1fr; }
    .case-study-card { min-height: 360px; }
    .contact-copy-block { max-width: none; padding-top: 0; }
}

@media (max-width: 767.98px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }
    body {
        padding-bottom: 0;
    }
    *,
    *::before,
    *::after {
        max-width: 100vw;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .container,
    .container-fluid,
    .row {
        max-width: 100%;
        overflow-x: hidden;
    }
    .row {
        --bs-gutter-x: 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }
    .row > * {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }
    .section-space { padding: 88px 0; }
    .technology-section { padding-top: 92px; padding-bottom: 92px; }
    .logo-cloud-section { padding-bottom: 64px; }
    .logo-cloud { padding: 1rem; }
    .logo-cloud-track,
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .logo-cloud-track strong {
        min-height: 54px;
    }
    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
    }
    .floating-shape {
        display: none;
    }
    .hero-actions, .contact-cta, .footer-cta, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .site-footer {
        padding-bottom: 1rem;
    }
    .footer-main {
        padding: 2.6rem 0 1.4rem;
        gap: 1.6rem;
    }
    .footer-links li {
        margin-bottom: 0.55rem;
    }
    .footer-bottom {
        padding-top: 1.1rem;
        gap: 1.2rem;
    }
    .footer-bottom p {
        margin-bottom: 0;
    }
    .footer-main { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(2.5rem, 16vw, 4rem); }
    .brand-logo {
        height: 42px;
        max-width: 158px;
    }
    .ds-navbar .brand-logo {
        height: 48px;
        max-width: 190px;
    }
    .hero-section .container,
    .hero-section .row,
    .hero-section [class*="col-"] {
        overflow: visible;
    }
    .hero-panel,
    .stack-card,
    .case-study-card,
    .industry-chip,
    .faq-item,
    .contact-cta,
    .footer-cta {
        border-radius: 24px;
    }
    .case-study-card {
        min-height: 330px;
        padding: 1.25rem;
    }
    .faq-item summary {
        padding: 1.1rem 1.15rem;
        font-size: 1rem;
    }
    .faq-item p {
        padding: 0 1.15rem 1.15rem;
    }
    .hero-text,
    .section-heading,
    .contact-copy-block,
    .footer-copy {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .parallax-showcase, .parallax-band { background-attachment: scroll; padding: 120px 0; }
    .timeline-grid, .gallery-grid, .analytics-grid, .blog-layout, .blog-detail-layout { grid-template-columns: 1fr; }
    .blog-card-grid { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .blog-cta-band { margin-top: -44px; }
    .blog-cta-panel { min-height: 220px; padding: 1.4rem; }
    .destination-card { min-height: 320px; }
    .about-story-visual { min-height: auto; }
    .about-story-photo { min-height: 320px; }
    .contact-info-card,
    .contact-form-panel { padding: 1.4rem; }
    .contact-info-card__top h3 { font-size: 1.5rem; }
    .contact-info-card__media { min-height: 160px; }
    .contact-divider { margin-bottom: 2.5rem; }
    .contact-copy-title { font-size: clamp(2.4rem, 14vw, 3.8rem); }
    .contact-social-links { flex-wrap: wrap; }
    .ds-chatbot__toggle {
        position: fixed !important;
        right: max(12px, env(safe-area-inset-right)) !important;
        bottom: max(10px, env(safe-area-inset-bottom)) !important;
        left: auto !important;
        top: auto !important;
        width: 54px;
        height: 54px;
        font-size: 1.05rem;
        margin: 0 !important;
        box-shadow: 0 16px 34px rgba(0,0,0,0.34);
    }
    .ds-chatbot__toggle-ring {
        inset: -4px;
    }
    .ds-chatbot__panel {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: calc(max(10px, env(safe-area-inset-bottom)) + 62px) !important;
        top: auto !important;
        width: auto;
        max-width: none;
        margin: 0 !important;
        padding: 0.85rem;
        border-radius: 24px;
        max-height: min(58vh, 420px);
    }
    .ds-chatbot__header {
        padding: 0.2rem 0.1rem 0.7rem;
    }
    .ds-chatbot__header h3 {
        font-size: 1.08rem;
    }
    .ds-chatbot__messages {
        max-height: min(34vh, 240px);
    }
    .ds-chatbot__bubble {
        max-width: 92%;
        font-size: 0.9rem;
    }
    .ds-chatbot__input {
        min-height: 48px;
        font-size: 0.92rem;
    }
    .ds-chatbot__send {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    .ds-chatbot__hint {
        font-size: 0.74rem;
    }
}

/* Final compact layout pass */
.hero-section {
    min-height: auto !important;
    padding-top: 118px !important;
    padding-bottom: 48px !important;
}

.hero-layout {
    min-height: 0 !important;
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.section-dark + .services-overview,
.services-overview + .logo-cloud-section,
.technology-section + .parallax-showcase,
.parallax-showcase + .case-study-section,
.case-study-section + .client-section {
    margin-top: 0 !important;
}

.services-overview {
    padding-bottom: 44px !important;
}

.logo-cloud-section {
    padding-bottom: 56px !important;
}

.technology-section {
    padding-bottom: 52px !important;
}

.parallax-showcase {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
}

.case-study-section {
    padding-top: 62px !important;
    padding-bottom: 52px !important;
}

.client-section {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.case-study-grid {
    align-items: stretch;
}

.case-study-card {
    padding: 0 !important;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.case-study-card > div:not(.case-study-media) {
    padding: 1.55rem;
}

.case-study-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eef2f7;
    border-bottom: 1px solid var(--enterprise-line);
    overflow: hidden;
}

.case-study-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.case-study-card:hover .case-study-media img {
    transform: scale(1.035);
}

.case-study-card > a {
    margin: 0 1.55rem 1.55rem;
}

.partner-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(1.6rem, 4vw, 3.5rem);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.88)),
        #ffffff;
    box-shadow: 0 24px 70px rgba(15,23,42,0.08);
}

.partner-panel-copy {
    max-width: 470px;
}

.partner-panel-copy h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: 0;
}

.partner-panel-copy p {
    margin: 0;
    color: var(--enterprise-muted);
    max-width: 460px;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: none;
}

.client-logo-card {
    min-height: 118px;
    border-radius: 22px;
    border: 1px solid var(--enterprise-line);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 1.55rem;
    color: var(--enterprise-muted);
    font-weight: 850;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    border-color: var(--enterprise-line-strong);
    background: #fbfcfd;
    box-shadow: 0 18px 42px rgba(15,23,42,0.08);
}

.client-logo-card img {
    max-width: min(100%, 210px);
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-pagination .swiper-pagination-bullet-active {
    background: var(--enterprise-ink);
}

@media (max-width: 767.98px) {
    .case-study-section,
    .client-section {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    .case-study-card > div:not(.case-study-media) {
        padding: 1.25rem;
    }

    .case-study-card > a {
        margin: 0 1.25rem 1.25rem;
    }

    .client-logo-card {
        min-height: 108px;
    }

    .partner-panel {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        border-radius: 22px;
    }

    .partner-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Compact showcase and image overlay cards */
.parallax-showcase {
    min-height: 0 !important;
}

.parallax-showcase .section-title {
    max-width: 760px;
    font-size: clamp(2rem, 3.1vw, 3.45rem) !important;
}

.showcase-copy p {
    max-width: 720px;
}

.showcase-points {
    display: grid;
    gap: 0.8rem;
    max-width: 430px;
    margin-left: auto;
}

.showcase-points span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.86);
    font-weight: 750;
}

.showcase-points i {
    color: var(--enterprise-accent);
}

.case-study-grid {
    gap: 1rem !important;
}

.case-study-card {
    position: relative !important;
    min-height: 360px !important;
    border-radius: 24px !important;
    color: #ffffff !important;
    background: #0b0d12 !important;
}

.case-study-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border: 0;
}

.case-study-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,7,12,0.06) 0%, rgba(4,7,12,0.52) 45%, rgba(4,7,12,0.88) 100%);
}

.case-study-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1.4rem !important;
}

.case-study-content span,
.case-study-content p {
    color: rgba(255,255,255,0.76) !important;
}

.case-study-content h3 {
    color: #ffffff;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.case-study-content a {
    width: 46px;
    height: 46px;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0b0d12;
}

.case-study-card > a {
    display: none !important;
}

@media (max-width: 991.98px) {
    .showcase-points {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .parallax-showcase .section-title {
        font-size: clamp(2rem, 9vw, 3rem) !important;
    }

    .case-study-card {
        min-height: 320px !important;
    }
}

.hero-title {
    font-size: clamp(2.8rem, 4.35vw, 4.8rem) !important;
    line-height: 1.04 !important;
}

.hero-text {
    font-size: 1.03rem !important;
    line-height: 1.7 !important;
}

.section-space,
.stats-section,
.technology-section,
.case-study-section,
.process-strip,
.industries-section,
.testimonials-section,
.faq-section,
.contact-cta-section {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
}

.logo-cloud-section {
    padding-top: 0 !important;
    padding-bottom: 48px !important;
}

.parallax-showcase,
.parallax-band {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
}

.inner-hero {
    padding-top: 112px !important;
    padding-bottom: 68px !important;
}

.stats-section .section-title {
    font-size: clamp(2rem, 2.9vw, 3.25rem) !important;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 92px !important;
        padding-bottom: 44px !important;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10.5vw, 3.1rem) !important;
        line-height: 1.08 !important;
    }

    .section-space,
    .stats-section,
    .technology-section,
    .case-study-section,
    .process-strip,
    .industries-section,
    .testimonials-section,
    .faq-section,
    .contact-cta-section {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }
}

/* Clean corporate reset after visual review */
body {
    background: #ffffff;
}

.ds-navbar {
    top: 16px;
}

.ds-navbar .container {
    max-width: 1320px;
    min-height: 58px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

.ds-navbar .brand-logo,
.brand-logo {
    height: 38px;
    max-width: 195px;
}

.nav-link {
    font-size: 0.94rem;
    padding: 0.52rem 0.78rem !important;
}

.nav-cta {
    min-height: 44px;
    padding: 0.66rem 1rem;
}

.section-space {
    padding: 84px 0;
}

.section-heading {
    margin-bottom: 2.25rem;
}

.section-title {
    font-size: clamp(2rem, 3.15vw, 3.6rem);
    line-height: 1.08;
}

.hero-section {
    min-height: auto;
    padding: 136px 0 84px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-video-layer,
.hero-gradient-grid,
.floating-shape {
    display: none !important;
}

.hero-layout {
    min-height: auto;
    row-gap: 2rem;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(3rem, 5.1vw, 5.7rem);
    line-height: 1;
    letter-spacing: 0 !important;
}

.hero-text {
    max-width: 610px;
    font-size: 1.08rem;
    line-height: 1.78;
}

.hero-actions {
    margin-top: 1.6rem;
}

.hero-proof {
    margin-top: 1.5rem;
}

.hero-proof span {
    background: #ffffff;
    box-shadow: none;
}

.hero-panel {
    max-width: 440px;
    margin-left: auto;
    padding: 1.5rem;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(15,23,42,0.08);
}

.hero-panel:hover {
    transform: none;
}

.hero-panel-item {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.hero-panel-item p {
    margin-bottom: 0;
}

.about-summary-section,
.section-dark {
    background: #0c111d;
}

.section-dark::before {
    display: none;
}

.section-dark .glass-panel {
    background: rgba(255,255,255,0.06);
}

.services-overview {
    padding-bottom: 56px;
}

.service-card,
.feature-card,
.stack-card,
.mini-process,
.industry-chip,
.testimonial-card,
.stat-card {
    box-shadow: none;
}

.service-card {
    min-height: 320px;
}

.service-card:hover,
.feature-card:hover,
.stack-card:hover,
.mini-process:hover,
.industry-chip:hover,
.testimonial-card:hover,
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(15,23,42,0.08);
}

.logo-cloud-section {
    padding: 0 0 64px;
    background: #ffffff;
}

.logo-cloud {
    box-shadow: none;
}

.stats-section {
    padding: 84px 0;
    background: #f7f9fc;
}

.stats-section .row.align-items-center {
    align-items: flex-start !important;
}

.stats-section .section-title {
    max-width: 620px;
    font-size: clamp(2rem, 3.2vw, 3.75rem);
}

.stats-section .col-lg-8 {
    padding-top: 0.5rem;
}

.stat-card {
    min-height: 176px;
    padding: 1.5rem 1rem;
}

.technology-section {
    padding: 88px 0;
}

.technology-section .section-title,
.technology-section .section-lead {
    max-width: 720px;
}

.stack-card {
    min-height: 190px;
    padding: 1.5rem;
}

.parallax-showcase {
    padding: 88px 0;
    background: #0c111d !important;
}

.parallax-showcase::before {
    display: none;
}

.showcase-overlay {
    display: none;
}

.showcase-copy {
    max-width: 860px;
}

.case-study-section {
    padding: 84px 0;
}

.case-study-card {
    min-height: 300px;
    color: var(--enterprise-ink);
    background: #ffffff !important;
    border: 1px solid var(--enterprise-line);
    box-shadow: none;
}

.case-study-card::before,
.case-study-card::after {
    display: none;
}

.case-study-card span,
.case-study-card p {
    color: var(--enterprise-muted);
}

.case-study-card > a {
    background: #0b0d12;
    color: #ffffff;
}

.process-strip,
.industries-section,
.testimonials-section,
.contact-cta-section {
    padding: 84px 0;
}

.process-strip {
    background: #f7f9fc;
}

.faq-section {
    padding: 88px 0;
}

.faq-section .section-title {
    font-size: clamp(2rem, 3vw, 3.5rem);
}

.inner-hero {
    padding: 132px 0 84px;
    background: #f7f9fc;
}

.inner-hero::before,
.inner-hero::after {
    display: none;
}

.inner-hero h1 {
    font-size: clamp(2.7rem, 4.7vw, 5.3rem);
    line-height: 1.02;
}

.parallax-band {
    padding: 88px 0;
    background-image: none !important;
    background-color: #0c111d;
}

.parallax-band::before {
    display: none;
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(3rem, 5.6vw, 4.8rem);
    }
}

@media (max-width: 991.98px) {
    .hero-panel {
        margin-left: 0;
        max-width: 100%;
    }

    .stats-section .section-title {
        max-width: 760px;
    }

    .stats-section .col-lg-8 {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .ds-navbar {
        top: 8px;
    }

    .section-space,
    .stats-section,
    .technology-section,
    .case-study-section,
    .process-strip,
    .industries-section,
    .testimonials-section,
    .faq-section,
    .contact-cta-section {
        padding: 64px 0;
    }

    .hero-section {
        padding: 104px 0 64px;
    }

    .hero-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-title {
        max-width: 100% !important;
        font-size: clamp(2.75rem, 13.5vw, 3.8rem);
        line-height: 1.04;
    }

    .hero-text,
    .hero-section .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1rem;
        line-height: 1.72;
    }

    .hero-actions,
    .hero-section .hero-actions,
    .hero-section .hero-proof {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-panel {
        display: none;
    }

    .logo-cloud-section {
        padding-bottom: 48px;
    }

    .stats-section .section-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .stat-card {
        min-height: 150px;
    }
}

h1, h2, h3, h4, h5, h6,
.eyebrow,
.case-study-card span,
.destination-card span,
.ds-chatbot__eyebrow,
.blog-meta,
.blog-detail-meta {
    letter-spacing: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .hero-video-layer,
    .hero-gradient-grid,
    .floating-shape,
    .tilt-card {
        transform: none !important;
    }
}

/* Enterprise refinement layer */
:root {
    --enterprise-bg: #f7f8fb;
    --enterprise-surface: #ffffff;
    --enterprise-surface-soft: #f2f4f7;
    --enterprise-ink: #0b0d12;
    --enterprise-muted: #596070;
    --enterprise-faint: #8a92a3;
    --enterprise-line: rgba(15, 23, 42, 0.1);
    --enterprise-line-strong: rgba(15, 23, 42, 0.16);
    --enterprise-accent: #0bb8a8;
    --enterprise-accent-2: #4f46e5;
    --enterprise-shadow: 0 18px 54px rgba(15, 23, 42, 0.09);
    --enterprise-shadow-hover: 0 26px 70px rgba(15, 23, 42, 0.13);
    --enterprise-radius: 24px;
}

html {
    scroll-padding-top: 128px;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--enterprise-bg) 46%, #ffffff 100%);
    color: var(--enterprise-ink);
    font-size: 16px;
    line-height: 1.65;
    font-feature-settings: "kern" 1, "liga" 1;
}

section[id] {
    scroll-margin-top: 128px;
}

.section-space {
    padding: clamp(84px, 8vw, 132px) 0;
}

.section-title,
.hero-title,
.contact-cta h2,
.footer-cta h2,
.service-card h3,
.feature-card h3,
.inner-hero h1,
.destination-card h3,
.blog-cta-panel h2,
.public-blog-card h3,
.blog-section-head h2,
.stack-card h3,
.case-study-card h3,
.faq-item summary,
.team-card h3,
.pricing-card h3,
.analytics-card h3,
.contact-copy-title,
.contact-info-card__top h3,
.contact-social-title,
.contact-copy-title,
.footer-main h6 {
    font-family: 'Manrope', Arial, sans-serif !important;
    letter-spacing: 0 !important;
    color: inherit;
}

.section-title {
    font-size: clamp(2.15rem, 4.2vw, 4.75rem);
    line-height: 1.02;
    font-weight: 800;
    max-width: 940px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: clamp(2.6rem, 5vw, 4.6rem);
}

.section-heading p,
.section-lead,
.hero-text,
.inner-hero p,
.service-card p,
.feature-card p,
.mini-process p,
.mini-feature p,
.pricing-card p,
.analytics-card p,
.team-card p,
.testimonial-card span,
.footer-copy,
.contact-cta p,
.showcase-copy p,
.public-blog-card p,
.blog-side-card p,
.blog-content p,
.blog-content li {
    color: var(--enterprise-muted);
}

.eyebrow {
    margin-bottom: 0.9rem;
    color: var(--enterprise-faint);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em !important;
}

.glass-panel,
.service-card,
.feature-card,
.stat-card,
.testimonial-card,
.timeline-item,
.team-card,
.pricing-card,
.analytics-card,
.mini-feature,
.mini-process,
.contact-form,
.map-placeholder,
.public-blog-card,
.blog-side-card,
.blog-content,
.industry-chip,
.stack-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--enterprise-line);
    box-shadow: 0 1px 0 rgba(255,255,255,0.85), var(--enterprise-shadow);
    border-radius: var(--enterprise-radius);
}

.glass-panel::before,
.service-card::before,
.destination-card::after,
.image-card::before {
    display: none;
}

.service-card,
.feature-card,
.timeline-item,
.team-card,
.pricing-card,
.analytics-card,
.mini-feature,
.mini-process,
.stack-card,
.industry-chip,
.public-blog-card,
.blog-side-card {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.feature-card:hover,
.timeline-item:hover,
.team-card:hover,
.pricing-card:hover,
.analytics-card:hover,
.mini-feature:hover,
.mini-process:hover,
.stack-card:hover,
.industry-chip:hover,
.public-blog-card:hover,
.blog-side-card:hover {
    transform: translateY(-4px);
    border-color: var(--enterprise-line-strong);
    box-shadow: var(--enterprise-shadow-hover);
}

.btn {
    min-height: 50px;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
}

.btn-light {
    background: #0b0d12;
    border-color: #0b0d12;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(11,13,18,0.16);
}

.btn-light:hover,
.btn-light:focus-visible {
    background: #202632;
    border-color: #202632;
    color: #ffffff;
}

.btn-outline-light {
    background: #ffffff;
    border: 1px solid var(--enterprise-line-strong);
    color: var(--enterprise-ink);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: var(--enterprise-ink);
    border-color: var(--enterprise-ink);
    color: #ffffff;
}

.ds-navbar {
    top: 14px;
    padding: 0;
}

.ds-navbar .container {
    min-height: 64px;
    padding: 0.45rem 0.8rem 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(15,23,42,0.12);
    box-shadow: 0 18px 56px rgba(15,23,42,0.1);
}

.ds-navbar.scrolled {
    padding: 0;
}

.ds-navbar.scrolled .container {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 14px 42px rgba(15,23,42,0.11);
}

.navbar-brand {
    font-family: 'Manrope', Arial, sans-serif;
}

.ds-navbar .brand-logo,
.brand-logo {
    height: 42px;
    max-width: 205px;
}

.nav-link {
    padding: 0.62rem 0.9rem !important;
    color: rgba(11,13,18,0.68);
    font-weight: 650;
    font-size: 0.96rem;
}

.nav-link:hover,
.nav-link:focus-visible {
    transform: none;
    background: rgba(15,23,42,0.05);
}

.ds-navbar .nav-link.active,
.ds-navbar .navbar-nav .nav-link.active,
.ds-navbar .navbar-nav .nav-link.show {
    background: #f0f2f5;
    color: var(--enterprise-ink);
    font-weight: 800;
}

.nav-cta {
    min-height: 48px;
    padding: 0.75rem 1.18rem;
}

.hero-section {
    min-height: 100svh;
    padding: 128px 0 72px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.86) 47%, rgba(255,255,255,0.58) 100%),
        #ffffff;
}

.hero-video-layer {
    opacity: 0.62;
    filter: saturate(0.85) contrast(1.02);
}

.hero-gradient-grid {
    opacity: 0.26;
}

.floating-shape {
    opacity: 0.45;
}

.hero-title {
    max-width: 860px;
    font-size: clamp(3.6rem, 7.4vw, 7rem);
    line-height: 0.96;
    font-weight: 850;
    color: var(--enterprise-ink);
}

.hero-text {
    max-width: 690px;
    font-size: clamp(1.02rem, 1.2vw, 1.22rem);
    line-height: 1.8;
}

.hero-panel {
    padding: 1.75rem;
    background: rgba(255,255,255,0.9);
    border-radius: 28px;
}

.hero-panel-top,
.hero-panel-item span,
.timeline-item span,
.mini-process span {
    font-family: 'Manrope', Arial, sans-serif;
}

.hero-panel-item h6 {
    font-weight: 800;
}

.hero-panel-meter span,
.premium-card::after {
    background: linear-gradient(90deg, var(--enterprise-accent), var(--enterprise-accent-2));
}

.services-overview {
    background: #ffffff;
}

.service-card,
.feature-card,
.stack-card {
    padding: clamp(1.6rem, 2vw, 2rem);
    min-height: 100%;
}

.service-card h3,
.feature-card h3,
.stack-card h3,
.mini-process h3,
.timeline-item h3,
.pricing-card h3,
.analytics-card h3 {
    font-size: clamp(1.28rem, 1.8vw, 1.75rem);
    line-height: 1.16;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.feature-card i,
.service-icon,
.stack-card i,
.contact-info-card__icon,
.team-avatar {
    background: #f4f6f8;
    border: 1px solid var(--enterprise-line);
    color: var(--enterprise-ink);
    box-shadow: inset 0 1px 0 #ffffff;
}

.logo-cloud {
    grid-template-columns: 1.1fr 3fr;
    background: #ffffff;
    box-shadow: var(--enterprise-shadow);
}

.logo-cloud-track strong {
    background: #f8fafc;
    border-color: var(--enterprise-line);
    color: var(--enterprise-muted);
}

.stats-section {
    padding-top: clamp(84px, 8vw, 124px);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.stat-card h3,
.pricing-card h3,
.analytics-card h3 {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(2.1rem, 3vw, 3.15rem);
    font-weight: 850;
}

.section-dark {
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 0%, rgba(11,184,168,0.16), transparent 30%),
        radial-gradient(circle at 84% 10%, rgba(79,70,229,0.18), transparent 34%),
        linear-gradient(135deg, #0b0d12 0%, #111827 58%, #07080b 100%);
}

.section-dark::before {
    opacity: 0.35;
    background-size: 88px 88px;
}

.section-dark .section-title,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: #ffffff;
}

.section-dark .eyebrow {
    color: rgba(255,255,255,0.56);
}

.section-dark .section-lead,
.section-dark p,
.section-dark .feature-card p,
.section-dark .stack-card p,
.section-dark .faq-item p {
    color: rgba(255,255,255,0.66);
}

.section-dark .glass-panel,
.faq-item {
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}

.technology-section,
.faq-section {
    padding-top: clamp(96px, 9vw, 144px);
    padding-bottom: clamp(96px, 9vw, 144px);
}

.stack-grid {
    gap: 1rem;
}

.stack-card {
    min-height: 220px;
}

.case-study-section {
    background: #ffffff;
}

.case-study-grid {
    gap: 1.1rem;
}

.case-study-card {
    min-height: 390px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(15,23,42,0.16);
}

.case-study-card h3 {
    font-weight: 800;
}

.process-strip {
    padding-top: clamp(84px, 8vw, 120px);
    background: #f8fafc;
}

.industries-section {
    background: #ffffff;
}

.industry-chip {
    min-height: 78px;
    background: #ffffff;
}

.testimonials-section {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.testimonial-card {
    min-height: 240px;
}

.testimonial-card p {
    color: var(--enterprise-ink);
    font-size: 1.02rem;
}

.faq-section .section-title {
    font-size: clamp(2.25rem, 4vw, 4.25rem);
    line-height: 1.08;
}

.faq-list {
    gap: 0.85rem;
}

.faq-item {
    border-radius: 20px;
}

.faq-item:hover {
    transform: none;
}

.faq-item summary {
    min-height: 72px;
    padding: 1.15rem 1.25rem;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.35;
    font-weight: 750;
    color: #ffffff;
}

.faq-item summary::after {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 700;
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: rgba(255,255,255,0.68);
    font-size: 0.98rem;
}

.inner-hero {
    padding: 168px 0 104px;
    background: linear-gradient(180deg, #ffffff, #f7f8fb);
}

.inner-hero::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.74)),
        var(--hero-image, none) center/cover no-repeat;
    opacity: 0.82;
}

.inner-hero h1 {
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.98;
    font-weight: 850;
}

.info-stack {
    background: rgba(255,255,255,0.92);
}

.blog-cta-panel,
.blog-content,
.public-blog-card,
.blog-side-card {
    border-radius: 24px;
}

.blog-content h2,
.blog-content h3 {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 800;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 56px;
    border-radius: 14px;
    background: #ffffff;
    border-color: var(--enterprise-line);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.ds-chatbot__input:focus {
    border-color: rgba(11,184,168,0.56);
    box-shadow: 0 0 0 4px rgba(11,184,168,0.12);
}

.contact-cta,
.footer-cta {
    background:
        radial-gradient(circle at 10% 0%, rgba(11,184,168,0.16), transparent 30%),
        #0b0d12;
    color: #ffffff;
}

.contact-cta .eyebrow,
.footer-cta .eyebrow,
.contact-cta p {
    color: rgba(255,255,255,0.66);
}

.site-footer {
    background: #ffffff;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--enterprise-faint);
}

@media (max-width: 991.98px) {
    .ds-navbar {
        top: 10px;
    }

    .ds-navbar .container {
        border-radius: 24px;
    }

    .navbar-collapse {
        background: #ffffff;
        border-color: var(--enterprise-line);
    }

    .logo-cloud {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 104px;
    }

    body {
        font-size: 15px;
    }

    .section-space {
        padding: 76px 0;
    }

    .ds-navbar .container {
        min-height: 58px;
        padding: 0.35rem 0.65rem;
    }

    .ds-navbar .brand-logo,
    .brand-logo {
        height: 36px;
        max-width: 176px;
    }

    .hero-section {
        min-height: auto;
        padding: 112px 0 72px;
    }

    .hero-section .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-section .row {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-section [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4.25rem);
        line-height: 0.98;
        max-width: calc(100vw - 44px) !important;
        overflow-wrap: normal;
    }

    .hero-text {
        width: 100%;
        max-width: calc(100vw - 44px) !important;
        font-size: 1rem;
        line-height: 1.72;
        overflow-wrap: break-word;
    }

    .hero-actions {
        display: grid;
        width: 100%;
        max-width: 340px;
        gap: 0.85rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-proof span {
        width: 100%;
    }

    .section-title,
    .faq-section .section-title {
        font-size: clamp(2.05rem, 10vw, 3.25rem);
        line-height: 1.08;
    }

    .service-card,
    .feature-card,
    .stack-card,
    .case-study-card,
    .industry-chip,
    .faq-item,
    .contact-cta,
    .footer-cta,
    .testimonial-card,
    .public-blog-card {
        border-radius: 20px;
    }

    .case-study-card {
        min-height: 320px;
    }

    .faq-item summary {
        min-height: 64px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section .hero-text {
        display: block !important;
        white-space: normal !important;
        width: min(330px, calc(100vw - 44px)) !important;
        max-width: min(330px, calc(100vw - 44px)) !important;
        min-width: 0 !important;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }

    .hero-section .hero-actions,
    .hero-section .hero-proof {
        width: min(340px, calc(100vw - 44px)) !important;
        max-width: min(340px, calc(100vw - 44px)) !important;
    }
}

/* Final case study repair: compact image overlay cards */
.case-study-section .case-study-grid {
    align-items: stretch !important;
    gap: 1rem !important;
}

.case-study-section .case-study-card {
    position: relative !important;
    display: block !important;
    height: 360px !important;
    min-height: 360px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background: #0b0d12 !important;
    border: 1px solid rgba(15,23,42,0.1) !important;
    box-shadow: 0 18px 48px rgba(15,23,42,0.1) !important;
}

.case-study-section .case-study-media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    border: 0 !important;
    background: #0b0d12 !important;
}

.case-study-section .case-study-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.case-study-section .case-study-media::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    background: linear-gradient(180deg, rgba(5,8,13,0.05) 0%, rgba(5,8,13,0.52) 42%, rgba(5,8,13,0.92) 100%) !important;
    pointer-events: none !important;
}

.case-study-section .case-study-content {
    position: absolute !important;
    z-index: 2 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 1.35rem !important;
    color: #ffffff !important;
}

.case-study-section .case-study-content span,
.case-study-section .case-study-content p {
    color: rgba(255,255,255,0.78) !important;
}

.case-study-section .case-study-content h3 {
    color: #ffffff !important;
    font-size: clamp(1.35rem, 1.75vw, 1.85rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 0.65rem !important;
}

.case-study-section .case-study-content p {
    margin-bottom: 0 !important;
    line-height: 1.55 !important;
}

.case-study-section .case-study-content a {
    width: 42px !important;
    height: 42px !important;
    margin-top: 0.9rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #0b0d12 !important;
}

.case-study-section .case-study-card > a {
    display: none !important;
}

@media (max-width: 767.98px) {
    .case-study-section .case-study-card {
        height: 320px !important;
        min-height: 320px !important;
    }
}

/* Final header repair: clean sticky corporate bar */
.ds-navbar,
.ds-navbar.scrolled {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    background: rgba(255,255,255,0.96) !important;
    border-bottom: 1px solid rgba(15,23,42,0.1) !important;
    box-shadow: 0 8px 26px rgba(15,23,42,0.06) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.ds-navbar .container,
.ds-navbar.scrolled .container {
    max-width: 1320px !important;
    min-height: 66px !important;
    padding: 0.55rem 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ds-navbar .brand-logo,
.ds-navbar.scrolled .brand-logo {
    height: 38px !important;
    max-width: 190px !important;
}

.ds-navbar .nav-link {
    padding: 0.52rem 0.82rem !important;
}

.ds-navbar .nav-cta {
    min-height: 42px !important;
    padding: 0.62rem 1rem !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 0.6rem !important;
        border-radius: 16px !important;
        box-shadow: 0 16px 36px rgba(15,23,42,0.08) !important;
    }
}

@media (max-width: 767.98px) {
    .ds-navbar .container,
    .ds-navbar.scrolled .container {
        min-height: 58px !important;
        padding: 0.45rem 14px !important;
    }

    .ds-navbar .brand-logo,
    .ds-navbar.scrolled .brand-logo {
        height: 34px !important;
        max-width: 168px !important;
    }
}

/* Footer cleanup: keep one CTA only and let the footer begin cleanly */
.site-footer {
    padding-top: 1.5rem !important;
}

.site-footer .footer-main {
    padding-top: 2.8rem !important;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 0.5rem !important;
    }

    .site-footer .footer-main {
        padding-top: 2rem !important;
    }
}

/* Brand palette cleanup: remove blue/purple casts and keep ELM-style black/white gradients */
:root {
    --enterprise-accent: #111111 !important;
    --enterprise-accent-2: #5f6268 !important;
    --enterprise-accent-3: #d7d9dd !important;
}

.section-dark,
.technology-section.section-dark,
.faq-section.section-dark {
    background:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.075), transparent 32%),
        radial-gradient(circle at 100% 18%, rgba(255,255,255,0.045), transparent 34%),
        linear-gradient(135deg, #050505 0%, #141414 50%, #2f2f2f 100%) !important;
}

.section-dark::before,
.technology-section.section-dark::before,
.faq-section.section-dark::before {
    opacity: 0.22 !important;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) !important;
}

.section-dark .glass-panel,
.section-dark .stack-card,
.section-dark .feature-card,
.section-dark .faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)) !important;
    border-color: rgba(255,255,255,0.16) !important;
}

.hero-panel-meter span,
.premium-card::after {
    background: linear-gradient(90deg, #111111, #777777, #f3f3f3) !important;
}

.contact-cta {
    background:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.1), transparent 32%),
        linear-gradient(135deg, #050505 0%, #171717 58%, #3a3a3a 100%) !important;
}

.btn-light,
.ds-chatbot__toggle {
    background: linear-gradient(135deg, #050505, #242424) !important;
    border-color: #050505 !important;
}

.btn-light:hover,
.btn-light:focus-visible {
    background: linear-gradient(135deg, #202020, #050505) !important;
    border-color: #202020 !important;
}

.nav-cta {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #050505, #d7d9dd) border-box !important;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.ds-chatbot__input:focus {
    border-color: rgba(17,17,17,0.48) !important;
    box-shadow: 0 0 0 4px rgba(17,17,17,0.1) !important;
}

/* Match the showcase band to the black/white brand sections */
.parallax-showcase {
    background:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.075), transparent 30%),
        radial-gradient(circle at 100% 20%, rgba(255,255,255,0.045), transparent 32%),
        linear-gradient(135deg, #050505 0%, #141414 52%, #303030 100%) !important;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.075), transparent 30%),
        radial-gradient(circle at 100% 20%, rgba(255,255,255,0.045), transparent 32%),
        linear-gradient(135deg, #050505 0%, #141414 52%, #303030 100%) !important;
}

.parallax-showcase::before {
    opacity: 0.2 !important;
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) !important;
    background-size: 88px 88px !important;
}

.parallax-showcase .showcase-overlay {
    background: linear-gradient(90deg, rgba(5,5,5,0.18), rgba(48,48,48,0.08)) !important;
}

.parallax-showcase .showcase-points span {
    background: linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)) !important;
    border-color: rgba(255,255,255,0.16) !important;
}

.parallax-showcase .showcase-points i {
    color: #ffffff !important;
}

/* Unite technology cards and capability copy into one continuous dark section */
.technology-section.section-dark,
.technology-section.section-dark + .parallax-showcase {
    background: #181818 !important;
    background-image: none !important;
}

.technology-section.section-dark {
    padding-bottom: 46px !important;
}

.technology-section.section-dark + .parallax-showcase {
    margin-top: -2px !important;
    padding-top: 34px !important;
    padding-bottom: 82px !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

.technology-section.section-dark + .parallax-showcase::before {
    display: none !important;
}

.technology-section.section-dark + .parallax-showcase .showcase-overlay {
    display: none !important;
}

.technology-section.section-dark .stack-grid {
    margin-bottom: 0 !important;
}

@media (max-width: 767.98px) {
    .technology-section.section-dark {
        padding-bottom: 28px !important;
    }

    .technology-section.section-dark + .parallax-showcase {
        padding-top: 24px !important;
        padding-bottom: 64px !important;
    }
}

/* Restore stack card hover animation after AOS transform reset */
.technology-section .stack-card[data-aos],
.technology-section .stack-card.tilt-card {
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease !important;
}

.technology-section .stack-card[data-aos]:hover,
.technology-section .stack-card.tilt-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(255,255,255,0.28) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.065)) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28) !important;
}

.technology-section .stack-card i {
    transition: transform 240ms ease, background 240ms ease, border-color 240ms ease !important;
}

.technology-section .stack-card:hover i {
    transform: translateY(-4px) scale(1.06) !important;
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(255,255,255,0.24) !important;
}

/* Testimonial cleanup: static grid without carousel background artifacts */
.testimonials-section {
    position: relative !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.testimonials-section::before,
.testimonials-section::after {
    display: none !important;
}

.testimonial-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.1rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.testimonial-grid .testimonial-card {
    min-height: 220px !important;
    height: 100% !important;
    background: #ffffff !important;
    border: 1px solid rgba(15,23,42,0.1) !important;
    box-shadow: 0 18px 45px rgba(15,23,42,0.06) !important;
}

.testimonial-swiper,
.testimonial-swiper .swiper-wrapper,
.testimonial-swiper .swiper-slide,
.testimonial-swiper .swiper-pagination {
    background: transparent !important;
}

@media (max-width: 991.98px) {
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Premium case-study card and button hover */
.case-study-section .case-study-card {
    cursor: pointer !important;
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, filter 280ms ease !important;
    will-change: transform !important;
}

.case-study-section .case-study-card:hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(15,23,42,0.28) !important;
    box-shadow: 0 30px 80px rgba(15,23,42,0.18) !important;
    filter: saturate(1.04) contrast(1.04) !important;
}

.case-study-section .case-study-card:hover .case-study-media img {
    transform: scale(1.08) !important;
}

.case-study-section .case-study-content {
    transition: transform 280ms ease !important;
}

.case-study-section .case-study-card:hover .case-study-content {
    transform: translateY(-5px) !important;
}

.case-study-section .case-study-content a {
    position: relative !important;
    overflow: hidden !important;
    background: #ffffff !important;
    color: #0b0d12 !important;
    border: 1px solid rgba(255,255,255,0.74) !important;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

.case-study-section .case-study-content a::before {
    content: '' !important;
    position: absolute !important;
    inset: 5px !important;
    border-radius: inherit !important;
    background: rgba(11,13,18,0.08) !important;
    opacity: 0 !important;
    transform: scale(0.72) !important;
    transition: transform 220ms ease, opacity 220ms ease !important;
    z-index: 0 !important;
}

.case-study-section .case-study-content a i {
    position: relative !important;
    z-index: 1 !important;
    transition: transform 220ms ease !important;
}

.case-study-section .case-study-content a:hover {
    transform: translateY(-3px) !important;
    background: #ffffff !important;
    color: #0b0d12 !important;
    border-color: rgba(255,255,255,0.95) !important;
    box-shadow: 0 12px 26px rgba(0,0,0,0.18), 0 0 0 6px rgba(255,255,255,0.12) !important;
}

.case-study-section .case-study-content a:hover::before {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.case-study-section .case-study-content a:hover i {
    transform: translateX(2px) !important;
}

/* Clean trust/stat band */
.logo-cloud-section {
    display: none !important;
}

.stats-section {
    padding-top: clamp(56px, 6vw, 86px) !important;
    padding-bottom: clamp(56px, 6vw, 86px) !important;
    background: #ffffff !important;
}

.stats-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr) !important;
    align-items: center !important;
    gap: clamp(2rem, 5vw, 5rem) !important;
    padding: clamp(1.6rem, 3.5vw, 3rem) !important;
    border: 1px solid rgba(15,23,42,0.1) !important;
    border-radius: 30px !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,248,250,0.86)),
        #ffffff !important;
    box-shadow: 0 24px 70px rgba(15,23,42,0.08) !important;
}

.stats-copy {
    max-width: 640px !important;
}

.stats-copy .section-title {
    max-width: 620px !important;
    margin-bottom: 1rem !important;
    font-size: clamp(2.2rem, 4.4vw, 4.8rem) !important;
    line-height: 1.02 !important;
}

.stats-copy p {
    max-width: 560px !important;
    margin: 0 !important;
    color: var(--enterprise-muted) !important;
    font-size: 1.02rem !important;
}

.stats-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
}

.stats-card-grid .stat-card {
    min-height: 154px !important;
    padding: 1.25rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(15,23,42,0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95) !important;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

.stats-card-grid .stat-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(15,23,42,0.18) !important;
    box-shadow: 0 18px 42px rgba(15,23,42,0.09) !important;
}

.stats-card-grid .stat-card h3 {
    margin: 0 0 0.45rem !important;
    font-size: clamp(2.25rem, 4vw, 3.35rem) !important;
    line-height: 1 !important;
}

.stats-card-grid .stat-card p {
    margin: 0 !important;
    color: var(--enterprise-muted) !important;
    font-size: 0.96rem !important;
}

@media (max-width: 991.98px) {
    .stats-panel {
        grid-template-columns: 1fr !important;
    }

    .stats-card-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Header scale adjustment */
.ds-navbar .container,
.ds-navbar.scrolled .container {
    min-height: 78px !important;
    padding: 0.75rem 18px !important;
}

.ds-navbar .brand-logo,
.ds-navbar.scrolled .brand-logo {
    height: 48px !important;
    max-width: 230px !important;
}

.ds-navbar .nav-link {
    padding: 0.72rem 1rem !important;
    font-size: 1.02rem !important;
}

.ds-navbar .nav-cta {
    min-height: 50px !important;
    padding: 0.78rem 1.35rem !important;
    font-size: 1.02rem !important;
}

@media (max-width: 991.98px) {
    .ds-navbar .container,
    .ds-navbar.scrolled .container {
        min-height: 66px !important;
        padding: 0.55rem 14px !important;
    }

    .ds-navbar .brand-logo,
    .ds-navbar.scrolled .brand-logo {
        height: 40px !important;
        max-width: 190px !important;
    }
}
