/* ══════════════════════════════════════════
   Welwin Infotech – Home Page
   Exact match to reference design
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

/* ══════════════════════════════════════════
   PAGE RELOAD LOADER
   ══════════════════════════════════════════ */

@keyframes loader-colorize {
  0% {
    filter: grayscale(1) brightness(0.35) contrast(1.1);
    opacity: 0;
    transform: scale(0.86);
  }
  15% {
    filter: grayscale(0.9) brightness(0.55) contrast(1.05);
    opacity: 1;
    transform: scale(0.95);
  }
  48% {
    filter: grayscale(0.45) brightness(0.82) saturate(1.1) contrast(1);
    opacity: 1;
    transform: scale(1);
  }
  80% {
    filter: grayscale(0) brightness(1.05) saturate(1.4) contrast(1);
    opacity: 1;
    transform: scale(1);
  }
  100% {
    filter: grayscale(0) brightness(1.1) saturate(1.8) contrast(1) drop-shadow(0 0 18px rgba(232,66,60,0.55));
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-fadeout {
  to { opacity: 0; pointer-events: none; }
}

@keyframes loader-bg-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@keyframes loader-text-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
}

.page-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  position: relative;
  z-index: 1;
}

.page-loader__content::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(232,66,60,0.22) 0%,
    rgba(232,66,60,0.06) 55%,
    transparent 75%
  );
  animation: loader-colorize 2.8s cubic-bezier(0.22,1,0.36,1) forwards;
  pointer-events: none;
  z-index: -1;
}

.page-loader__img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: loader-colorize 2.8s cubic-bezier(0.22,1,0.36,1) forwards;
}

.page-loader__text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #374151;
  animation: loader-text-in 0.55s 0.3s ease both;
}

.page-loader.is-hidden {
  animation: loader-fadeout 0.32s ease forwards;
}

body.is-loading {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__text {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
    --orange:       #f97316;
    --orange-dark:  #ea6c0a;
    --orange-light: #fff7ed;
    --orange-mid:   #fed7aa;
    --purple:       #7c3aed;
    --purple-light: #ede9fe;
    --blue:         #3b82f6;
    --blue-dark:    #2563eb;
    --dark:         #111827;
    --dark-2:       #1f2937;
    --muted:        #6b7280;
    --muted-light:  #9ca3af;
    --border:       #e5e7eb;
    --bg-cream:     #faf9f7;
    --bg-white:     #ffffff;
    --nav-h:        76px;
    --hero-pad-b:   0px;
    --radius-sm:    6px;
    --radius-md:    10px;
    --radius-lg:    14px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg:    0 10px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
    --btn-gradient:   linear-gradient(90deg, #2dd4bf 0%, #22d3ee 22%, #f97316 100%);
    --btn-orange:     #f97316;
    --btn-orange-dark:#ea580c;
    --btn-shadow:     0 6px 20px rgba(249, 115, 22, 0.32);
    --btn-shadow-hover: 0 10px 32px rgba(249, 115, 22, 0.42);
    --teal:           #14b8a6;
    --teal-light:     #2dd4bf;
    --teal-dark:      #0d9488;
    --indigo:         #4f46e5;
    --indigo-light:   #6366f1;
    --indigo-dark:    #4338ca;
}

/* ── Page breadcrumb (hero sub-nav) ── */
.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
    margin-bottom: 1.25rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
    color: var(--orange);
}

.page-breadcrumb [aria-current="page"] {
    color: var(--dark);
    font-weight: 800;
}

.page-breadcrumb__sep {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

/* ── Gradient text utility ── */
.grad-text {
    background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.72rem 1.6rem;
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.15s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--orange,
.btn--blue,
.btn--outline,
.btn--outline-dark,
.hero__btn--primary,
.hero__btn--ghost {
    background-color: var(--btn-orange);
    color: #fff;
    -webkit-text-fill-color: currentColor;
    box-shadow: var(--btn-shadow);
}

.btn--orange::before,
.btn--blue::before,
.btn--outline::before,
.btn--outline-dark::before,
.hero__btn--primary::before,
.hero__btn--ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--btn-gradient);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.btn__label,
.btn--orange > *,
.btn--blue > *,
.btn--outline > *,
.btn--outline-dark > *,
.hero__btn > * {
    position: relative;
    z-index: 1;
}

.btn--orange:hover,
.btn--blue:hover,
.btn--outline:hover,
.btn--outline-dark:hover,
.hero__btn--primary:hover,
.hero__btn--ghost:hover {
    color: #fff;
    -webkit-text-fill-color: currentColor;
    box-shadow: var(--btn-shadow-hover);
    transform: translateY(-2px);
}

.btn--orange:hover::before,
.btn--blue:hover::before,
.btn--outline:hover::before,
.btn--outline-dark:hover::before,
.hero__btn--primary:hover::before,
.hero__btn--ghost:hover::before {
    opacity: 1;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #ffffff;
    border-bottom: none;
    box-shadow: none;
}

.navbar__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: var(--nav-h);
}

/* Logo — image */
.navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    transition: opacity 0.15s;
}
.navbar__logo:hover { opacity: 0.85; }
.navbar__logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 190px;
}

.navbar__nav {
    margin-left: auto;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.4rem 0.55rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.08),
        0 2px 8px rgba(15, 23, 42, 0.04);
}

.navbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.62rem 1rem;
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
}

.navbar__link svg {
    opacity: 0.55;
    transition: transform 0.2s ease;
}

.navbar__link:hover {
    color: var(--dark);
    background: rgba(15, 23, 42, 0.05);
}

.navbar__link:hover svg {
    transform: rotate(180deg);
    opacity: 0.75;
}

.navbar__link--active {
    color: var(--dark);
    font-weight: 600;
    background: rgba(15, 23, 42, 0.06);
}

.navbar__link--active::after {
    display: none;
}

/* Dropdown */
.navbar__item--drop { position: relative; }

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 300;
}
.navbar__item--drop:hover .navbar__dropdown,
.navbar__item--drop:focus-within .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navbar__dropdown li a {
    display: block;
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    transition: color 0.15s, background 0.15s;
}
.navbar__dropdown li a:hover {
    color: var(--dark);
    background: rgba(15, 23, 42, 0.04);
}

/* Burger */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    border-radius: var(--radius-sm);
}
.navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.25s;
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO SECTION  — Light theme split layout
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    background: #ffffff;
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    min-height: 520px;
    padding-top: var(--nav-h);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero__shape--top {
    top: var(--nav-h);
    right: -8%;
    width: min(52vw, 620px);
    height: min(28vw, 280px);
    background: radial-gradient(ellipse at 70% 30%, rgba(249, 115, 22, 0.18) 0%, transparent 68%);
}

