/* ==============================================================================
   CODING WARRIORS — MASTER STYLESHEET
   ==============================================================================
   Shared by every page: index.html (or website.index), and every Laravel
   blade view under website/about-us/* — company-overview, our-team,
   corporate-values, what-makes-us-different, client-onboarding-process
   and referral-program.
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   --------------------------------------------------------------------------
   01. Root Variables & Global Base
   02. Top Bar
   03. Header & Primary Navigation
   04. Mega Menu (Shared — Services / About Us)
   05. Simple Dropdown (Solutions)
   06. Mobile Hamburger & Drawer
   07. Hero Slider
   08. Hero Visual Card (What We Build / Live Team Coverage / Hire Developers)
   09. Slide Tab Bar
   10. Trust Bar Marquee
   11. Services Section (Our Expertise)
   12. Pastel Badge System
   13. Why Choose Us
   14. Footer
   15. Tech Stack (Marquee Carousel)
   16. Our Process
   17. Portfolio / Case Studies (Carousel + Scrolling Screenshot Preview)
   18. Industries We Serve
   19. Blog / Tech Talk Preview
   20. Testimonials (Carousel) & Trust Badges
   21. CTA Band (shared partial — website.layouts.cta)
   22. FAQ
   23. About Us (Home Page Preview Section)
   24. Code Craftsmanship (VS Code Editor Mockup)
   25. 24/7 Expert Support
   26. Page Hero (shared banner — every About Us sub-page)
   27. About Us Page — Mission, Values & Timeline
   28. About Us Page — Team
   29. Contact Us Page — Contact Form & Info Cards
   30. Contact Us Page — Map & Office Locations
   31. Services Overview Page
   32. Service Detail Page — Feature Checklist
   33. Company Overview Page — Snapshot Stats
   34. Company Overview Page — Certifications & Awards
   35. Our Team Page — Featured Leader, Filters & Team Cards
   36. What Makes Us Different Page — Comparison Table
   37. Client Onboarding / Referral — Shared Process Grid Variant
   38. Referral Program Page — Reward Tiers
   ============================================================================== */

/* ==============================================================================
   01. ROOT VARIABLES & GLOBAL BASE
   ============================================================================== */
:root {
    --p: #3e1e64;
    --pd: #2a1251;
    --ps: #ede5f7;
    --pm: #e0d2f0;
    --white: #fff;
    --bg: #faf7fd;
    --td: #1e1229;
    --tb: #4a4560;
    --tl: #8a82a0;
    --bor: #e6dbf0;
    --gold: #f5a623;
    --navy: #0d2240;
    --font: "Hind", sans-serif;
    --fonth: "Poppins", sans-serif;
    --sh: 0 2px 16px rgba(62, 30, 100, 0.08);
    --shl: 0 8px 40px rgba(62, 30, 100, 0.14);
    --tr: 0.25s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
.btn-cta,
.btn-hp,
.btn-ho,
.btn-onav,
.dp,
.ds,
.stat strong,
.slide-badge,
.eyebrow,
.vc-tag,
.badge-blue,
.badge-green,
.badge-purple,
.badge-orange,
.tzname,
.tztime,
.devname,
.fc h5 {
    font-family: var(--fonth);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* ==============================================================================
   02. TOP BAR
   ============================================================================== */

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--td);
    line-height: 1.65;
    overflow-x: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--ps);
}
::-webkit-scrollbar-thumb {
    background: var(--p);
    border-radius: 99px;
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--p) var(--ps);
}

.topbar {
    background: var(--pd);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.86rem;
    padding: 9px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-l {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar-l span {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.topbar-l a {
    color: rgba(255, 255, 255, 0.88);
    transition: color var(--tr);
}
.topbar-l a:hover {
    color: #fff;
}
.topbar-r {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}
.tsoc {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--tr);
}
.tsoc:hover {
    background: rgba(255, 255, 255, 0.28);
}
.tsoc svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.88);
}

/* ==============================================================================
   03. HEADER & PRIMARY NAVIGATION
   ============================================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--bor);
    box-shadow: 0 1px 14px rgba(62, 30, 100, 0.08);
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.logo img {
    height: 60px;
    width: auto;
}
.dnav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.ni {
    position: relative;
}
.nl {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--tb);
    font-size: 0.93rem;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 8px;
    transition:
        color var(--tr),
        background var(--tr);
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font);
}
.nl:hover,
.ni:hover > .nl {
    color: var(--p);
    background: var(--ps);
}
.nl.active {
    color: var(--p);
    background: var(--ps);
    font-weight: 700;
}
.chev {
    font-size: 0.55rem;
    transition: transform var(--tr);
    display: inline-block;
}
.ni:hover > .nl .chev {
    transform: rotate(180deg);
}
.ndiv {
    width: 1px;
    height: 22px;
    background: var(--bor);
    margin: 0 7px;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--p);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.93rem;
    transition:
        background var(--tr),
        transform var(--tr);
    white-space: nowrap;
}
.btn-cta:hover {
    background: var(--pd);
    transform: translateY(-1px);
}
.btn-onav {
    color: var(--p);
    border: 1.5px solid var(--p);
    padding: 9px 17px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.93rem;
    background: transparent;
    transition: background var(--tr);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.btn-onav:hover {
    background: var(--ps);
}
.btn-hire {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px 9px 17px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.93rem;
    white-space: nowrap;
    color: var(--p);
    background: var(--white);
    border: 1.5px solid transparent;
    background-image:
        linear-gradient(var(--white), var(--white)),
        linear-gradient(90deg, var(--p), var(--gold), var(--p));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size:
        100% 100%,
        200% 100%;
    animation: hireBorderFlow 3.5s linear infinite;
    overflow: hidden;
    transition: transform var(--tr);
}
.btn-hire:hover {
    transform: translateY(-1px);
}
@keyframes hireBorderFlow {
    0% {
        background-position:
            0 0,
            0% 0;
    }
    100% {
        background-position:
            0 0,
            200% 0;
    }
}
.btn-hire .hire-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: livePulse 1.8s ease-in-out infinite;
}
.btn-hire .hire-badge {
    background: linear-gradient(90deg, var(--p), var(--pd));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 2px;
}
/* ==============================================================================
   04. MEGA MENU (SHARED — SERVICES / ABOUT US)
   ============================================================================== */

.mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 760px;
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(62, 30, 100, 0.16);
    padding: 26px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
    z-index: 999;
}
.ni:hover > .mega {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--bor);
    border-top: 1px solid var(--bor);
    transform: translateX(-50%) rotate(45deg);
}
.mega-hd {
    font-size: 0.71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tl);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bor);
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.mi {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px;
    border-radius: 10px;
    transition: background var(--tr);
}
.mi:hover {
    background: var(--ps);
}
.mi-ico {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform var(--tr),
        box-shadow var(--tr);
}
.mi-ico svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}
.mi:hover .mi-ico {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(62, 30, 100, 0.35);
}
.mi-txt-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mi-badge {
    background: #fdf1de;
    color: #a56a0e;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.mi-txt h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 2px;
}
.mi-txt p {
    font-size: 0.74rem;
    color: var(--tl);
    line-height: 1.4;
}
.mega-ft {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--bor);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mega-ft span {
    font-size: 0.82rem;
    color: var(--tl);
}
.mega-ft a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--p);
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--ps);
    transition: background var(--tr);
}
.mega-ft a:hover {
    background: var(--pm);
}

/* ==============================================================================
   05. SIMPLE DROPDOWN (SOLUTIONS)
   ============================================================================== */

.drop {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 198px;
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(62, 30, 100, 0.13);
    padding: 7px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s,
        transform 0.2s;
    transform: translateY(6px);
    z-index: 999;
}
.ni:hover > .drop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.drop a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--tb);
    font-size: 0.91rem;
    font-weight: 500;
    transition:
        background var(--tr),
        color var(--tr);
    margin-bottom: 1px;
}
.drop a:hover {
    background: var(--ps);
    color: var(--p);
}

/* ==============================================================================
   06. MOBILE HAMBURGER & DRAWER
   ============================================================================== */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--td);
    border-radius: 2px;
    transition: var(--tr);
}
.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.dov {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 18, 41, 0.45);
    z-index: 950;
    opacity: 0;
    transition: opacity var(--tr);
}
.dov.open {
    display: block;
    opacity: 1;
}
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 960;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--p) var(--ps);
}
.drawer::-webkit-scrollbar {
    width: 4px;
}
.drawer::-webkit-scrollbar-track {
    background: var(--ps);
}
.drawer::-webkit-scrollbar-thumb {
    background: var(--p);
    border-radius: 99px;
}
.drawer.open {
    transform: translateX(0);
}
.dhead {
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--bor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}
.dhead img {
    height: 34px;
}
.dclose {
    background: var(--ps);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--p);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dclose svg {
    width: 14px;
    height: 14px;
    fill: var(--p);
}
.dbody {
    flex: 1;
}
.mns {
    border-bottom: 1px solid var(--bor);
}
.mnrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    cursor: pointer;
    transition: background var(--tr);
}
.mnrow:hover,
.mnrow.ap {
    background: var(--ps);
}
.mnrow-l {
    display: flex;
    align-items: center;
    gap: 11px;
}
.mnrow-l svg {
    width: 17px;
    height: 17px;
    fill: var(--tl);
    flex-shrink: 0;
    transition: fill var(--tr);
}
.mnrow:hover .mnrow-l svg,
.mnrow.ap .mnrow-l svg {
    fill: var(--p);
}
.mnrow-l a,
.mnrow-l .lbl {
    color: var(--tb);
    font-size: 0.92rem;
    font-weight: 500;
}
.mnrow:hover .mnrow-l a,
.mnrow:hover .mnrow-l .lbl,
.mnrow.ap .mnrow-l .lbl {
    color: var(--p);
    font-weight: 600;
}
.mtog {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid var(--bor);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform var(--tr),
        background var(--tr),
        border-color var(--tr);
}
.mtog svg {
    width: 10px;
    height: 10px;
    fill: var(--tl);
    transition: fill var(--tr);
}
.mni.open .mtog {
    transform: rotate(180deg);
    background: var(--ps);
    border-color: var(--p);
}
.mni.open .mtog svg {
    fill: var(--p);
}
.msub {
    display: none;
    background: var(--bg);
    border-top: 1px solid var(--bor);
    padding: 6px 10px 10px 30px;
}
.mni.open .msub {
    display: block;
}
.msub-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--tl);
    padding: 9px 8px 5px;
}
.msub a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--tb);
    font-size: 0.88rem;
    font-weight: 500;
    transition:
        background var(--tr),
        color var(--tr);
    margin-bottom: 1px;
}
.msub a svg {
    width: 15px;
    height: 15px;
    fill: var(--tl);
    flex-shrink: 0;
    transition: fill var(--tr);
}
.msub a:hover {
    background: var(--ps);
    color: var(--p);
}
.msub a:hover svg {
    fill: var(--p);
}
.dinfo {
    padding: 17px 18px 22px;
    background: var(--bg);
    border-top: 1px solid var(--bor);
}
.dinfo p {
    font-size: 0.83rem;
    color: var(--tl);
    margin-bottom: 11px;
    line-height: 1.55;
}
.dirow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--tb);
    margin-bottom: 8px;
}
.dirow svg {
    width: 15px;
    height: 15px;
    fill: var(--p);
    flex-shrink: 0;
}
.dirow a {
    color: var(--p);
}
.dctas {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 14px;
}
.dctas a,
.dctas button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.91rem;
    font-family: var(--font);
    cursor: pointer;
}
.dp {
    background: var(--p);
    color: #fff !important;
    border: none;
}
.ds {
    border: 1.5px solid var(--p);
    color: var(--p) !important;
    background: transparent;
}
/* ==============================================================================
   07. HERO SLIDER
   ============================================================================== */
.hero {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.slides-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.slides-track {
    display: flex;
    width: 100%;
    transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}
.slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.slide-bg .glow {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(40px);
}
.slide-bg .glow2 {
    position: absolute;
    bottom: -180px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(44px);
}
.slide-bg .dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(30, 18, 41, 0.08) 1.3px,
        transparent 1.3px
    );
    background-size: 30px 30px;
    mask-image: radial-gradient(
        ellipse 78% 60% at 50% 26%,
        #000 10%,
        transparent 78%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 78% 60% at 50% 26%,
        #000 10%,
        transparent 78%
    );
}

.slide[data-theme="purple"] .slide-bg {
    background: linear-gradient(150deg, #f8f3fc 0%, #efe3fa 48%, #e6d5f6 100%);
}
.slide[data-theme="purple"] .glow {
    background: radial-gradient(
        circle,
        rgba(62, 30, 100, 0.24) 0%,
        transparent 70%
    );
}
.slide[data-theme="purple"] .glow2 {
    background: radial-gradient(
        circle,
        rgba(245, 166, 35, 0.12) 0%,
        transparent 70%
    );
}

.slide[data-theme="navy"] .slide-bg {
    background: linear-gradient(150deg, #f2f6fb 0%, #e3ecf6 48%, #d3e1ee 100%);
}
.slide[data-theme="navy"] .glow {
    background: radial-gradient(
        circle,
        rgba(13, 34, 64, 0.2) 0%,
        transparent 70%
    );
}
.slide[data-theme="navy"] .glow2 {
    background: radial-gradient(
        circle,
        rgba(62, 30, 100, 0.1) 0%,
        transparent 70%
    );
}

.slide[data-theme="gold"] .slide-bg {
    background: linear-gradient(150deg, #fdf8ee 0%, #fbeed4 48%, #f7ddb2 100%);
}
.slide[data-theme="gold"] .glow {
    background: radial-gradient(
        circle,
        rgba(245, 166, 35, 0.28) 0%,
        transparent 70%
    );
}
.slide[data-theme="gold"] .glow2 {
    background: radial-gradient(
        circle,
        rgba(62, 30, 100, 0.1) 0%,
        transparent 70%
    );
}

.slide-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 15px 5% 52px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 500px;
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--p);
    border: 1px solid rgba(62, 30, 100, 0.22);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}
.slide-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--p);
}
.slide-text h1 {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--td);
    margin-bottom: 18px;
}
.slide-text h1 span {
    color: var(--gold);
}
.slide-text p {
    color: var(--tb);
    font-size: clamp(0.94rem, 1.3vw, 1.06rem);
    margin-bottom: 30px;
    max-width: 470px;
    line-height: 1.72;
}
.stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.stat strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--p);
    line-height: 1;
}
.stat small {
    font-size: 0.77rem;
    color: var(--tl);
    font-weight: 500;
    margin-top: 2px;
    display: block;
}
.slide-acts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--p);
    color: #fff;
    padding: 13px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.94rem;
    transition:
        background var(--tr),
        transform var(--tr),
        box-shadow var(--tr);
}
.btn-hp:hover {
    background: var(--pd);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 30, 100, 0.28);
}
.btn-ho {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--td);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.94rem;
    border: 1.5px solid rgba(62, 30, 100, 0.2);
    backdrop-filter: blur(6px);
    transition:
        border-color var(--tr),
        color var(--tr),
        background var(--tr);
}
.btn-ho:hover {
    border-color: var(--p);
    color: var(--p);
    background: var(--white);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    opacity: 0;
}
.hero-particle.dot-p {
    background: var(--p);
    box-shadow: 0 0 6px rgba(62, 30, 100, 0.5);
}
.hero-particle.dot-g {
    background: var(--gold);
    box-shadow: 0 0 6px rgba(245, 166, 35, 0.55);
}
.hero-word {
    position: absolute;
    bottom: -20px;
    font-family: var(--fonth);
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}
.hero-word.wp {
    color: var(--p);
}
.hero-word.wg {
    color: var(--gold);
}
/* ==============================================================================
   08. HERO VISUAL CARD (WHAT WE BUILD / LIVE TEAM COVERAGE / HIRE DEVELOPERS)
   ============================================================================== */

.slide-vis {
    display: flex;
    justify-content: center;
    align-items: center;
}
.vc {
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 20px;
    padding: 26px;
    width: 100%;
    max-width: 440px;
    box-shadow:
        0 4px 40px rgba(62, 30, 100, 0.1),
        0 1px 4px rgba(62, 30, 100, 0.06);
}
.vc-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tl);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vc-lbl::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p);
}
.sgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.si {
    background: var(--bg);
    border: 1px solid var(--bor);
    border-radius: 12px;
    padding: 15px;
    transition:
        border-color var(--tr),
        box-shadow var(--tr);
}
.si:hover {
    border-color: var(--p);
    box-shadow: var(--sh);
}
.si-ico {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.si-ico.si-ico-blue {
    background: #e3ebf3;
}
.si-ico.si-ico-blue svg {
    fill: var(--navy);
}
.si-ico.si-ico-green {
    background: #f0fdf4;
}
.si-ico.si-ico-green svg {
    fill: #22c55e;
}
.si-ico.si-ico-gold {
    background: #fdf1de;
}
.si-ico.si-ico-gold svg {
    fill: #a56a0e;
}
.si-ico.si-ico-purple {
    background: var(--ps);
}
.si-ico.si-ico-purple svg {
    fill: var(--p);
}
.si-ico svg {
    width: 20px;
    height: 20px;
    fill: var(--p);
}
.si h4 {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 2px;
}
.si p {
    font-size: 0.71rem;
    color: var(--tl);
    line-height: 1.4;
}
.vc-ft {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--bor);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vc-ft span {
    font-size: 0.76rem;
    color: var(--tl);
}
.vc-tag {
    background: var(--ps);
    color: var(--p);
    font-size: 0.69rem;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 99px;
}
.tzrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: var(--bg);
    border: 1px solid var(--bor);
}
.tzrow.tzhl {
    background: var(--ps);
    border-color: var(--gold);
}
.tzl {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tzflag {
    position: relative;
    width: 26px;
    height: 19px;
    border-radius: 3px;
    overflow: visible;
    flex-shrink: 0;
}
.tzflag > span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
}
.tzflag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tzflag::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid var(--white);
    animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}