.hero__shape--bottom {
    left: -10%;
    bottom: -6%;
    width: min(58vw, 680px);
    height: min(32vw, 320px);
    background: radial-gradient(ellipse at 30% 70%, rgba(59, 130, 246, 0.14) 0%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    max-width: min(1380px, 96vw);
    height: calc(100dvh - var(--nav-h));
    margin: 0 auto;
    padding: clamp(0.75rem, 2vh, 1.5rem) clamp(1.25rem, 3vw, 2.5rem);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    height: 100%;
    gap: clamp(0.85rem, 2.2vh, 1.75rem);
}

.hero__eyebrow {
    display: inline-block;
    width: fit-content;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f26522;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff3e8 0%, #fffaf5 48%, #f2fbff 100%);
    border: 1px solid rgba(242, 101, 34, 0.22);
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.1);
    margin: 0;
    animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__title {
    font-family: "Inter", sans-serif;
    font-size: clamp(2.35rem, 4.6vw, 3.65rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1a1a1a;
    margin: 0;
    animation: fade-up 0.7s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__title-grad {
    display: inline;
    background: linear-gradient(90deg, var(--blue-dark) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.0625rem);
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    max-width: 52ch;
    margin: 0;
    animation: fade-up 0.7s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 0;
    animation: fade-up 0.7s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 1.5vh, 0.95rem) clamp(1.35rem, 2.2vw, 1.85rem);
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: none;
    transition: box-shadow 0.25s ease, transform 0.15s ease, color 0.25s ease;
    white-space: nowrap;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.15rem;
    animation: fade-up 0.7s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__trust-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero__trust-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -0.7rem;
    flex-shrink: 0;
    position: relative;
}

.hero__trust-avatar:first-child { margin-left: 0; z-index: 1; }

.hero__trust-avatar--1 {
    background: #3b82f6;
    z-index: 1;
}

.hero__trust-avatar--2 {
    background: #f97316;
    z-index: 2;
}

.hero__trust-avatar--3 {
    background: #22c55e;
    z-index: 3;
}

.hero__trust-text {
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.35;
    margin: 0;
    white-space: nowrap;
}

.hero__trust-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 0;
}

.hero__visual-wave--orange {
    top: 0;
    right: -6%;
    width: min(85%, 520px);
    height: min(65%, 380px);
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.28) 0%, rgba(249, 115, 22, 0.08) 45%, transparent 72%);
}

.hero__visual-wave--blue {
    bottom: 0;
    right: 4%;
    width: min(90%, 560px);
    height: min(68%, 400px);
    background: radial-gradient(circle at 60% 60%, rgba(59, 130, 246, 0.24) 0%, rgba(59, 130, 246, 0.08) 48%, transparent 74%);
}

.hero__visual-wave {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero__img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: min(96vh, calc(100dvh - var(--nav-h) - 0.25rem));
    max-width: min(64vw, 1080px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: none;
}

.hero__img-main {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    mix-blend-mode: lighten;
    transform: scale(1.08);
    transform-origin: center center;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   FEATURE CARDS BAR (below hero)
   ══════════════════════════════════════════ */
.hero-cards-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

.hero-cards-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--border);
}

.hero-cards-bar__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}
.hero-cards-bar__card:hover {
    background: var(--orange-light);
}

.hero-cards-bar__icon {
    width: 46px;
    height: 46px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cards-bar__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.hero-cards-bar__text {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.75rem 2rem;
}

.stats-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 110px;
}

/* Big orange numbers — Montserrat heavy */
.stats-bar__num {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats-bar__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US (cards)
   ══════════════════════════════════════════ */
.why-choose {
    position: relative;
    padding: clamp(4rem, 6.5vw, 5.5rem) 2rem;
    background: var(--bg-white);
    text-align: center;
}

.why-choose__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.why-choose__header {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 3rem;
}

.why-choose__label {
    margin: 0 0 1rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
}

.why-choose__title {
    margin: 0 0 0.6rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.why-choose__title span {
    color: var(--orange);
}

.why-choose__sub {
    font-size: 0.95rem;
    color: var(--muted);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.why-choose__card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
}

.why-choose__card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #fb923c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-choose__card:hover::after {
    transform: scaleX(1);
}

.why-choose__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-choose__card-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.why-choose__card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.why-choose__card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}

/* About Us — 2-up carousel */
.why-choose--carousel .why-choose__inner {
    max-width: 920px;
}

.why-choose--carousel .why-choose__carousel {
    position: relative;
}

.why-choose--carousel .why-choose__viewport {
    overflow: hidden;
    outline: none;
}

.why-choose--carousel .why-choose__track {
    display: flex;
    gap: 1.25rem;
    will-change: transform;
}

.why-choose--carousel .why-choose__card {
    flex: 0 0 auto;
    box-sizing: border-box;
}

.why-choose--carousel .why-choose__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.why-choose--carousel .why-choose__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.why-choose--carousel .why-choose__dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 999px;
    padding: 0;
    background: #d1d5db;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.why-choose--carousel .why-choose__dot.is-active {
    width: 22px;
    background: var(--orange);
}

.why-choose--carousel .why-choose__arrow {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.why-choose--carousel .why-choose__arrow:hover,
.why-choose--carousel .why-choose__arrow:focus-visible {
    border-color: var(--orange);
    color: var(--orange);
    outline: none;
}

.why-choose--carousel .why-choose__arrow:active {
    transform: scale(0.96);
}

@media (max-width: 900px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .why-choose {
        padding: 4rem 1.25rem;
    }
    .why-choose__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .why-choose--carousel .why-choose__card {
        padding: 1.5rem 1.15rem;
    }

    .why-choose--carousel .why-choose__card h3 {
        font-size: 0.95rem;
    }

    .why-choose--carousel .why-choose__card p {
        font-size: 0.8125rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-choose__card {
        transition: none;
    }

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

/* ══════════════════════════════════════════
   WHY CHOOSE US (comparison — legacy)
   ══════════════════════════════════════════ */
.why {
    padding: 5.5rem 2rem;
    background: var(--bg-cream);
}

.why__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.why__header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.why__title {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.why__title-vs {
    display: inline-block;
    margin: 0 0.2em;
    padding: 0.1em 0.45em;
    font-size: 0.72em;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    border-radius: 6px;
    vertical-align: middle;
    letter-spacing: 0.04em;
}

.why__title-accent {
    background: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why__sub {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 400;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Infographic-style comparison layout */
.why__vs {
    position: relative;
    margin-bottom: 2.75rem;
    padding: 0;
}

.why__vs-labels {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 2rem;
    padding: 0 0.25rem;
}

.why__vs-label {
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.why__vs-label--left { text-align: right; padding-right: 1.5rem; }
.why__vs-label--right { text-align: left; padding-left: 1.5rem; color: var(--orange); }

.why__vs-axis {
    position: absolute;
    top: 3rem;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, #cbd5e1 5%, #94a3b8 50%, #cbd5e1 95%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.why__vs-rows {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3.25rem;
    padding-top: 0.5rem;
}

.why__vs-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    position: relative;
    transition: transform 0.25s ease;
    min-height: 4.5rem;
}

.why__vs-row:hover {
    transform: scale(1.006);
}

.why__vs-block {
    display: flex;
    align-items: center;
    min-width: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.why__vs-block--left {
    grid-column: 1;
    justify-content: flex-end;
    margin-right: -2.75rem;
}

.why__vs-block--right {
    grid-column: 3;
    justify-content: flex-start;
    margin-left: -2.75rem;
}

.why__vs-hub {
    grid-column: 2;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 9.25rem;
    height: 3.85rem;
}

.why__vs-hub-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.why__vs-bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 4.5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--row-color-light) 0%, var(--row-color) 55%, var(--row-color-dark) 100%);
    min-width: 0;
    filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
    transition: filter 0.25s ease;
}

.why__vs-row:hover .why__vs-block--left .why__vs-bar {
    filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.16));
}

.why__vs-block--left .why__vs-bar {
    clip-path: polygon(0% 50%, 7% 0%, 100% 0%, 100% 100%, 7% 100%);
    padding: 0.5rem 1rem 0.5rem 0.6rem;
}

.why__vs-block--right .why__vs-bar {
    clip-path: polygon(0% 0%, 93% 0%, 100% 50%, 93% 100%, 0% 100%);
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    filter: drop-shadow(0 4px 12px color-mix(in srgb, var(--row-color) 28%, transparent));
}

.why__vs-row:hover .why__vs-block--right .why__vs-bar {
    filter: drop-shadow(0 6px 18px color-mix(in srgb, var(--row-color) 38%, transparent));
}

.why__vs-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.why__vs-text {
    flex: 1;
    margin: 0;
    padding: 0.8rem 1rem;
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
    color: #334155;
    background: #fff;
    border-radius: 10px;
    min-width: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 8px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease;
}

.why__vs-row:hover .why__vs-text {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 12px rgba(15, 23, 42, 0.1);
}

.why__vs-block--left .why__vs-text { text-align: left; }

.why__vs-block--right .why__vs-text {
    text-align: right;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.why__vs-hex {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.75rem;
    background: #fff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    color: var(--row-color-dark);
    position: relative;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why__vs-hex::before,
.why__vs-hex::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    height: 2px;
    background: var(--row-color);
    z-index: 1;
    pointer-events: none;
}

.why__vs-hex::before { top: 5px; }

.why__vs-hex::after { bottom: 5px; }

.why__vs-hex svg {
    position: relative;
    z-index: 2;
}

.why__vs-hub-icons .why__vs-hex:first-child {
    margin-right: -0.45rem;
    z-index: 3;
}

.why__vs-hub-icons .why__vs-hex:last-child {
    margin-left: -0.45rem;
    z-index: 3;
}

.why__vs-row:hover .why__vs-hex {
    transform: scale(1.04);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.14);
}

.why__vs-dot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin: 0 0.1rem;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--row-color);
    z-index: 6;
    position: relative;
}