.tzname {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--td);
}
.tzloc {
    font-size: 0.71rem;
    color: var(--tl);
}
.tztime {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--p);
    font-variant-numeric: tabular-nums;
}
.tzbadges {
    display: flex;
    gap: 7px;
    margin-top: 13px;
    flex-wrap: wrap;
}
.tzbadges > * {
    margin-bottom: 0 !important;
}

/* -- Slide 3 visual: "Hire Dedicated Developers" availability list --
   Mirrors the .tzrow pattern from the Global Team slide so all three
   hero panels share one consistent visual language. */
.devrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: var(--bg);
    border: 1px solid var(--bor);
    transition:
        border-color var(--tr),
        background var(--tr);
}
.devrow.devhl {
    background: var(--ps);
    border-color: var(--gold);
}
.devrow:hover {
    border-color: var(--p);
}
.devl {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.devavatar {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: var(--fonth);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.devname {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--td);
}
.devmeta {
    font-size: 0.71rem;
    color: var(--tl);
}
.devstatus {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 700;
    color: #22c55e;
    flex-shrink: 0;
    white-space: nowrap;
}
.devdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: livePulse 1.8s ease-in-out infinite;
}

/* ==============================================================================
   09. SLIDE TAB BAR
   ============================================================================== */

.sbar {
    background: var(--pd);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 5%;
    z-index: 1;
    position: relative;
}
.sbar-in {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    gap: 16px;
}
.stab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    cursor: pointer;
    transition:
        color var(--tr),
        background var(--tr),
        border-color var(--tr),
        box-shadow var(--tr);
    white-space: nowrap;
    font-family: var(--fonth);
}
.stab::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: background var(--tr);
}
.stab.active {
    color: #fff;
    background: var(--p);
    border-color: var(--p);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.stab.active::before {
    background: var(--gold);
}
.stab:not(.active):hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
}
.sarrows {
    display: flex;
    gap: 7px;
}
.sarr {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--bor);
    color: var(--tb);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color var(--tr),
        color var(--tr),
        background var(--tr);
    font-family: var(--font);
}
.sarr:hover {
    border-color: var(--p);
    color: var(--p);
    background: var(--ps);
}

/* ==============================================================================
   10. TRUST BAR MARQUEE
   ============================================================================== */

.tbar {
    background: var(--p);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.tbar::before,
.tbar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.tbar::before {
    left: 0;
    background: linear-gradient(90deg, var(--p) 0%, transparent 100%);
}
.tbar::after {
    right: 0;
    background: linear-gradient(270deg, var(--p) 0%, transparent 100%);
}
.tbar-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: tbarScroll 26s linear infinite;
}
.tbar:hover .tbar-track {
    animation-play-state: paused;
}
@keyframes tbarScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.titem {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    white-space: nowrap;
}
.titem strong {
    color: #fff;
    font-weight: 700;
}
.titem svg {
    width: 17px;
    height: 17px;
    fill: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}
.tsep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* ==============================================================================
   11. SERVICES SECTION (OUR EXPERTISE)
   ============================================================================== */

.sw {
    padding: 90px 5%;
    background: var(--white);
}
.sw-in {
    max-width: 1320px;
    margin: 0 auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ps);
    color: var(--p);
    border: 1px solid var(--bor);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p);
}
.sw-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.sw-hd-l {
    flex: 1 1 420px;
    min-width: 0;
}
.sw-hd-r {
    flex: 0 0 340px;
}
.sw-hd-l h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--td);
    text-align: left;
}
.sw-hd-l h2 span {
    color: var(--gold);
}
.sw-hd-r p {
    font-size: 0.95rem;
    color: var(--tb);
    max-width: 340px;
    line-height: 1.72;
}
.sw-mini-stats {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.sw-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 17px;
    border-radius: 30px;
    font-size: 0.79rem;
    font-weight: 600;
}
.sw-stat-pill strong {
    font-family: var(--fonth);
    font-weight: 800;
    font-size: 0.94rem;
}
.sw-stat-pill.lavender {
    background: var(--ps);
    color: var(--p);
}
.sw-stat-pill.gold {
    background: #fdf1de;
    color: #a56a0e;
}

.svc-wrap {
    position: relative;
}
.svc-slides {
    position: relative;
}
.ssld {
    display: none;
}
.ssld.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.scard {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 26px;
    transition:
        border-color var(--tr),
        box-shadow var(--tr),
        transform var(--tr);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.scard::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--p);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 0 0 16px 16px;
}
.scard:hover {
    border-color: var(--p);
    box-shadow: 0 8px 32px rgba(62, 30, 100, 0.13);
    transform: translateY(-4px);
}
.scard:hover::after {
    transform: scaleX(1);
}
.scard-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.scard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ==============================================================================
   12. PASTEL BADGE SYSTEM
   ============================================================================== */

.badge-blue {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--ps);
    color: var(--p);
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    color: #22c55e;
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.badge-purple {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e3ebf3;
    color: var(--navy);
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.badge-orange {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff7ed;
    color: #f97316;
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fdf1de;
    color: #a56a0e;
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.badge-lavender {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ede5f7;
    color: #3e1e64;
    border-radius: 99px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.badge-blue::before,
.badge-green::before,
.badge-purple::before,
.badge-orange::before,
.badge-gold::before,
.badge-lavender::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}
.badge-lg {
    padding: 8px 17px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}
.badge-lg::before {
    width: 6px !important;
    height: 6px !important;
}
.badge-lg.has-logo::before {
    display: none;
}
.badge-lg .stack-logo {
    width: 17px;
    height: 17px;
    object-fit: contain;
    flex-shrink: 0;
}
.scard h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 7px;
}
.scard p {
    font-size: 0.83rem;
    color: var(--tb);
    line-height: 1.64;
    margin-bottom: 14px;
}
.scard-lnk {
    font-size: 0.81rem;
    font-weight: 700;
    color: var(--p);
    display: flex;
    align-items: center;
    gap: 4px;
}
.scard-lnk svg {
    width: 14px;
    height: 14px;
    fill: var(--p);
}
.svc-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}
.sdots {
    display: flex;
    gap: 7px;
}
.sdot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--bor);
    border: none;
    cursor: pointer;
    transition:
        width var(--tr),
        background var(--tr);
    padding: 0;
}
.sdot.active {
    width: 24px;
    background: var(--p);
}
.sarrw {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--bor);
    color: var(--tb);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color var(--tr),
        color var(--tr),
        background var(--tr);
    font-family: var(--font);
}
.sarrw:hover {
    border-color: var(--p);
    color: var(--p);
    background: var(--ps);
}

/* ==============================================================================
   13. WHY CHOOSE US
   ============================================================================== */

.why-section {
    padding: 80px 5%;
    background: var(--ps);
}
.why-inner {
    max-width: 1320px;
    margin: 0 auto;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 24px 26px;
    border: 1px solid var(--bor);
    transition: var(--tr);
    text-align: center;
}
.why-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.why-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--p);
}
.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.88rem;
    color: var(--tb);
    line-height: 1.6;
}

/* ==============================================================================
   14. FOOTER
   ============================================================================== */

footer {
    background: radial-gradient(
        140% 130% at 18% -10%,
        #1e1048 0%,
        #0d0620 55%,
        #05020c 100%
    );
    color: rgba(255, 255, 255, 0.75);
    padding: 68px 5% 0;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.055) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}
.ft-in {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ft-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
    gap: 36px;
    padding: 52px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-logo-wrap {
    display: inline-block;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 15px;
}
.ft-logo {
    height: 60px;
    display: block;
}
.fc-brand p {
    font-size: 0.9rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.58);
    max-width: 265px;
    margin-bottom: 22px;
}
.ft-socs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-brand .ft-socs .fsoc {
    width: 37px;
    height: 37px;
    padding: 0;
    margin: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 37px;
    transition:
        background var(--tr),
        border-color var(--tr);
}

.fc-brand .ft-socs .fsoc img,
.fc-brand .ft-socs .fsoc .fsoc-img {
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
    padding: 0;
    margin: 0;
    display: block;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity var(--tr);
}

.fc-brand .ft-socs .fsoc:hover {
    background: var(--p);
    border-color: var(--p);
    padding-left: 0;
}

.fc-brand .ft-socs .fsoc:hover img,
.fc-brand .ft-socs .fsoc:hover .fsoc-img {
    opacity: 1;
}
.fsoc {
    width: 37px;
    height: 37px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--tr),
        border-color var(--tr);
}
.fsoc-img {
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0.85;
    transition: opacity var(--tr);
}
.fsoc:hover .fsoc-img {
    opacity: 1;
}
.fsoc:hover {
    background: var(--p);
    border-color: var(--p);
}
.fc h5 {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 17px;
}
.fc ul {
    list-style: none;
}
.fc li {
    margin-bottom: 9px;
}
.fc a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.91rem;
    transition:
        color var(--tr),
        padding-left var(--tr);
    display: inline-block;
}
.fc a:hover {
    color: #fff;
    padding-left: 4px;
}
.fc-con li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.91rem;
    margin-bottom: 12px;
    line-height: 1.55;
}
.fc-con li svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}
.fc-con a {
    color: rgba(255, 255, 255, 0.75);
}
.fc-con a:hover {
    color: #fff;
    padding-left: 0;
}
.ft-pay {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-pay-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    white-space: nowrap;
}
.ft-pay-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ft-pay-chip {
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
}
.ft-pay-chip img {
    height: 15px;
    width: auto;
    display: block;
}
.ft-bot {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.ft-bot p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
}
.ft-bot-lnks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    max-width: 100%;
}
.ft-bot-lnks a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--tr);
}
.ft-bot-lnks a:hover {
    color: var(--gold);
}

@media (max-width: 1300px) {
    .ft-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1100px) {
.slide-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 15px 4% 40px;
        min-height: auto;
    }
    .slide {
        align-items: flex-start;
    }
    .slide-vis {
        margin-top: 8px;
    }
    .ft-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ssld.active {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .topbar {
        display: none;
    }
    .dnav {
        display: none;
    }
    .burger {
        display: flex;
    }
    .stabs {
        display: none;
    }
}
@media (max-width: 768px) {
    .vc {
        box-shadow: none;
    }
    .si,
    .si:hover {
        box-shadow: none;
    }
    .tzrow.tzhl {
        box-shadow: none;
    }
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ft-bot {
        flex-direction: column;
        align-items: flex-start;
    }
    .ssld.active {
        grid-template-columns: 1fr;
    }
    .sw-hd {
        flex-direction: column;
        align-items: stretch;
    }
    .sw-hd-l,
    .sw-hd-r {
        flex-basis: auto;
    }
    .sw-hd-r {
        max-width: 100%;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .slide-acts {
        flex-direction: column;
    }
    .btn-hp,
    .btn-ho {
        width: 100%;
        justify-content: center;
    }
    .stats-row {
        gap: 18px;
    }
    .vc {
        padding: 18px;
    }
    .sgrid {
        grid-template-columns: 1fr 1fr;
    }
    .sgrid .si:nth-child(n + 3) {
        display: none;
    }
    .tzrow:nth-child(n + 4) {
        display: none;
    }
    .devrow:nth-child(n + 4) {
        display: none;
    }
    .tzbadges {
        gap: 6px;
    }
}
/* ==========================================================================
   NEW SECTIONS — Tech Stack / Process / Portfolio / Testimonials /
   CTA Band / FAQ. Reuses .eyebrow, .sw-hd, .badge-*, and the
   existing button classes wherever possible.
   ========================================================================== */

/* ==============================================================================
   15. TECH STACK (MARQUEE CAROUSEL)
   ============================================================================== */
.stack-section {
    padding: 84px 5%;
    background: var(--white);
}
.stack-in {
    max-width: 1320px;
    margin: 0 auto;
}
.stack-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stack-marquee-wrap::before,
.stack-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}
.stack-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}
.stack-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}
.stack-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: stackScroll 34s linear infinite;
}
.stack-track-reverse {
    animation: stackScrollReverse 34s linear infinite;
}
.stack-marquee-wrap:hover .stack-track {
    animation-play-state: paused;
}
@keyframes stackScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes stackScrollReverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}
/* ==============================================================================
   16. OUR PROCESS
   ============================================================================== */

.process-section {
    padding: 84px 5%;
    background: var(--ps);
}
.process-in {
    max-width: 1320px;
    margin: 0 auto;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.process-step {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 28px 18px 22px;
    text-align: center;
    transition: var(--tr);
    position: relative;
}
.process-step:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.process-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--p);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--fonth);
    font-size: 0.95rem;
    margin: 0 auto 16px;
}
.process-step h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 7px;
}
.process-step p {
    font-size: 0.79rem;
    color: var(--tb);
    line-height: 1.6;
}
.process-arrow {
    position: absolute;
    top: 21px;
    right: -22px;
    width: 18px;
    height: 18px;
    z-index: 2;
    color: var(--bor);
}
.process-arrow svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ==============================================================================
   17. PORTFOLIO / CASE STUDIES (CAROUSEL + SCROLLING SCREENSHOT PREVIEW)
   ============================================================================== */

.folio-section {
    padding: 84px 5%;
    background: var(--white);
}
.folio-in {
    max-width: 1320px;
    margin: 0 auto;
}
.folio-track-wrap {
    overflow: hidden;
    margin-top: 40px;
}
.folio-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.folio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}
.folio-dots {
    display: flex;
    gap: 6px;
}
.folio-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--bor);
    border: none;
    cursor: pointer;
    transition:
        width var(--tr),
        background var(--tr);
    padding: 0;
}
.folio-dot.active {
    width: 22px;
    background: var(--p);
    border-radius: 4px;
}
.folio-arrows {
    display: flex;
    gap: 8px;
}
.folio-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--bor);
    background: var(--white);
    color: var(--tb);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    font-family: var(--font);
}
.folio-arrow:hover {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
}
.folio-card {
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--tr);
}
.folio-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.folio-thumb {
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.folio-thumb svg {
    width: 54px;
    height: 54px;
    fill: #fff;
    opacity: 0.92;
}
.folio-thumb.t1 {
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%);
}
.folio-thumb.t2 {
    background: linear-gradient(135deg, var(--navy) 0%, #163a63 100%);
}
.folio-thumb.t3 {
    background: linear-gradient(135deg, #b5790f 0%, var(--gold) 100%);
}

.folio-card-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--pd);
}
.folio-card-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.folio-card-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
}
.folio-card-dots span:nth-child(1) {
    background: #ff5f57;
}
.folio-card-dots span:nth-child(2) {
    background: #febc2e;
}
.folio-card-dots span:nth-child(3) {
    background: #28c840;
}
.folio-card-url {
    flex: 1;
    min-width: 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: "SFMono-Regular", Consolas, monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.folio-card-badge {
    flex-shrink: 0;
    font-size: 0.66rem;
    font-weight: 700;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--fonth);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.folio-card-badge.bp {
    background: var(--p);
}
.folio-card-badge.bn {
    background: var(--navy);
}
.folio-card-badge.bg {
    background: #b5790f;
}

.folio-shot-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%);
}
.folio-shot-img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0);
    transition: transform 7s cubic-bezier(0.4, 0, 0.2, 1);
}
.folio-card:hover .folio-shot-img {
    transform: translateY(calc(-100% + 200px));
}
.folio-shot-hint {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(20, 10, 32, 0.62);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 5px 11px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity var(--tr),
        transform var(--tr);
    pointer-events: none;
    z-index: 2;
    font-family: var(--fonth);
}
.folio-card:hover .folio-shot-hint {
    opacity: 1;
    transform: translateY(0);
}
.folio-body {
    padding: 22px 22px 24px;
}
.folio-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.folio-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 8px;
}
.folio-card > .folio-body > p {
    font-size: 0.84rem;
    color: var(--tb);
    line-height: 1.65;
    margin-bottom: 6px;
}
.folio-lnk {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--p);
    display: flex;
    align-items: center;
    gap: 5px;
}
.folio-lnk svg {
    width: 14px;
    height: 14px;
    fill: var(--p);
}
@media (max-width: 768px) {
    .folio-shot-hint {
        display: none;
    }
}
@media (max-width: 768px) {
    .ft-bot {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .ft-bot-lnks {
        gap: 8px 14px;
    }
    .ft-bot-lnks a {
        font-size: 0.78rem;
    }
}
/* ==============================================================================
   18. INDUSTRIES WE SERVE
   ============================================================================== */

.industries-section {
    padding: 84px 5%;
    background: var(--ps);
}
.industries-in {
    max-width: 1320px;
    margin: 0 auto;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.industry-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 20px 20px;
    transition: var(--tr);
}
.industry-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-3px);
}
.industry-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.industry-ico svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.industry-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 3px;
}
.industry-card p {
    font-size: 0.72rem;
    color: var(--tl);
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================================
   19. BLOG / TECH TALK PREVIEW
   ============================================================================== */

.blog-section {
    padding: 84px 5%;
    background: var(--white);
}
.blog-in {
    max-width: 1320px;
    margin: 0 auto;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.blog-card {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--tr);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.blog-thumb {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-thumb svg {
    width: 44px;
    height: 44px;
    fill: #fff;
    opacity: 0.92;
}
.blog-thumb.b1 {
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%);
}
.blog-thumb.b2 {
    background: linear-gradient(135deg, #b5790f 0%, var(--gold) 100%);
}
.blog-thumb.b3 {
    background: linear-gradient(135deg, var(--navy) 0%, #163a63 100%);
}
.blog-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--tl);
    margin-bottom: 10px;
}
.blog-cat {
    color: var(--p);
    font-weight: 700;
}
.blog-card h3 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--td);
    line-height: 1.4;
    margin-bottom: 8px;
}
.blog-card p {
    font-size: 0.82rem;
    color: var(--tb);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.blog-lnk {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--p);
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-lnk svg {
    width: 14px;
    height: 14px;
    fill: var(--p);
}
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================================
   20. TESTIMONIALS (CAROUSEL) & TRUST BADGES
   ============================================================================== */

.trust-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 30px 0 6px;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 0 32px;
    border-right: 1px solid var(--bor);
}
.trust-badge:first-child {
    padding-left: 0;
}
.trust-badge:last-child {
    border-right: none;
}
.trust-badge-top {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-badge-score {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--td);
    font-family: var(--fonth);
}
.trust-badge-score span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--tl);
}
.trust-badge-logo {
    height: 18px;
    display: block;
}
.clutch-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}
.trust-badge-stars {
    display: flex;
    gap: 1px;
    color: var(--gold);
}
.trust-badge-stars svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}
.trust-badge-lbl {
    font-size: 0.72rem;
    color: var(--tl);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .trust-badge {
        padding: 0 18px;
        border-right: none;
        border-bottom: 1px solid var(--bor);
        padding-bottom: 16px;
        width: 100%;
    }
    .trust-badge:last-child {
        border-bottom: none;
    }
}