.why__vs-dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--row-color);
}

.why__vs-topic {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.32rem 0.85rem;
    font-family: "Inter", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--row-color-dark);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    white-space: nowrap;
    box-shadow:
        0 0 0 3px #fff,
        0 3px 10px rgba(15, 23, 42, 0.08);
    z-index: 10;
}

.why__vs-row--olive {
    --row-color: var(--orange);
    --row-color-light: #fb923c;
    --row-color-dark: var(--orange-dark);
}

.why__vs-row--mustard {
    --row-color: var(--purple);
    --row-color-light: #8b5cf6;
    --row-color-dark: #6d28d9;
}

.why__vs-row--rose {
    --row-color: var(--blue);
    --row-color-light: #60a5fa;
    --row-color-dark: var(--blue-dark);
}

.why__vs-row--sage {
    --row-color: var(--teal);
    --row-color-light: var(--teal-light);
    --row-color-dark: var(--teal-dark);
}

.why__vs-row--teal {
    --row-color: var(--indigo);
    --row-color-light: var(--indigo-light);
    --row-color-dark: var(--indigo-dark);
}

@media (max-width: 1100px) {
    .why__vs-text {
        font-size: 0.76rem;
        padding: 0.65rem 0.8rem;
    }

    .why__vs-num {
        font-size: 1.55rem;
        width: 2.2rem;
    }

    .why__vs-hex {
        width: 3.2rem;
        height: 3.5rem;
    }

    .why__vs-bar {
        min-height: 4rem;
    }

    .why__vs-block--left { margin-right: -2.25rem; }

    .why__vs-block--right { margin-left: -2.25rem; }

    .why__vs-hub { min-width: 8rem; }

    .why__vs-topic {
        font-size: 0.58rem;
    }
}

.why__btn-wrap { text-align: center; margin-top: 0.25rem; }

.why__btn-wrap .btn,
.cmap__btn-wrap .btn,
.cta-band__btns .btn {
    padding: 1rem 2.35rem;
    font-size: 1.0625rem;
    gap: 0.55rem;
}

/* ══════════════════════════════════════════
   OUR SERVICES
   ══════════════════════════════════════════ */
.services {
    padding: 5.5rem 2rem;
    background: #fff;
}

.services__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: 3.25rem;
}

/* "Our Services" — dark + orange span */
.services__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.services__title .text--orange { color: var(--orange); }

.services__sub {
    font-size: 0.975rem;
    color: var(--muted);
    font-weight: 400;
}

.services__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.services__card {
    background: #fff;
    border: 1px solid #ede9e3;
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.22s, transform 0.22s;
}
.services__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Square icon container — warm peach bg */
.services__card-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.services__card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.services__card-text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

/* Orange link inside card (like "High-performance..." in reference) */
.services__card-text a,
.services__card-text .link {
    color: var(--orange);
}

.services__btn-wrap { text-align: center; }

/* ══════════════════════════════════════════
   CTA BAND — "Ready to Transform Your Business?"
   ══════════════════════════════════════════ */
.cta-band {
    padding: 5.5rem 2rem;
    /* Gradient from warm cream to slightly deeper warm — matches reference */
    background: linear-gradient(160deg,
        #fdf8f3 0%,
        #f5ede2 50%,
        #ede4d8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow */
.cta-band::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse,
        rgba(249,115,22,0.08) 0%,
        transparent 65%);
    pointer-events: none;
}

.cta-band__inner {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-band__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.cta-band__sub {
    font-size: 0.975rem;
    color: var(--muted);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.cta-band__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    background: #0d1117;
    border-top: 3px solid var(--orange);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Orange Montserrat logo */
.footer__logo {
    display: block;
    margin-bottom: 0.8rem;
}
.footer__logo img {
    display: block;
    height: 40px;
    width: auto;
    transition: opacity 0.15s;
}
.footer__logo img:hover {
    opacity: 0.85;
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 1.4rem;
    max-width: 230px;
}

.footer__social {
    display: flex;
    gap: 0.6rem;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer__social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(249,115,22,0.12);
}

/* Column headings */
.footer__col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
    line-height: 1.4;
}
.footer__links a:hover { color: var(--orange); }

/* Contact column with icons */
.footer__links--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}
.footer__links--contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--orange);
}
.footer__links--contact a { color: rgba(255,255,255,0.55); }
.footer__links--contact a:hover { color: var(--orange); }

/* Bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.footer__bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.15s;
}
.footer__bottom-links a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 960px) {
    .navbar__burger { display: flex; z-index: 201; }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .navbar {
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    }

    body.nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.52);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 198;
        animation: nav-backdrop-in 0.32s ease forwards;
    }

    @keyframes nav-backdrop-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes nav-dropdown-item-in {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile dropdown — full-width panel, drops from header */
    .navbar__nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        max-height: 0;
        margin: 0;
        background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
        padding: 0;
        box-shadow:
            0 16px 40px rgba(15, 23, 42, 0.12),
            0 4px 12px rgba(15, 23, 42, 0.06);
        border: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 0 0 16px 16px;
        z-index: 199;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transform-origin: top center;
        transition:
            max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.28s ease,
            transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0.42s;
    }

    .navbar__nav.is-open::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange) 0%, #fb923c 45%, var(--blue) 100%);
        z-index: 1;
    }

    .navbar__nav.is-open {
        max-height: calc(100dvh - var(--nav-h));
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        overflow-y: auto;
        overflow-x: hidden;
        transition:
            max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.28s ease,
            transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0s linear 0s;
    }

    .navbar__nav.is-open .navbar__list > li {
        opacity: 0;
        animation: nav-dropdown-item-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar__nav.is-open .navbar__list > li:nth-child(1) { animation-delay: 0.06s; }
    .navbar__nav.is-open .navbar__list > li:nth-child(2) { animation-delay: 0.1s; }
    .navbar__nav.is-open .navbar__list > li:nth-child(3) { animation-delay: 0.14s; }
    .navbar__nav.is-open .navbar__list > li:nth-child(4) { animation-delay: 0.18s; }
    .navbar__nav.is-open .navbar__list > li:nth-child(5) { animation-delay: 0.22s; }
    .navbar__nav.is-open .navbar__list > li:nth-child(6) { animation-delay: 0.26s; }

    .navbar__nav .navbar__list {
        position: relative;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0.35rem clamp(1.25rem, 4vw, 2rem) 1.1rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .navbar__nav .navbar__list::before {
        content: "Navigation";
        display: block;
        padding: 0.85rem 0.25rem 0.65rem;
        font-family: "Inter", sans-serif;
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted-light);
    }

    .navbar__nav .navbar__list > li {
        border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    }

    .navbar__nav .navbar__list > li:last-child {
        border-bottom: none;
    }

    .navbar__nav .navbar__link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        min-height: 3.25rem;
        padding: 0.75rem 0.5rem 0.75rem 0.25rem;
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: var(--dark);
        border-radius: 10px;
        border-left: 3px solid transparent;
        transition:
            background 0.2s ease,
            color 0.2s ease,
            border-color 0.2s ease,
            padding-left 0.2s ease;
    }

    .navbar__nav .navbar__link::after {
        content: "";
        width: 7px;
        height: 7px;
        margin-left: auto;
        margin-right: 0.35rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(-45deg);
        opacity: 0.28;
        flex-shrink: 0;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .navbar__nav .navbar__link:hover,
    .navbar__nav .navbar__link:focus-visible {
        background: rgba(249, 115, 22, 0.07);
        color: var(--orange-dark);
        padding-left: 0.5rem;
    }

    .navbar__nav .navbar__link:hover::after,
    .navbar__nav .navbar__link:focus-visible::after {
        opacity: 0.65;
        transform: rotate(-45deg) translate(2px, -2px);
    }

    .navbar__nav .navbar__link--drop {
        justify-content: flex-start;
    }

    .navbar__nav .navbar__link--drop::after {
        display: none;
    }

    .navbar__nav .navbar__link--drop svg {
        margin-left: auto;
        opacity: 0.45;
    }

    .navbar__nav .navbar__link--active {
        background: linear-gradient(90deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.03) 72%, transparent 100%);
        color: var(--orange-dark);
        font-weight: 700;
        border-left-color: var(--orange);
        padding-left: 0.5rem;
    }

    .navbar__nav .navbar__link--active::after {
        opacity: 0.55;
        color: var(--orange);
    }

    .navbar__nav .navbar__dropdown {
        display: none; /* Hidden by default on mobile, toggled with JS */
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.25rem 0 0.5rem 1.25rem;
        background: transparent;
        flex-direction: column;
        gap: 0.25rem;
        border-left: 1.5px solid var(--orange-mid);
        margin-left: 1.75rem;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .navbar__nav .navbar__item--drop.is-dropdown-open .navbar__dropdown {
        display: flex; /* Displayed when toggled open */
    }

    /* Rotate arrow when open */
    .navbar__nav .navbar__item--drop .navbar__link--drop svg {
        transition: transform 0.2s ease;
    }
    .navbar__nav .navbar__item--drop.is-dropdown-open .navbar__link--drop svg {
        transform: rotate(180deg);
    }

    .navbar__nav .navbar__dropdown li a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--muted);
        border-radius: 8px;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .navbar__nav .navbar__dropdown li a:hover {
        background: rgba(249, 115, 22, 0.05);
        color: var(--orange);
    }

    @media (prefers-reduced-motion: reduce) {
        .navbar__nav {
            transition: none;
        }

        .navbar__nav.is-open .navbar__list > li {
            animation: none;
            opacity: 1;
            transform: none;
        }

        body.nav-open::after {
            animation: none;
        }
    }

    /* Hero — stack on tablet, full viewport height */
    .hero {
        height: 100dvh;
        min-height: 520px;
        padding-top: var(--nav-h);
        padding-bottom: 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: clamp(0.75rem, 2vh, 1.25rem);
        height: 100%;
        min-height: 0;
        padding: clamp(0.75rem, 2vh, 1.25rem) clamp(1rem, 4vw, 1.75rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero__content {
        height: auto;
        flex-shrink: 0;
    }

    .hero__visual {
        order: -1;
        height: auto;
        flex-shrink: 1;
        min-height: 0;
        max-height: 50vh;
    }

    .hero__img-wrap {
        height: auto;
        max-width: min(620px, 94vw);
        max-height: 100%;
        margin: 0 auto;
    }

    .hero__img-main {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: min(46vh, 360px);
        margin: 0 auto;
        transform: scale(1.05);
    }

    .hero__content {
        align-items: center;
        text-align: center;
    }

    .hero__title {
        max-width: none;
    }

    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__btns {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__trust-text {
        white-space: normal;
        text-align: center;
    }

    /* Feature cards bar — 2-col on tablet */
    .hero-cards-bar__inner { grid-template-columns: repeat(2, 1fr); }

    .why__vs-labels { display: none; }

    .why__vs-axis { display: none; }

    .why__vs-rows { gap: 1.25rem; }

    .why__vs-row:hover { transform: none; }

    .why__vs-row {
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
    }

    .why__vs-hub { display: none; }

    .why__vs-block--left,
    .why__vs-block--right {
        grid-column: 1;
        justify-content: stretch;
        margin: 0;
    }

    .why__vs-block--left .why__vs-bar,
    .why__vs-block--right .why__vs-bar {
        clip-path: none;
        border-radius: 12px;
    }

    .why__vs-block--right .why__vs-text {
        text-align: left;
        background: #fff;
    }
    .services__cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

    .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
    .footer__col--brand {
        grid-column: 1 / -1;
    }
    .stats-bar__inner { justify-content: center; gap: 1.5rem 2.5rem; }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: calc(100dvh - var(--nav-h));
        padding-top: calc(var(--nav-h) + 1.5rem);
        padding-bottom: 4rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        background-color: #ffffff;
        background-image: 
            radial-gradient(circle at center 20%, rgba(249, 115, 22, 0.08) 0%, rgba(59, 130, 246, 0.05) 50%, #ffffff 100%);
    }

    .hero__inner {
        height: auto;
        min-height: 0;
        padding: 0 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .hero__visual {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        height: auto;
        min-height: 0;
    }

    .hero__img-wrap {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: min(420px, 94vw);
        margin: 0 auto;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
        animation: fade-up 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero__img-main {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        mix-blend-mode: lighten;
        transform: none;
    }

    .hero__visual-wave--orange {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translate(-30px, -20px);
        width: 240px;
        height: 240px;
        background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.05) 50%, transparent 70%);
    }

    .hero__visual-wave--blue {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translate(30px, 20px);
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 70%);
    }

    .hero__content {
        display: contents;
    }

    .hero__eyebrow {
        order: 1;
        margin: 0 auto 1.25rem;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        padding: 0.45rem 1.25rem;
        background: rgba(255, 247, 237, 0.85);
        border: 1px solid rgba(249, 115, 22, 0.2);
        border-radius: 999px;
        color: var(--orange);
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.04);
        width: fit-content;
    }

    .hero__title {
        order: 2;
        font-size: clamp(2rem, 8.5vw, 2.45rem);
        line-height: 1.2;
        margin-bottom: 1.125rem;
        font-weight: 900;
        letter-spacing: -0.025em;
        text-align: center;
    }

    .hero__title-grad {
        background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero__sub {
        order: 4;
        margin: 0 auto 2rem;
        max-width: 38ch;
        font-size: 0.88rem;
        line-height: 1.6;
        color: #64748b;
        text-align: center;
    }

    .hero__btns {
        order: 5;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        gap: 0.75rem;
        margin: 0 auto 2rem;
    }

    .hero__btn--primary {
        width: 100%;
        justify-content: center;
        background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
        color: #ffffff;
        box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
        border: none;
    }

    .hero__btn--primary::before {
        display: none;
    }

    .hero__btn--ghost {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(8px);
        color: var(--orange) !important;
        -webkit-text-fill-color: var(--orange) !important;
        border: 1.5px solid var(--orange) !important;
        box-shadow: none !important;
    }

    .hero__btn--ghost::before {
        display: none;
    }

    .hero__trust {
        order: 6;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        background: rgba(248, 250, 252, 0.85);
        border: 1px solid rgba(226, 232, 240, 0.8);
        padding: 0.45rem 1rem;
        border-radius: 999px;
        margin: 0 auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        backdrop-filter: blur(8px);
        width: fit-content;
    }

    .hero__trust-text {
        text-align: center;
        font-size: 0.85rem;
        color: #475569;
    }

    /* Feature cards bar — 1-col on mobile */
    .hero-cards-bar {
        padding: 0 1.375rem;
    }

    .hero-cards-bar__inner { grid-template-columns: 1fr; border-left: none; }
    .hero-cards-bar__card { border-right: none; border-bottom: 1px solid var(--border); padding: 1.4rem 0; }

    .why { padding: 4rem 1.25rem; }
    .services { padding: 4rem 1.25rem; }
    .cta-band { padding: 4rem 1.25rem; }
    .cta-band__btns { flex-direction: column; align-items: center; }
    .cta-band__btns .btn { width: 100%; max-width: 300px; justify-content: center; }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.25rem;
        padding: 2.5rem 1.25rem 1.75rem;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border);
        margin-bottom: 0.25rem;
    }

    .footer__logo {
        margin-bottom: 0.65rem;
    }

    .footer__logo img {
        height: 36px;
        margin: 0 auto;
    }

    .footer__tagline {
        max-width: 300px;
        margin: 0 auto 1.1rem;
        font-size: 0.82rem;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__col-title {
        font-size: 0.84rem;
        margin-bottom: 0.75rem;
    }

    .footer__links {
        gap: 0.5rem;
    }

    .footer__links a {
        font-size: 0.82rem;
    }

    .footer__links--contact li {
        font-size: 0.82rem;
        align-items: center;
    }

    .footer__col:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.15rem 1.25rem 1.5rem;
        gap: 0.85rem;
    }

    .footer__copy {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer__bottom-links {
        justify-content: center;
        gap: 0.5rem 1.1rem;
    }

    .footer__bottom-links a {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .stats-bar { padding: 2rem 1.25rem; }
    .stats-bar__inner { gap: 1rem 1.5rem; }
    .stats-bar__item { min-width: 90px; }
    .stats-bar__num { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__content > *,
    .hero__img-wrap {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ══════════════════════════════════════════
   SERVICES — wave timeline (9 points)
   ══════════════════════════════════════════ */

.cmap {
    padding: 5.5rem 0 3rem;
    background: #fff;
    overflow: visible;
}

.cmap .services__header {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.cmap__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    overflow: visible;
}

.cmap__btn-wrap {
    margin-top: clamp(-4.5rem, -8vw, -2.75rem);
    text-align: center;
}

.cmap__timeline-scroll {
    width: 100%;
    overflow: visible;
}

.cmap__timeline {
    position: relative;
    width: 100%;
    height: clamp(460px, 52vw, 560px);
    min-height: 460px;
    margin: 0 auto;
    overflow: visible;
}

.cmap__wave {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    max-height: 360px;
    pointer-events: none;
    z-index: 0;
}

.cmap__wave-path {
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.cmap--live .cmap__wave-path {
    animation: cmap-wave-draw 0.9s ease forwards;
}

@keyframes cmap-wave-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes cmap-node-pop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cmap-point-in {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* ── Timeline points ── */
.cmap__point {
    --point-color: #9333ea;
    --wave-peak: 27.8%;
    --wave-trough: 72.2%;
    --wave-clear-top: 42%;
    --wave-clear-bottom: 58%;
    --node-half: clamp(1.05rem, 2vw, 1.375rem);
    position: absolute;
    left: var(--x);
    top: 0;
    height: 100%;
    width: clamp(108px, 12.5vw, 188px);
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    overflow: visible;
}

.cmap__point-content,
.cmap__point-anchor {
    pointer-events: auto;
}

.cmap--live .cmap__point {
    animation: cmap-point-in 0.4s ease var(--point-delay, 0.15s) forwards;
}

.cmap__point:nth-child(2)  { --point-delay: 0.15s; }
.cmap__point:nth-child(3)  { --point-delay: 0.23s; }
.cmap__point:nth-child(4)  { --point-delay: 0.31s; }
.cmap__point:nth-child(5)  { --point-delay: 0.39s; }
.cmap__point:nth-child(6)  { --point-delay: 0.47s; }
.cmap__point:nth-child(7)  { --point-delay: 0.55s; }
.cmap__point:nth-child(8)  { --point-delay: 0.63s; }
.cmap__point:nth-child(9)  { --point-delay: 0.71s; }
.cmap__point:nth-child(10) { --point-delay: 0.79s; }

/* Peak: number only on wave, all content below the wave band */
.cmap__point--peak .cmap__point-anchor {
    position: absolute;
    left: 50%;
    top: var(--wave-peak);
    transform: translate(-50%, -50%);
    z-index: 5;
}

.cmap__point--peak .cmap__point-content {
    position: absolute;
    left: 50%;
    width: clamp(120px, 13vw, 200px);
    transform: translateX(-50%);
    top: var(--wave-clear-bottom);
    bottom: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.4rem, 0.8vw, 0.65rem);
    text-align: center;
    z-index: 2;
    overflow: visible;
}

/* Trough: all content above the wave band, number only on wave */
.cmap__point--trough .cmap__point-anchor {
    position: absolute;
    left: 50%;
    top: var(--wave-trough);
    transform: translate(-50%, -50%);
    z-index: 5;
}

.cmap__point--trough .cmap__point-content {
    position: absolute;
    left: 50%;
    width: clamp(120px, 13vw, 200px);
    transform: translateX(-50%);
    top: 0;
    bottom: calc(100% - var(--wave-clear-top));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.4rem, 0.8vw, 0.65rem);
    text-align: center;
    z-index: 2;
    overflow: visible;
    padding-top: 0.25rem;
}

.cmap__point-stem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--point-color);
    z-index: 4;
    pointer-events: none;
}

.cmap__point--peak .cmap__point-stem {
    top: calc(var(--wave-peak) + var(--node-half));
    height: calc(var(--wave-clear-bottom) - var(--wave-peak) - var(--node-half));
}

.cmap__point--trough .cmap__point-stem {
    top: var(--wave-clear-top);
    height: calc(var(--wave-trough) - var(--wave-clear-top) - var(--node-half));
}

.cmap__point-desc {
    font-size: clamp(0.72rem, 1.35vw, 0.875rem);
    line-height: 1.5;
    color: #475569;
    margin: 0;
    width: 100%;
    text-wrap: pretty;
}

.cmap__point-pill {
    display: inline-block;
    padding: clamp(0.3rem, 0.55vw, 0.45rem) clamp(0.55rem, 1.1vw, 1rem);
    font-size: clamp(0.68rem, 1.25vw, 0.8125rem);
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    border: 2px solid var(--point-color);
    border-radius: 999px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    transition: background 0.2s ease, color 0.2s ease;
}

.cmap__point:hover .cmap__point-pill {
    background: var(--point-color);
    color: #fff;
}

.cmap__point-node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.1rem, 4vw, 2.75rem);
    height: clamp(2.1rem, 4vw, 2.75rem);
    border-radius: 50%;
    background: var(--point-color);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.78rem, 1.45vw, 1.05rem);
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(15,23,42,0.12);
    opacity: 0;
    flex-shrink: 0;
}