.testi-section {
    padding: 84px 5%;
    background: var(--ps);
}
.testi-in {
    max-width: 1320px;
    margin: 0 auto;
}
.testi-track-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}
.testi-dots {
    display: flex;
    gap: 6px;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--bor);
    border: none;
    cursor: pointer;
    transition:
        width var(--tr),
        background var(--tr);
    padding: 0;
}
.testi-dot.active {
    width: 22px;
    background: var(--p);
    border-radius: 4px;
}
.testi-arrows {
    display: flex;
    gap: 8px;
}
.testi-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--bor);
    background: var(--white);
    color: var(--tb);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    font-family: var(--font);
}
.testi-arrow:hover {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
}
.testi-card {
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--sh);
    display: flex;
    flex-direction: column;
    transition: var(--tr);
}
.testi-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-3px);
}
.testi-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 14px;
}
.testi-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.testi-card p {
    font-size: 0.87rem;
    color: var(--tb);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}
.testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bor);
}
.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: var(--fonth);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testi-name {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--td);
}
.testi-role {
    font-size: 0.73rem;
    color: var(--tl);
}

/* ==============================================================================
   21. CTA BAND
   ============================================================================== */

.cta-band {
    padding: 84px 5%;
    background: linear-gradient(155deg, #0f3d3e 0%, #1a5c5e 100%);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.1);
    pointer-events: none;
}
.cta-band::after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.cta-band-in {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.cta-band-in .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.cta-band-in .eyebrow::before {
    background: var(--gold);
}
.cta-band h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 16px 0 14px;
}
.cta-band h2 span {
    color: var(--gold);
}
.cta-band p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.94rem;
    max-width: 480px;
    margin: 0 0 30px;
    line-height: 1.78;
}
.cta-band-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0f3d3e;
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.93rem;
    font-family: var(--fonth);
    transition: var(--tr);
}
.cta-white:hover {
    background: var(--gold);
    color: #3d2600;
    transform: translateY(-2px);
}
.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.32);
    padding: 11px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--fonth);
    transition: var(--tr);
}
.cta-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.cta-band-art {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.cta-art-panel {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cta-art-panel svg {
    width: 100%;
    height: 100%;
}
@media (max-width: 900px) {
    .cta-band-in {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .cta-band p {
        margin: 0 auto 30px;
    }
    .cta-band-btns {
        justify-content: center;
    }
    .cta-art-panel {
        max-width: 260px;
        margin: 0 auto;
    }
}

/* ==============================================================================
   22. FAQ
   ============================================================================== */

.faq-section {
    padding: 84px 5%;
    background: var(--ps);
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -110px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.6;
    pointer-events: none;
}
.faq-in {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.faq-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: start;
}
.faq-side {
    position: sticky;
    top: 100px;
}
.faq-side h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--td);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.faq-side h2 span {
    color: var(--gold);
}
.faq-side > p {
    font-size: 0.88rem;
    color: var(--tb);
    line-height: 1.75;
    margin-bottom: 24px;
}
.faq-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.faq-cat-btn {
    background: var(--white);
    border: 1.5px solid var(--bor);
    color: var(--tb);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--fonth);
    cursor: pointer;
    transition: var(--tr);
}
.faq-cat-btn.active,
.faq-cat-btn:hover {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
}
.faq-cta-box {
    background: var(--p);
    border-radius: 18px;
    padding: 26px 24px;
}
.faq-cta-box h4 {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--fonth);
}
.faq-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.faq-cta-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #3d2600;
    border: none;
    padding: 11px 20px;
    border-radius: 30px;
    font-family: var(--fonth);
    font-weight: 700;
    font-size: 0.82rem;
    transition: var(--tr);
}
.faq-cta-box a:hover {
    background: #fff;
    color: var(--p);
}
.faq-list {
    min-width: 0;
}
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--tr);
}
.faq-item.open {
    border-color: var(--p);
    box-shadow: var(--sh);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
}
.faq-q h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--td);
    margin: 0;
}
.faq-item.open .faq-q h4 {
    color: var(--p);
}
.faq-toggle {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
}
.faq-toggle svg {
    width: 11px;
    height: 11px;
    fill: var(--p);
    transition: var(--tr);
}
.faq-item.open .faq-toggle {
    background: var(--p);
    transform: rotate(45deg);
}
.faq-item.open .faq-toggle svg {
    fill: #fff;
}
.faq-a {
    display: none;
    padding: 0 22px 20px;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-a p {
    font-size: 0.85rem;
    color: var(--tb);
    line-height: 1.75;
    margin: 0;
}
.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
@media (max-width: 1100px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .faq-side {
        position: static;
    }
}

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 18px;
    }
    .process-arrow {
        display: none;
    }
}
@media (max-width: 700px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* ==============================================================================
   23. ABOUT US (HOME PAGE PREVIEW SECTION)
   ============================================================================== */

.about-section {
    padding: 84px 5%;
    background: var(--ps);
}
.about-in {
    max-width: 1320px;
    margin: 0 auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-dots {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 78px;
    height: 78px;
    background-image: radial-gradient(var(--p) 1.6px, transparent 1.6px);
    background-size: 11px 11px;
    opacity: 0.35;
    z-index: 0;
}
.about-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #fff 0%, var(--ps) 100%);
    border: 1.5px solid var(--white);
    border-radius: 24px;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shl);
}

.about-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.about-badge {
    position: absolute;
    z-index: 2;
    bottom: -20px;
    right: -18px;
    background: var(--p);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 12px 30px rgba(62, 30, 100, 0.32);
    text-align: center;
}
.about-badge strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    font-family: var(--fonth);
    line-height: 1;
    color: var(--gold);
}
.about-badge span {
    font-size: 0.66rem;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
}
.about-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--td);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-align: left;
}
.about-text h2 span {
    color: var(--gold);
}
.about-text p {
    font-size: 0.93rem;
    color: var(--tb);
    line-height: 1.82;
    margin-bottom: 16px;
}
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 28px;
}
.about-pillar {
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 12px;
    padding: 13px 15px;
    transition: var(--tr);
}
.about-pillar:hover {
    border-color: var(--p);
    background: var(--ps);
}
.about-pillar-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    flex-shrink: 0;
}
.about-pillar-ico svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.about-pillar span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--td);
}
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        max-width: 420px;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
}
/* ==============================================================================
   24. CODE CRAFTSMANSHIP (VS CODE EDITOR MOCKUP)
   ============================================================================== */

.deploy-section {
    padding: 84px 5%;
    background: linear-gradient(155deg, #0f3d3e 0%, #1a5c5e 100%);
    position: relative;
    overflow: hidden;
}
.deploy-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.1);
    pointer-events: none;
}
.deploy-in {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.deploy-in .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.deploy-in .eyebrow::before {
    background: var(--gold);
}
.deploy-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
    margin-top: 26px;
}
.deploy-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.deploy-text h2 span {
    color: var(--gold);
}
.deploy-text > p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 460px;
}
.deploy-stats {
    display: flex;
    gap: 14px;
    max-width: 460px;
}
.deploy-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 18px 16px;
}
.deploy-stat-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.deploy-stat-ico svg {
    width: 17px;
    height: 17px;
    fill: var(--gold);
}
.deploy-stat-lbl {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin-bottom: 5px;
}
.deploy-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--fonth);
    line-height: 1;
    margin-bottom: 9px;
}
.deploy-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.66rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}
.term {
    background: #1e1e1e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.term-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #323233;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.term-dots {
    display: flex;
    gap: 7px;
}
.term-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}
.term-dots span:nth-child(1) {
    background: #ff5f57;
}
.term-dots span:nth-child(2) {
    background: #febc2e;
}
.term-dots span:nth-child(3) {
    background: #28c840;
}
.term-title {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: "SFMono-Regular", Consolas, monospace;
}
.term-title b {
    color: var(--gold);
    font-weight: 600;
}
.term-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.66rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
.term-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: livePulse 1.8s ease-in-out infinite;
}
.vsc-tabs {
    display: flex;
    background: #252526;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.vsc-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: "SFMono-Regular", Consolas, monospace;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}
.vsc-tab svg {
    width: 12px;
    height: 12px;
    fill: #38bdf8;
    flex-shrink: 0;
}
.vsc-tab.active {
    background: #1e1e1e;
    color: rgba(255, 255, 255, 0.85);
    border-top: 2px solid var(--gold);
}
.vsc-editor {
    display: flex;
    padding: 18px 0 18px 0;
    overflow-x: auto;
}
.vsc-lines {
    flex-shrink: 0;
    padding: 0 14px 0 18px;
    text-align: right;
    color: rgba(255, 255, 255, 0.25);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.8rem;
    line-height: 1.85;
    user-select: none;
}
.vsc-code {
    font-family:
        "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.8rem;
    line-height: 1.85;
    color: #d4d4d4;
    white-space: pre;
    padding-right: 20px;
}
.vsc-cursor {
    display: inline-block;
    width: 2px;
    background: var(--gold);
    margin-left: 1px;
    animation: vscCursorBlink 0.9s steps(1) infinite;
}
@keyframes vscCursorBlink {
    0%,
    50% {
        opacity: 1;
    }
    50.01%,
    100% {
        opacity: 0;
    }
}
.v-com {
    color: #6a9955;
}
.v-kw {
    color: #c586c0;
}
.v-str {
    color: var(--gold);
}
.v-fn {
    color: #dcdcaa;
}
.v-tag {
    color: #569cd6;
}
.v-prop {
    color: #9cdcfe;
}
.vsc-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--p);
    padding: 6px 16px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.85);
}
.vsc-status-l,
.vsc-status-r {
    display: flex;
    align-items: center;
    gap: 14px;
}
.vsc-status-l span,
.vsc-status-r span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.vsc-status svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
.vsc-status .ok {
    color: #4ade80;
}
@media (max-width: 1100px) {
    .deploy-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .deploy-stats,
    .deploy-text > p {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .deploy-stats {
        flex-direction: column;
    }
    .vsc-code,
    .vsc-lines {
        font-size: 0.68rem;
    }
    .vsc-status-r span:nth-child(2),
    .vsc-status-r span:nth-child(3) {
        display: none;
    }
}
/* ==============================================================================
   25. 24/7 EXPERT SUPPORT
   ============================================================================== */

.support-section {
    padding: 84px 5%;
    background: var(--white);
}
.support-in {
    max-width: 1320px;
    margin: 0 auto;
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 26px;
}
.support-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--td);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.support-text h2 span {
    color: var(--gold);
}
.support-text > p {
    font-size: 0.92rem;
    color: var(--tb);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 460px;
}
.support-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 460px;
}
.support-channel {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg);
    border: 1px solid var(--bor);
    border-radius: 14px;
    padding: 16px 18px;
    transition: var(--tr);
}
.support-channel:hover {
    border-color: var(--p);
    background: var(--ps);
}
.support-channel-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--ps);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.support-channel-ico svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}
.support-channel-txt {
    flex: 1;
    min-width: 0;
}
.support-channel-txt h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 2px;
}
.support-channel-txt p {
    font-size: 0.76rem;
    color: var(--tl);
}
.support-channel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: livePulse 1.8s ease-in-out infinite;
}
.chat-mock {
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shl);
}
.chat-mock-head {
    background: var(--p);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-mock-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--fonth);
    flex-shrink: 0;
}
.chat-mock-head h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.chat-mock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}
.chat-mock-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
}
.chat-mock-body {
    padding: 22px 20px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.chat-tag {
    display: flex;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: -6px;
}
.chat-tag .name {
    color: var(--td);
}
.chat-tag .role {
    color: var(--p);
    background: var(--ps);
    padding: 1px 8px;
    border-radius: 10px;
}
.chat-bubble {
    max-width: 84%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.83rem;
    line-height: 1.55;
}
.chat-bubble.agent {
    background: var(--white);
    border: 1px solid var(--bor);
    color: var(--tb);
    align-self: flex-start;
    border-top-left-radius: 4px;
}
.chat-bubble.user {
    background: var(--p);
    color: #fff;
    align-self: flex-end;
    border-top-right-radius: 4px;
}
.chat-bubble.ok {
    background: #eafaf1;
    border: 1px solid #22c55e;
    color: #1a7a49;
    align-self: flex-start;
    border-top-left-radius: 4px;
}
.chat-mock-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-top: 1px solid var(--bor);
    padding: 14px 18px;
}
.chat-mock-input span {
    flex: 1;
    font-size: 0.82rem;
    color: var(--tl);
}
.chat-mock-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chat-mock-send svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}
@media (max-width: 1100px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .support-channels,
    .support-text > p {
        max-width: 100%;
    }
}

/* ==============================================================================
   26. PAGE HERO (shared banner — about-us.html, contact-us.html)
   ============================================================================== */
.page-hero {
    padding: 56px 5% 70px;
    background: linear-gradient(155deg, var(--pd) 0%, var(--p) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 8%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.12);
    pointer-events: none;
}
.page-hero-in {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--tr);
}
.breadcrumb a:hover {
    color: #fff;
}
.breadcrumb span.cur {
    color: var(--gold);
    font-weight: 600;
}
.page-hero .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.page-hero .eyebrow::before {
    background: var(--gold);
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 16px 0 14px;
    max-width: 720px;
}
.page-hero h1 span {
    color: var(--gold);
}
.page-hero p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    line-height: 1.8;
}
@media (max-width: 700px) {
    .page-hero {
        padding: 44px 5% 52px;
    }
}

/* ==============================================================================
   27. ABOUT US PAGE — MISSION, VALUES & TIMELINE
   ============================================================================== */
.mv-section {
    padding: 84px 5%;
    background: var(--white);
}
.mv-in {
    max-width: 1320px;
    margin: 0 auto;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.mv-card {
    border-radius: 20px;
    padding: 38px 34px;
    position: relative;
    overflow: hidden;
}
.mv-card.mission {
    background: linear-gradient(155deg, var(--pd) 0%, var(--p) 100%);
}
.mv-card.vision {
    background: var(--white);
    border: 1.5px solid var(--bor);
}
.mv-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
}
.mv-card.mission::before {
    background: rgba(255, 255, 255, 0.06);
}
.mv-card.vision::before {
    background: var(--ps);
    opacity: 0.6;
}
.mv-ico {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}
.mv-ico svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.mv-card.mission .mv-ico {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold);
}
.mv-card.vision .mv-ico {
    background: var(--ps);
    color: var(--p);
}
.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
}
.mv-card.mission h3 {
    color: #fff;
}
.mv-card.vision h3 {
    color: var(--td);
}
.mv-card p {
    font-size: 0.92rem;
    line-height: 1.85;
    margin: 0;
    position: relative;
    z-index: 2;
}
.mv-card.mission p {
    color: rgba(255, 255, 255, 0.78);
}
.mv-card.vision p {
    color: var(--tb);
}
.timeline-section {
    padding: 84px 5%;
    background: var(--ps);
    position: relative;
    overflow: hidden;
}
.timeline-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.5;
    pointer-events: none;
}
.timeline-in {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 52px auto 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    margin-left: -1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--p) 8%,
        var(--p) 92%,
        transparent 100%
    );
    opacity: 0.35;
}
.tl-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 28px);
    margin-bottom: 34px;
}
.tl-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 28px);
}
.tl-item:last-child {
    margin-bottom: 0;
}
.tl-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--ps);
    box-shadow: 0 0 0 2px var(--p);
    z-index: 2;
}
.tl-card {
    max-width: 380px;
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 22px 24px;
    transition: var(--tr);
}
.tl-item:hover .tl-card {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-3px);
}
.tl-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tl-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--ps);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tl-ico svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.tl-year-badge {
    display: inline-flex;
    align-items: center;
    background: var(--p);
    color: #fff;
    font-family: var(--fonth);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 13px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}
.tl-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 6px;
}
.tl-card p {
    font-size: 0.84rem;
    color: var(--tb);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 1100px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .timeline {
        margin-top: 40px;
    }
    .timeline::before {
        left: 20px;
        margin-left: 0;
    }
    .tl-item,
    .tl-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 52px;
        padding-right: 0;
    }
    .tl-dot {
        left: 20px;
    }
    .tl-card {
        max-width: 100%;
    }
}

/* ==============================================================================
   28. ABOUT US PAGE — TEAM
   ============================================================================== */