.cmap--live .cmap__point-node {
    animation: cmap-node-pop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) calc(var(--point-delay, 0.15s) + 0.05s) forwards;
}

.cmap__point--c1 { --point-color: #9333ea; }
.cmap__point--c2 { --point-color: #a78bfa; }
.cmap__point--c3 { --point-color: #ec4899; }
.cmap__point--c4 { --point-color: #f43f5e; }
.cmap__point--c5 { --point-color: #f97316; }
.cmap__point--c6 { --point-color: #eab308; }
.cmap__point--c7 { --point-color: #84cc16; }
.cmap__point--c8 { --point-color: #14b8a6; }
.cmap__point--c9 { --point-color: #3b82f6; }

/* ── Mobile mind map hub (hidden on desktop) ── */
.cmap__hub-mobile {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .cmap--live .cmap__wave-path,
    .cmap--live .cmap__point,
    .cmap--live .cmap__point-node {
        animation: none !important;
        opacity: 1;
    }

    .cmap__wave-path {
        stroke-dashoffset: 0;
    }

    .cmap__point {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════════
   OUR PRODUCTS — journey cards
   ══════════════════════════════════════════ */
.products-roadmap {
    padding: 5.5rem 2rem 5.5rem;
    background: #f8fafc;
}

.products-roadmap__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.products-roadmap__header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.products-roadmap__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.65rem;
}

.products-roadmap__title-accent {
    background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.products-roadmap__sub {
    font-family: "Inter", sans-serif;
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-roadmap__viewport {
    position: relative;
}

.products-roadmap__track {
    --flow-offset: 2.5rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: flex-start;
    gap: clamp(0.75rem, 1.25vw, 1.15rem);
    padding-top: var(--flow-offset);
    padding-bottom: 3.5rem;
    min-height: 480px;
}

.products-roadmap__flow {
    position: absolute;
    left: 0;
    right: 0;
    top: 295px;
    height: 200px;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.products-roadmap__flow path {
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 2;
    stroke-dasharray: 4 6;
    stroke-linecap: round;
    opacity: 0.9;
}

.products-roadmap__step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(var(--p-stagger, 0px));
}

.products-roadmap__step--1 {
    --p-color: var(--orange);
    --p-color-light: var(--orange-light);
    --p-shadow: rgba(249, 115, 22, 0.16);
    --p-stagger: 59px;
}

.products-roadmap__step--2 {
    --p-color: var(--purple);
    --p-color-light: #f5f3ff;
    --p-shadow: rgba(124, 58, 237, 0.16);
    --p-stagger: 20px;
}

.products-roadmap__step--3 {
    --p-color: var(--blue);
    --p-color-light: #eff6ff;
    --p-shadow: rgba(59, 130, 246, 0.16);
    --p-stagger: 0px;
}

.products-roadmap__step--4 {
    --p-color: var(--teal);
    --p-color-light: #f0fdfa;
    --p-shadow: rgba(20, 184, 166, 0.16);
    --p-stagger: 0px;
}

.products-roadmap__step--5 {
    --p-color: var(--indigo);
    --p-color-light: #eef2ff;
    --p-shadow: rgba(79, 70, 229, 0.16);
    --p-stagger: 20px;
}

.products-roadmap__step--6 {
    --p-color: var(--orange-dark);
    --p-color-light: var(--orange-light);
    --p-shadow: rgba(234, 108, 10, 0.16);
    --p-stagger: 59px;
}

.products-roadmap__card {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 1.75rem 1.15rem 2.25rem;
    text-align: center;
}

.products-roadmap__step:hover .products-roadmap__card {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--p-color) 40%, #e2e8f0);
    box-shadow:
        0 12px 20px -3px var(--p-shadow),
        0 4px 6px -2px var(--p-shadow);
}

.products-roadmap__pill {
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background: var(--p-color);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.products-roadmap__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.products-roadmap__body h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.products-roadmap__body p {
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-roadmap__hexagon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 69px;
    filter: drop-shadow(0 4px 8px var(--p-shadow));
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 4;
}

.products-roadmap__step:hover .products-roadmap__hexagon {
    transform: translate(-50%, 50%) scale(1.08);
}

.products-roadmap__hexagon-bg {
    width: 100%;
    height: 100%;
    display: block;
}

.products-roadmap__hexagon-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.products-roadmap__hexagon-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff !important;
}

.products-roadmap__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
    z-index: 3;
    pointer-events: none;
}

.products-roadmap__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--p-color);
    box-shadow: 0 0 0 4px #ffffff, 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-roadmap__step:hover .products-roadmap__dot {
    transform: scale(1.25);
    box-shadow: 0 0 0 5px #ffffff, 0 6px 14px var(--p-shadow);
}

.products-roadmap__num {
    margin-top: 0.65rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
    line-height: 1;
}


/* ══════════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════════ */
.industries {
    padding: 4.5rem 2rem;
    background: #fff;
    border-top: 1px solid var(--border);
}

.industries__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.industries__header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.industries__title {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.75rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.industries__title-mark {
    display: inline-block;
    width: 2.25rem;
    height: 0.28rem;
    border-radius: 999px;
    background: var(--orange);
    flex-shrink: 0;
}

.industries__title-accent {
    background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.industries__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.industries__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0.75rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-cream);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industries__item:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--item-color, var(--orange)) 30%, var(--border));
    box-shadow: 0 10px 28px color-mix(in srgb, var(--item-color, var(--orange)) 10%, transparent);
}

.industries__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.industries__icon {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(1);
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.industries__item:hover .industries__icon {
    opacity: 0.95;
    filter: grayscale(0);
}

.industries__label {
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--item-color, var(--dark));
    text-align: center;
    line-height: 1.2;
}

.industries__item--textile { --item-color: var(--orange); }
.industries__item--transport { --item-color: #44425c; }
.industries__item--chemical { --item-color: #c2410c; }
.industries__item--travel { --item-color: var(--orange); }
.industries__item--medical { --item-color: var(--indigo-dark); }
.industries__item--accounting { --item-color: #dc2626; }

@media (max-width: 1100px) {
    .industries__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .industries {
        padding: 3.5rem 1.25rem;
    }

    .industries__header {
        margin-bottom: 2rem;
    }

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

    .industries__item {
        padding: 1.25rem 0.65rem 1.1rem;
    }

    .industries__icon-wrap {
        width: 4.75rem;
        height: 4.75rem;
    }

    .industries__icon {
        width: 2.75rem;
        height: 2.75rem;
    }
}

@media (max-width: 720px) {
    .cmap {
        padding: 2.5rem 0 2rem;
        background: #fff;
    }

    .cmap .services__header {
        display: block;
        margin-bottom: 1.35rem;
        padding: 0 0.25rem;
    }

    .cmap .services__title {
        font-size: clamp(1.55rem, 6vw, 1.9rem);
    }

    .cmap .services__sub {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .cmap__inner {
        padding: 0 0.65rem;
    }

    .cmap__timeline-scroll {
        width: 100%;
        overflow: visible;
        height: auto;
    }

    .cmap__timeline {
        position: relative;
        width: min(100%, 420px);
        aspect-ratio: 1;
        min-height: min(95vw, 420px);
        margin: 0 auto;
        display: block;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        transform: none;
        overflow: visible;
    }

    .cmap__wave {
        display: none;
    }

    .cmap__hub-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 3;
        width: 4.75rem;
        padding: 0.25rem 0;
    }

    .cmap__hub-mobile-icon svg {
        width: 28px;
        height: 28px;
    }

    .cmap__hub-mobile-icon {
        margin-bottom: 0.35rem;
    }

    .cmap__hub-mobile-title {
        font-family: "Montserrat", sans-serif;
        font-size: 0.78rem;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: 0.02em;
        color: #111827;
        text-transform: uppercase;
        margin: 0;
    }

    .cmap__hub-mobile-title span {
        color: var(--orange);
    }

    .cmap__hub-mobile-brush {
        display: block;
        width: 2.6rem;
        height: 0.35rem;
        margin: 0.28rem auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(249, 115, 22, 0.55) 0%, rgba(251, 191, 36, 0.45) 100%);
        transform: rotate(-2deg);
    }

    .cmap__btn-wrap {
        margin-top: 1.5rem;
    }

    .cmap__point {
        --mm-r: clamp(152px, 46vw, 172px);
        position: absolute;
        left: 50%;
        top: 50%;
        width: clamp(68px, 20vw, 82px);
        height: auto;
        opacity: 1;
        pointer-events: auto;
        display: block;
        padding: 0.32rem 0.22rem;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 2;
        transform:
            translate(-50%, -50%)
            rotate(var(--mm-angle))
            translateY(calc(-1 * var(--mm-r)))
            rotate(calc(-1 * var(--mm-angle)));
    }

    .cmap__timeline > .cmap__point:nth-child(3)  { --mm-angle: -90deg; }
    .cmap__timeline > .cmap__point:nth-child(4)  { --mm-angle: -50deg; }
    .cmap__timeline > .cmap__point:nth-child(5)  { --mm-angle: -10deg; }
    .cmap__timeline > .cmap__point:nth-child(6)  { --mm-angle: 30deg; }
    .cmap__timeline > .cmap__point:nth-child(7)  { --mm-angle: 70deg; }
    .cmap__timeline > .cmap__point:nth-child(8)  { --mm-angle: 110deg; }
    .cmap__timeline > .cmap__point:nth-child(9)  { --mm-angle: 150deg; }
    .cmap__timeline > .cmap__point:nth-child(10) { --mm-angle: 190deg; }
    .cmap__timeline > .cmap__point:nth-child(11) { --mm-angle: 230deg; }

    .cmap__point::before {
        content: "";
        position: absolute;
        left: 0.1rem;
        right: 0.1rem;
        top: 0.22rem;
        bottom: 0.22rem;
        z-index: -1;
        border-radius: 3px;
        background: repeating-linear-gradient(
            180deg,
            var(--mm-stroke, rgba(147, 51, 234, 0.2)) 0 5px,
            transparent 5px 9px
        );
        transform: rotate(-1.5deg);
    }

    .cmap__point--c1 { --mm-stroke: rgba(147, 51, 234, 0.22); }
    .cmap__point--c2 { --mm-stroke: rgba(167, 139, 250, 0.24); }
    .cmap__point--c3 { --mm-stroke: rgba(236, 72, 153, 0.22); }
    .cmap__point--c4 { --mm-stroke: rgba(244, 63, 94, 0.22); }
    .cmap__point--c5 { --mm-stroke: rgba(249, 115, 22, 0.24); }
    .cmap__point--c6 { --mm-stroke: rgba(234, 179, 8, 0.26); }
    .cmap__point--c7 { --mm-stroke: rgba(132, 204, 22, 0.24); }
    .cmap__point--c8 { --mm-stroke: rgba(20, 184, 166, 0.22); }
    .cmap__point--c9 { --mm-stroke: rgba(59, 130, 246, 0.22); }

    .cmap__point-stem,
    .cmap__point-anchor {
        display: none;
    }

    .cmap__point-content {
        position: static !important;
        transform: none !important;
        width: auto !important;
        top: auto !important;
        bottom: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.12rem;
        text-align: center;
        overflow: visible;
        padding: 0;
    }

    .cmap__point--trough .cmap__point-content {
        flex-direction: column;
    }

    .cmap__point-pill {
        order: -1;
        background: transparent;
        border: none;
        padding: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 0.52rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #111827;
        line-height: 1.2;
        white-space: normal;
        text-align: inherit;
        max-width: 100%;
    }

    .cmap__point-desc {
        font-family: "Inter", sans-serif;
        font-size: 0.48rem;
        line-height: 1.4;
        color: #475569;
        margin: 0;
    }

    .cmap__point:hover .cmap__point-pill {
        background: transparent;
        color: #111827;
    }

    .cmap--live .cmap__point {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .products-roadmap__track {
        gap: 0.5rem;
        min-height: auto;
    }

    .products-roadmap__card {
        min-height: 240px;
        padding: 1.5rem 0.85rem 2rem;
    }

    .products-roadmap__body h3 {
        font-size: 0.95rem;
    }

    .products-roadmap__body p {
        font-size: 0.78rem;
    }
}

@media (max-width: 980px) {
    .products-roadmap__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3rem 1rem;
        min-height: auto;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .products-roadmap__step {
        --p-stagger: 0px !important;
        transform: none !important;
    }

    .products-roadmap__flow {
        display: none;
    }

    .products-roadmap__card {
        min-height: 200px;
    }

    .products-roadmap__node {
        margin-top: 2.5rem;
    }
}

@media (max-width: 640px) {
    .products-roadmap {
        padding: 3.5rem 1rem 3.25rem;
    }

    .products-roadmap__header {
        margin-bottom: 2rem;
    }

    .products-roadmap__title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    .products-roadmap__sub {
        font-size: 0.875rem;
        padding: 0 0.25rem;
    }

    .products-roadmap__viewport {
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .products-roadmap__track {
        --flow-offset: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
        max-width: 440px;
        margin: 0 auto;
        gap: 2.5rem 0.75rem;
        min-height: auto;
        padding: 0.25rem 0 1rem;
    }

    .products-roadmap__flow {
        display: none;
    }

    .products-roadmap__step {
        transform: none !important;
        --p-stagger: 0px !important;
    }

    .products-roadmap__card {
        min-height: 148px;
        padding: 1rem 0.6rem 1.45rem;
        border-radius: 12px;
    }

    .products-roadmap__step:hover .products-roadmap__card {
        transform: translateY(-4px);
    }

    .products-roadmap__pill {
        width: 24px;
        height: 5px;
        margin-bottom: 0.65rem;
    }

    .products-roadmap__body h3 {
        font-size: 0.82rem;
        margin-bottom: 0.4rem;
    }

    .products-roadmap__body p {
        font-size: 0.65rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }

    .products-roadmap__hexagon {
        width: 42px;
        height: 48px;
    }

    .products-roadmap__hexagon-icon svg {
        width: 16px;
        height: 16px;
    }

    .products-roadmap__node {
        margin-top: 2.1rem;
    }

    .products-roadmap__dot {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 3px #ffffff, 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .products-roadmap__num {
        font-size: 0.72rem;
        margin-top: 0.4rem;
    }
}

@media (max-width: 380px) {
    .cmap__timeline {
        width: min(100%, 380px);
        min-height: min(96vw, 380px);
    }

    .cmap__point {
        --mm-r: clamp(142px, 44vw, 158px);
        width: clamp(62px, 19vw, 76px);
    }

    .cmap__hub-mobile-title {
        font-size: 0.72rem;
    }

    .cmap__point-pill {
        font-size: 0.48rem;
    }

    .cmap__point-desc {
        font-size: 0.44rem;
    }
}



/* ══════════════════════════════════════════
   HOME — VISION / MISSION / TEAM  cards
   ══════════════════════════════════════════ */
.vmt {
    padding: clamp(4.5rem, 8vw, 6.5rem) 2rem;
    background: var(--bg-cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Background soft decorative mesh glow */
.vmt::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.02) 0%, rgba(124, 58, 237, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.vmt__header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.vmt__subtitle {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.vmt__section-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.vmt__title-accent {
    background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.vmt__section-desc {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: var(--muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 560px;
}

.vmt__carousel {
    position: relative;
    z-index: 2;
    max-width: 1060px;
    margin: 0 auto;
}

.vmt__viewport {
    outline: none;
}

.vmt__controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.vmt__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.vmt__dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 999px;
    padding: 0;
    background: #d1d5db;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.vmt__dot.is-active {
    width: 22px;
    background: var(--orange);
}

.vmt__arrow {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vmt__arrow:hover,
.vmt__arrow:focus-visible {
    border-color: var(--orange);
    color: var(--orange);
    outline: none;
}

.vmt__arrow:active {
    transform: scale(0.96);
}

.vmt__inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.vmt__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vmt__card:hover {
    border-color: color-mix(in srgb, var(--card-theme) 40%, var(--border));
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06),
                0 8px 24px var(--card-theme-glow);
}

/* Card variables for theme matching */
.vmt__card--orange {
    --card-theme: var(--orange);
    --card-theme-light: var(--orange-light);
    --card-theme-dark: var(--orange-dark);
    --card-theme-glow: rgba(249, 115, 22, 0.16);
}

.vmt__card--blue {
    --card-theme: var(--blue);
    --card-theme-light: #eff6ff;
    --card-theme-dark: var(--blue-dark);
    --card-theme-glow: rgba(59, 130, 246, 0.16);
}

.vmt__card--purple {
    --card-theme: var(--purple);
    --card-theme-light: #f5f3ff;
    --card-theme-dark: #6d28d9;
    --card-theme-glow: rgba(124, 58, 237, 0.16);
}

/* Top gradient accent bar */
.vmt__card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-theme) 0%, var(--card-theme-dark) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: height 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vmt__card:hover::before {
    height: 6px;
}

/* Icon Box styling & hover micro-animation */
.vmt__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--card-theme-light);
    border: 1px solid rgba(229, 231, 235, 0.4);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.3s ease,
                box-shadow 0.3s ease;
}

.vmt__card:hover .vmt__icon {
    background: var(--card-theme);
    box-shadow: 0 8px 16px var(--card-theme-glow);
    transform: scale(1.1) rotate(6deg);
}

.vmt__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--card-theme) !important;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.vmt__card:hover .vmt__icon svg {
    stroke: #ffffff !important;
    transform: scale(1.05);
}

/* Body & Typography */
.vmt__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vmt__title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--card-theme-dark);
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.vmt__text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 860px) {
    .vmt__inner { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 640px) {
    .vmt__inner {
        display: flex;
        grid-template-columns: unset;
        max-width: none;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .vmt__viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -0.5rem;
        padding: 0.35rem 0.5rem 0.15rem;
    }

    .vmt__viewport::-webkit-scrollbar {
        display: none;
    }

    .vmt__card {
        flex: 0 0 min(88vw, 320px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .vmt__controls {
        display: flex;
    }
}

@media (max-width: 560px) {
    .vmt { padding: 3.5rem 1.25rem; }
    .vmt__card { padding: 2.25rem 1.5rem; }
}

/* ── Gradient Underline for Headers ── */
.about-hero h1,
.contact-hero h1,
.svc-hero h1,
.sp-hero h1,
.about-story__title,
.about-values__title,
.about-achievements h2,
.why-choose__title,
.products-roadmap__title,
.services__title,
.industries__title,
.vmt__section-title,
.products__title {
    position: relative;
    display: inline-block;
    padding-bottom: 1.25rem;
}

.about-hero h1::after,
.contact-hero h1::after,
.svc-hero h1::after,
.sp-hero h1::after,
.about-story__title::after,
.about-values__title::after,
.about-achievements h2::after,
.why-choose__title::after,
.products-roadmap__title::after,
.services__title::after,
.industries__title::after,
.vmt__section-title::after,
.products__title::after,
.svc-compare__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #00a8cc 100%);
    border-radius: 2px;
}

/* ── Comparison Table ── */
.svc-compare {
    padding: 5.5rem 3rem;
    background: var(--bg-white);
}
.svc-compare__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.svc-compare__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.svc-compare__title {
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}
.svc-compare__title span {
    color: var(--orange);
}
.svc-compare__sub {
    font-size: 0.975rem;
    color: var(--muted);
    max-width: 560px;
    margin: 1.25rem auto 0;
    line-height: 1.7;
}
.svc-compare__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.svc-compare__table {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.svc-compare__row {
    display: grid;
    grid-template-columns: 25% 37.5% 37.5%;
    border-bottom: 1px solid var(--border);
}
.svc-compare__row:last-child {
    border-bottom: none;
}
.svc-compare__row--header {
    background: #faf8f5;
    border-bottom: 1px solid var(--border);
}
.svc-compare__cell {
    padding: 1.75rem 2rem;
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--dark);
    display: flex;
    align-items: center;
}
.svc-compare__row--header .svc-compare__cell {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    padding: 1.25rem 2rem;
}
.svc-compare__cell--area {
    font-weight: 700;
    color: var(--dark);
}
.svc-compare__cell--traditional {
    color: var(--muted);
    border-right: 1px solid var(--border);
}
.svc-compare__cell--advantage {
    background: #fffbf7;
    font-weight: 500;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding-left: 2.5rem;
}
.svc-compare__row--header .svc-compare__cell--advantage {
    background: #fdf8f2;
    font-weight: 700;
}
.svc-compare__check {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.svc-compare__cell--advantage strong {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 960px) {
    .svc-compare__row {
        grid-template-columns: 26% 37% 37%;
    }
    .svc-compare__row:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }
    .svc-compare__row--header {
        display: grid;
    }
    .svc-compare__cell {
        padding: 0.7rem 0.55rem;
        font-size: 0.72rem;
        line-height: 1.45;
        display: flex;
        align-items: flex-start;
        min-width: 0;
        overflow-wrap: break-word;
    }
    .svc-compare__row--header .svc-compare__cell {
        font-size: 0.58rem;
        padding: 0.55rem 0.5rem;
        letter-spacing: 0.03em;
        align-items: center;
    }
    .svc-compare__cell--area {
        background: transparent;
        font-size: 0.72rem;
        border-bottom: none;
        padding: 0.7rem 0.55rem;
    }
    .svc-compare__cell--traditional {
        border-right: 1px solid var(--border);
        border-bottom: none;
        font-size: 0.72rem;
    }
    .svc-compare__cell--traditional::before,
    .svc-compare__cell--advantage::before {
        display: none;
        content: none;
    }
    .svc-compare__cell--advantage {
        background: #fffbf7;
        padding: 0.7rem 0.55rem;
        display: flex;
        gap: 0.35rem;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    .svc-compare__check {
        width: 15px;
        height: 15px;
        margin-top: 0.05rem;
        grid-column: unset;
        grid-row: unset;
    }
    .svc-compare__check svg {
        width: 15px;
        height: 15px;
    }
    .svc-compare__cell--advantage strong {
        font-size: 0.72rem;
        line-height: 1.45;
        grid-column: unset;
        grid-row: unset;
        flex: 1;
        min-width: 0;
    }
}
@media (max-width: 640px) {
    .svc-compare { padding: 3.5rem 0.75rem; }
    .svc-compare__header { margin-bottom: 2rem; }
    .svc-compare__title {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        padding-bottom: 0.85rem;
    }
    .svc-compare__sub {
        font-size: 0.82rem;
        padding: 0 0.15rem;
    }
    .svc-compare__table {
        border-radius: var(--radius-md);
        min-width: 100%;
    }
    .svc-compare__row {
        grid-template-columns: 23% 38.5% 38.5%;
    }
    .svc-compare__cell {
        padding: 0.5rem 0.38rem;
        font-size: 0.6rem;
        line-height: 1.38;
    }
    .svc-compare__row--header .svc-compare__cell {
        font-size: 0.5rem;
        padding: 0.42rem 0.35rem;
        letter-spacing: 0.02em;
    }
    .svc-compare__cell--area {
        font-size: 0.6rem;
        padding: 0.5rem 0.38rem;
    }
    .svc-compare__cell--traditional {
        font-size: 0.6rem;
    }
    .svc-compare__cell--advantage {
        padding: 0.5rem 0.38rem;
        gap: 0.28rem;
    }
    .svc-compare__check {
        width: 12px;
        height: 12px;
    }
    .svc-compare__check svg {
        width: 12px;
        height: 12px;
    }
    .svc-compare__cell--advantage strong {
        font-size: 0.6rem;
        line-height: 1.38;
    }
}