.team-section {
    padding: 84px 5%;
    background: var(--white);
}
.team-in {
    max-width: 1320px;
    margin: 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.team-card {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    transition: var(--tr);
}
.team-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.team-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--ps) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo svg {
    width: 46%;
    height: 46%;
    color: var(--p);
}
.team-body {
    padding: 18px 16px 22px;
}
.team-body h4 {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 3px;
}
.team-role {
    font-size: 0.76rem;
    color: var(--p);
    font-weight: 600;
    margin-bottom: 14px;
}
.team-socs {
    display: flex;
    justify-content: center;
    gap: 7px;
}
.team-soc {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-soc img {
    width: 13px;
    height: 13px;
}
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==============================================================================
   29. CONTACT US PAGE — CONTACT FORM & INFO CARDS
   ============================================================================== */
.contact-section {
    padding: 84px 5%;
    background: var(--white);
}
.contact-in {
    max-width: 1320px;
    margin: 0 auto;
}
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
.quick-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 22px;
    transition: var(--tr);
}
.quick-contact-card:hover {
    border-color: var(--p);
    background: var(--ps);
}
.quick-contact-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--p);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quick-contact-ico svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}
.quick-contact-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 3px;
}
.quick-contact-card p {
    font-size: 0.8rem;
    color: var(--tb);
}
.quick-contact-card a {
    font-size: 0.8rem;
    color: var(--p);
    font-weight: 600;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-card {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 22px;
    padding: 38px;
    box-shadow: var(--sh);
}
.contact-form-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--td);
    margin-bottom: 6px;
}
.contact-form-card > p {
    font-size: 0.86rem;
    color: var(--tb);
    margin-bottom: 26px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group.full {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: 0.81rem;
    font-weight: 600;
    color: var(--td);
}
.form-group label span {
    color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--bor);
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 0.87rem;
    font-family: var(--font);
    color: var(--td);
    background: var(--bg);
    transition:
        border-color var(--tr),
        background var(--tr);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--tl);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--p);
    background: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font);
}
.form-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--p);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: var(--fonth);
    cursor: pointer;
    transition: background var(--tr);
    margin-top: 6px;
}
.form-submit:hover {
    background: var(--pd);
}
.form-submit svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    background: var(--bg);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 22px;
}
.contact-info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info-card h4 svg {
    width: 16px;
    height: 16px;
    fill: var(--p);
}
.contact-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--tb);
    padding: 7px 0;
    border-bottom: 1px dashed var(--bor);
}
.contact-info-row:last-child {
    border-bottom: none;
}
.contact-info-row span:last-child {
    color: var(--td);
    font-weight: 600;
}
.contact-side-socs {
    display: flex;
    gap: 8px;
}
.contact-side-soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.contact-side-soc:hover {
    background: var(--p);
}
.contact-side-soc img {
    width: 15px;
    height: 15px;
}
@media (max-width: 1100px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 26px 20px;
    }
}

/* ==============================================================================
   30. CONTACT US PAGE — MAP & OFFICE LOCATIONS
   ============================================================================== */
.offices-section {
    padding: 84px 5%;
    background: var(--ps);
}
.offices-in {
    max-width: 1320px;
    margin: 0 auto;
}
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.office-card {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 24px;
    transition: var(--tr);
}
.office-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-3px);
}
.office-flag {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--ps);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.office-flag svg {
    width: 20px;
    height: 20px;
    fill: var(--p);
}
.office-card h4 {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 8px;
}
.office-card p {
    font-size: 0.82rem;
    color: var(--tb);
    line-height: 1.7;
    margin-bottom: 4px;
}
.office-card .office-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    background: #eafaf1;
    color: #1a7a49;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.map-embed {
    margin-top: 40px;
    border-radius: 22px;
    overflow: hidden;
    border: 1.5px solid var(--bor);
    height: 380px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
@media (max-width: 1100px) {
    .offices-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
    .map-embed {
        height: 280px;
    }
}

/* ==============================================================================
   31. SERVICES OVERVIEW PAGE
   ============================================================================== */
.stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.service-ov-card {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 18px;
    padding: 28px 26px;
    transition: var(--tr);
    display: flex;
    flex-direction: column;
}
.service-ov-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.service-ov-ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--p);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-ov-ico svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.service-ov-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 8px;
}
.service-ov-card p {
    font-size: 0.85rem;
    color: var(--tb);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}
.service-ov-lnk {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--p);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.service-ov-lnk svg {
    width: 14px;
    height: 14px;
    fill: var(--p);
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================================
   32. SERVICE DETAIL PAGE — FEATURE CHECKLIST
   ============================================================================== */
.feature-section {
    padding: 84px 5%;
    background: var(--ps);
}
.feature-in {
    max-width: 1320px;
    margin: 0 auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 14px;
    padding: 18px 20px;
    transition: var(--tr);
}
.feature-item:hover {
    border-color: var(--p);
    box-shadow: var(--sh);
}
.feature-item-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eafaf1;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-item-ico svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.feature-item h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 3px;
}
.feature-item p {
    font-size: 0.79rem;
    color: var(--tb);
    line-height: 1.55;
}
.related-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.related-svc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 14px;
    padding: 18px 20px;
    transition: var(--tr);
}
.related-svc-card:hover {
    border-color: var(--p);
    background: var(--ps);
}
.related-svc-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--ps);
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.related-svc-ico svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.related-svc-card span {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--td);
}
@media (max-width: 700px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .related-svc-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================================
   33. COMPANY OVERVIEW PAGE — SNAPSHOT STATS
   ============================================================================== */
.snapshot-section {
    padding: 84px 5%;
    background: var(--white);
}
.snapshot-in {
    max-width: 1320px;
    margin: 0 auto;
}
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.snapshot-card {
    background: var(--bg);
    border: 1.5px solid var(--bor);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: var(--tr);
}
.snapshot-card:hover {
    border-color: var(--p);
    background: var(--ps);
    transform: translateY(-3px);
}
.snapshot-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--p);
    font-family: var(--fonth);
    line-height: 1;
    margin-bottom: 8px;
}
.snapshot-lbl {
    font-size: 0.72rem;
    color: var(--tb);
    font-weight: 600;
    line-height: 1.4;
}
@media (max-width: 1100px) {
    .snapshot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 560px) {
    .snapshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================================================================
   34. COMPANY OVERVIEW PAGE — CERTIFICATIONS & AWARDS
   ============================================================================== */
.badge-section {
    padding: 84px 5%;
    background: var(--white);
}
.badge-section.pastel-gold {
    background: var(--bg);
}
.badge-in {
    max-width: 1320px;
    margin: 0 auto;
}
.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 14px;
    padding: 18px 20px;
    transition: var(--tr);
}
.badge-card:hover {
    border-color: var(--p);
    transform: translateY(-3px);
    box-shadow: var(--sh);
}
.badge-card-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.badge-card-ico svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.pastel-green .badge-card-ico {
    background: #eafaf1;
    color: #22c55e;
}
.pastel-gold .badge-card-ico {
    background: #fdf1de;
    color: #a56a0e;
}
.badge-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 2px;
}
.badge-card p {
    font-size: 0.72rem;
    color: var(--tl);
}
@media (max-width: 1100px) {
    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .badge-grid {
        grid-template-columns: 1fr;
    }
}
/* ==============================================================================
   35. OUR TEAM PAGE — FEATURED LEADER, FILTERS & TEAM CARDS
   ============================================================================== */
.team-lead {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--bor);
    border-radius: 24px;
    padding: 32px;
    margin-top: 40px;
}
.team-lead-photo {
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ps) 0%, var(--white) 100%);
}
.team-lead-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ps);
    color: var(--p);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.team-lead-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--td);
    margin-bottom: 4px;
}
.team-lead-body .team-role {
    display: block;
    margin-bottom: 14px;
}
.team-lead-body p {
    font-size: 0.9rem;
    color: var(--tb);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 18px;
}

.team-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}
.team-filter-btn {
    background: var(--white);
    border: 1.5px solid var(--bor);
    color: var(--tb);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--fonth);
    cursor: pointer;
    transition: var(--tr);
}
.team-filter-btn.active,
.team-filter-btn:hover {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
}

.team-photo {
    position: relative;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(20, 10, 32, 0.55);
    color: #fff;
    font-size: 0.63rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}
.team-soc {
    background: var(--p);
}
.team-soc:hover {
    background: var(--pd);
}

@media (max-width: 760px) {
    .team-lead {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px;
    }
    .team-lead-photo {
        max-width: 220px;
        margin: 0 auto;
    }
    .team-lead-body p {
        margin-left: auto;
        margin-right: auto;
    }
    .team-filter {
        justify-content: center;
    }
}

/* ==============================================================================
   36. WHAT MAKES US DIFFERENT PAGE — COMPARISON TABLE
   ============================================================================== */
.compare-section {
    padding: 84px 5%;
    background: var(--ps);
}
.compare-in {
    max-width: 1320px;
    margin: 0 auto;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.compare-col {
    border-radius: 20px;
    padding: 32px;
}
.compare-col.them {
    background: var(--white);
    border: 1.5px solid var(--bor);
}
.compare-col.us {
    background: linear-gradient(155deg, var(--pd) 0%, var(--p) 100%);
    box-shadow: var(--shl);
}
.compare-col-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.compare-col-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.compare-col-ico svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}
.compare-col.them .compare-col-ico {
    background: #fee2e2;
    color: #ef4444;
}
.compare-col.us .compare-col-ico {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold);
}
.compare-col-hd h3 {
    font-size: 1.05rem;
    font-weight: 800;
}
.compare-col.them .compare-col-hd h3 {
    color: var(--td);
}
.compare-col.us .compare-col-hd h3 {
    color: #fff;
}
.compare-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--bor);
}
.compare-col.us .compare-row {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.compare-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.compare-row:first-of-type {
    padding-top: 0;
}
.compare-row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.compare-col.them .compare-row svg {
    fill: #ef4444;
}
.compare-col.us .compare-row svg {
    fill: #4ade80;
}
.compare-row p {
    font-size: 0.87rem;
    line-height: 1.6;
}
.compare-col.them .compare-row p {
    color: var(--tb);
}
.compare-col.us .compare-row p {
    color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 900px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================================
   37. CLIENT ONBOARDING / REFERRAL — SHARED PROCESS GRID VARIANT
   ============================================================================== */
.process-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================================================================
   38. REFERRAL PROGRAM PAGE — REWARD TIERS
   ============================================================================== */
.reward-section {
    padding: 84px 5%;
    background: var(--white);
}
.reward-in {
    max-width: 1320px;
    margin: 0 auto;
}
.reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.reward-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 20px;
    padding: 34px 28px 30px;
    text-align: center;
    transition: var(--tr);
}
.reward-card:hover {
    border-color: var(--p);
    box-shadow: var(--shl);
    transform: translateY(-4px);
}
.reward-card.featured {
    border-color: var(--gold);
    box-shadow: 0 16px 36px rgba(245, 166, 35, 0.16);
}
.reward-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #3d2600;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: var(--fonth);
}
.reward-tier {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tl);
    margin-bottom: 12px;
}
.reward-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--p);
    font-family: var(--fonth);
    line-height: 1;
    margin-bottom: 8px;
}
.reward-amount span {
    font-size: 0.88rem;
    color: var(--tl);
    font-weight: 500;
}
.reward-desc {
    font-size: 0.85rem;
    color: var(--tb);
    line-height: 1.65;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bor);
}
.reward-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.reward-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.83rem;
    color: var(--tb);
    list-style: none;
}
.reward-list svg {
    width: 15px;
    height: 15px;
    fill: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .reward-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg .orb1,
    .hero-bg .orb2,
    .hero-bg .orb3,
    .hero-grid,
    .hp {
        animation: none !important;
    }
}
/* ==============================================================================
   39. CHATBOT WIDGET (FLOATING)
   ============================================================================== */

.cw-launcher {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 1200;
}

.cw-fab {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--p) 0%, var(--pd) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(62, 30, 100, 0.35),
        0 2px 8px rgba(62, 30, 100, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cw-fab:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 16px 38px rgba(62, 30, 100, 0.4),
        0 4px 10px rgba(62, 30, 100, 0.25);
}

.cw-fab::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(62, 30, 100, 0.25);
    animation: cwPulseRing 2.4s ease-out infinite;
}

@keyframes cwPulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    80%,
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.cw-fab-icon {
    width: 26px;
    height: 26px;
    fill: #fff;
    position: absolute;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.cw-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
}

.cw-launcher.open .cw-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
}

.cw-launcher.open .cw-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.cw-fab-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--gold);
    color: #3d2600;
    font-family: var(--fonth);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.cw-launcher.open .cw-fab-badge {
    display: none;
}

.cw-panel {
    position: fixed;
    bottom: 104px;
    right: 26px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 150px);
    background: var(--white);
    border-radius: 20px;
    box-shadow:
        0 24px 60px rgba(30, 10, 50, 0.25),
        0 4px 16px rgba(30, 10, 50, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1199;
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.22s ease;
    border: 1px solid var(--bor);
}

.cw-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.cw-head {
    background: linear-gradient(150deg, var(--pd) 0%, var(--p) 100%);
    padding: 18px 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}

.cw-head-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.cw-head-avatar svg {
    width: 21px;
    height: 21px;
    fill: var(--gold);
}

.cw-head-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid var(--p);
}

.cw-head-txt {
    flex: 1;
    min-width: 0;
}

.cw-head-txt h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cw-head-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.71rem;
    color: rgba(255, 255, 255, 0.72);
}

.cw-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

.cw-head-close {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.cw-head-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cw-head-close svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}

.cw-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--pm) transparent;
}

.cw-body::-webkit-scrollbar {
    width: 4px;
}

.cw-body::-webkit-scrollbar-thumb {
    background: var(--pm);
    border-radius: 99px;
}

.cw-day-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0 4px;
}

.cw-day-sep span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--tl);
    background: var(--white);
    border: 1px solid var(--bor);
    padding: 3px 12px;
    border-radius: 20px;
}

.cw-msg-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.cw-msg-row.user {
    justify-content: flex-end;
}

.cw-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cw-msg-avatar svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.cw-msg-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 78%;
}

.cw-msg-row.user .cw-msg-stack {
    align-items: flex-end;
}

.cw-bubble {
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cw-bubble.bot {
    background: var(--white);
    border: 1px solid var(--bor);
    color: var(--tb);
    border-bottom-left-radius: 4px;
}

.cw-bubble.user {
    background: var(--p);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.cw-msg-time {
    font-size: 0.64rem;
    color: var(--tl);
    padding: 0 4px;
}

.cw-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 36px;
    margin-top: -4px;
}

.cw-chip {
    background: var(--white);
    border: 1.5px solid var(--p);
    color: var(--p);
    font-size: 0.76rem;
    font-weight: 600;
    font-family: var(--fonth);
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.cw-chip:hover {
    background: var(--p);
    color: #fff;
}

.cw-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 15px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
}

.cw-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tl);
    animation: cwTypingDot 1.3s ease-in-out infinite;
}

.cw-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.cw-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes cwTypingDot {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.cw-foot {
    flex-shrink: 0;
    background: var(--white);
    border-top: 1px solid var(--bor);
    padding: 12px 14px 10px;
}

.cw-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1.5px solid var(--bor);
    border-radius: 24px;
    padding: 6px 6px 6px 14px;
    transition: border-color 0.2s ease;
}

.cw-input-row:focus-within {
    border-color: var(--p);
    background: var(--white);
}

.cw-attach {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.cw-attach:hover {
    background: var(--ps);
}

.cw-attach svg {
    width: 16px;
    height: 16px;
    fill: var(--tl);
}

.cw-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 0.85rem;
    font-family: var(--font);
    color: var(--td);
    min-width: 0;
}

.cw-input::placeholder {
    color: var(--tl);
}

.cw-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--p);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        background 0.2s ease,
        transform 0.15s ease;
}

.cw-send:hover {
    background: var(--pd);
    transform: scale(1.05);
}

.cw-send svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.cw-foot-note {
    text-align: center;
    font-size: 0.66rem;
    color: var(--tl);
    margin-top: 8px;
}

@media (max-width: 480px) {
    .cw-launcher {
        bottom: 18px;
        right: 18px;
    }

    .cw-panel {
        right: 16px;
        left: 16px;
        width: auto;
        bottom: 92px;
        height: calc(100vh - 140px);
        max-height: none;
    }

    .cw-fab {
        width: 56px;
        height: 56px;
    }
}
.cw-lead-form {
    background: var(--white);
    border: 1.5px solid var(--bor);
    border-radius: 14px;
    padding: 14px;
    margin-left: 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cw-lead-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--td);
    margin-bottom: 2px;
}

.cw-lead-input {
    border: 1.5px solid var(--bor);
    border-radius: 9px;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s ease;
}

.cw-lead-input:focus {
    border-color: var(--p);
}

.cw-lead-submit {
    background: var(--p);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--fonth);
    cursor: pointer;
    transition: background 0.2s ease;
}

.cw-lead-submit:hover {
    background: var(--pd);
}

.cw-lead-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cw-head-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cw-menu-wrap {
    position: relative;
}

.cw-head-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cw-head-menu-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cw-head-menu-btn svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.cw-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--bor);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(30, 10, 50, 0.18);
    padding: 6px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
    z-index: 10;
}

.cw-menu-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cw-menu-item {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tb);
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}

.cw-menu-item:hover {
    background: var(--ps);
    color: var(--p);
}

.cw-menu-item svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.cw-msg-in {
    animation: cwMsgSlideIn 0.28s ease;
}

@keyframes cwMsgSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cw-bubble {
    transition: transform 0.15s ease;
}

.cw-chip {
    animation: cwChipPop 0.3s ease backwards;
}

.cw-chip:nth-child(1) {
    animation-delay: 0.05s;
}
.cw-chip:nth-child(2) {
    animation-delay: 0.1s;
}
.cw-chip:nth-child(3) {
    animation-delay: 0.15s;
}
.cw-chip:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes cwChipPop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(6px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg .orb1,
    .hero-bg .orb2,
    .hero-bg .orb3,
    .hero-grid,
    .hp,
    .hct,
    .hn-line,
    .hn-node {
        animation: none !important;
    }
}
