/* ============================================================
   Happy Ecom — Modern Corporate Redesign
   ============================================================ */
:root {
  --navy: #0b1f3a;
  --navy-800: #10294a;
  --navy-700: #16345c;
  --accent: #f5a623;
  --accent-dark: #f76b1c;
  --ink: #1c2733;
  --muted: #5b6b7c;
  --line: #e6ebf1;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.14);
  --grad: linear-gradient(135deg, #f5a623 0%, #f76b1c 100%);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --header-pad-y: 14px;
  --header-logo-h: 42px;
  --header-min-h: 70px;
  --nav-link-size: 15px;
  --nav-link-weight: 500;
  --nav-cta-size: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; font-family: var(--font-head);
  transition: all .25s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(247, 107, 28, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(247, 107, 28, .45); }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: var(--header-pad-y) 0;
  min-height: var(--header-min-h);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header .container.nav-wrap,
.site-header > .container { width: min(1180px, 92%); margin: 0 auto; }
.site-header.scrolled,
.site-header.header-solid {
  background: rgba(255, 255, 255, .97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(11, 31, 58, .08);
  padding: var(--header-pad-y) 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo img { height: var(--header-logo-h); width: auto; }
.logo .logo-dark { display: none; }
.site-header.scrolled .logo .logo-light,
.site-header.header-solid .logo .logo-light { display: none; }
.site-header.scrolled .logo .logo-dark,
.site-header.header-solid .logo .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.site-header .nav-links a:not(.btn) {
  font-family: var(--font-head) !important;
  font-size: var(--nav-link-size) !important;
  font-weight: var(--nav-link-weight) !important;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.site-header .nav-links a.active:not(.btn) {
  font-weight: var(--nav-link-weight) !important;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent); transition: width .25s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.site-header.scrolled .nav-links a, .header-solid .nav-links a { color: var(--navy); }
.site-header.scrolled .nav-links a.active, .header-solid .nav-links a.active { color: var(--accent-dark); }
.nav-cta { margin-left: 10px; }
.site-header .nav-links .btn.nav-cta {
  padding: 10px 22px;
  font-family: var(--font-head) !important;
  font-size: var(--nav-cta-size) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}
/* CTA button inside nav: always white text, never underline */
.nav-links a.btn,
.nav-links a.btn:hover,
.site-header.scrolled .nav-links a.btn,
.header-solid .nav-links a.btn { color: #fff !important; }
.nav-links a.btn::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100;
}
.hamburger span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: all .3s; }
.site-header.scrolled .hamburger span,
.site-header.header-solid .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(245,166,35,.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(247,107,28,.12), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 55%, #142e52 100%);
  color: #fff; overflow: hidden; padding: 140px 0 90px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .5;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.14); border: 1px solid rgba(245,166,35,.4);
  color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; color: #fff; margin-bottom: 20px; }
.hero h1 .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.13rem; color: #b9c6d8; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 28px; backdrop-filter: blur(8px);
}
.hero-card h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; opacity: .85; }
.hero-stat-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-ico {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(245,166,35,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stat-ico svg { width: 20px; height: 20px; stroke: var(--accent); }
.hero-stat-row b { color: #fff; font-size: 15px; display: block; }
.hero-stat-row span { color: #93a5bc; font-size: 13px; }

/* ---------- Stats bar ---------- */
.stats-bar { background: #fff; position: relative; z-index: 5; margin-top: -60px; }
.stats-inner {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 34px 20px; gap: 10px;
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--navy); }
.stat .num em { color: var(--accent-dark); font-style: normal; }
.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-block; color: var(--accent-dark); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-head);
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: all .3s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.card:hover::before { transform: scaleX(1); }
.card-ico {
  width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(245,166,35,.14), rgba(247,107,28,.1));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-ico svg { width: 27px; height: 27px; stroke: var(--accent-dark); }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }
.card .link-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--accent-dark); font-weight: 600; font-size: .9rem; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-visual {
  border-radius: 20px; overflow: hidden; position: relative; min-height: 380px;
  background: linear-gradient(160deg, var(--navy), var(--navy-700));
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.split-visual .big-emoji { font-size: 90px; filter: drop-shadow(0 10px 25px rgba(0,0,0,.3)); }
.split-visual .badge-float {
  position: absolute; background: #fff; border-radius: 12px; padding: 12px 18px;
  box-shadow: var(--shadow-lg); font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy);
}
.split-visual .badge-float small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; }
.check-list li { display: flex; gap: 13px; margin-bottom: 16px; align-items: flex-start; }
.check-list .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--grad); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-list .tick svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 3; }
.check-list b { color: var(--navy); }
.check-list p { color: var(--muted); font-size: .93rem; }

/* ---------- Evaluate What's Possible (home) ---------- */
.evaluate-section { background: #fff; }
.evaluate-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.evaluate-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.1rem);
  font-weight: 800;
  font-style: italic;
  color: #222;
  margin-bottom: 14px;
}
.evaluate-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.evaluate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 48px;
}
.evaluate-card {
  padding: 2.5rem 0 1.5rem;
}
.evaluate-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.evaluate-card__icon {
  flex: 0 0 33%;
  max-width: 150px;
}
.evaluate-card__icon img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}
.evaluate-card__body h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  font-style: italic;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.25;
}
.evaluate-card__body p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

/* ---------- Values ---------- */
.value-card { text-align: center; padding: 40px 26px; }
.value-card .card-ico { margin: 0 auto 20px; }

/* ---------- Live hero overlay header (home + contact + about) ---------- */
@font-face {
  font-family: "PP Formula";
  src: url("../fonts/PPFormula-CondensedBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Unified dark header bar on all hero pages */
.site-header.header-overlay:not(.scrolled) {
  background: #000 !important;
  box-shadow: none;
}
.site-header.header-overlay:not(.scrolled) .logo .logo-light { display: block; }
.site-header.header-overlay:not(.scrolled) .logo .logo-dark { display: none; }
.site-header.header-overlay:not(.scrolled) .nav-links a:not(.btn) { color: #fff; }
.site-header.header-overlay:not(.scrolled) .nav-links a.active:not(.btn) { color: var(--accent); }
.site-header.header-overlay:not(.scrolled) .hamburger span { background: #fff; }

/* ---------- Home page hero (live site style) ---------- */
@keyframes home-hero-text-color {
  0%, 100% { background-color: #fff; }
  25% { background-color: #d1e532; }
  50% { background-color: #1fd0b7; }
  75% { background-color: #fff; }
}

.home-hero__inner {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}
.home-hero__banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.home-hero__media {
  position: absolute;
  inset: 0;
}
.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero__video--mobile { display: none; }
.home-hero__headline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 4%;
  font-family: "PP Formula", "Poppins", sans-serif;
  font-size: clamp(3.5rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 0.92;
  text-align: left;
  text-transform: uppercase;
  background-color: #fff;
  mix-blend-mode: screen;
  animation: home-hero-text-color 16s infinite linear;
  color: #000;
}
.home-hero__headline b { font-weight: inherit; }
.home-hero__tagline {
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 22px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 400;
  color: #222;
  line-height: 1.45;
  background: #fff;
}
.home-page .stats-bar--home {
  margin-top: 0;
  padding: 0 0 36px;
  background: #fff;
  position: relative;
  z-index: 5;
}
.home-page .stats-bar--home .container {
  width: min(1180px, 92%);
}
.home-page .stats-bar--home .stats-inner {
  box-shadow: var(--shadow-lg);
}
.home-intro {
  padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 5vw, 72px);
  background: #fff;
}
.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
}
.home-intro__col--left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home-intro__copy {
  width: 75%;
  margin-left: auto;
  text-align: right;
  padding-bottom: 30px;
}
.home-intro__copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #222;
  margin: 0;
}
.home-intro__copy p {
  margin: 15px 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  line-height: 1.65;
}
.home-intro__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
.home-intro__col--left .home-intro__img {
  /* portrait image: show in full, no crop */
  width: min(100%, 380px);
  height: auto;
  object-fit: unset;
  margin-left: auto;
}
.home-intro__img--tall {
  min-height: clamp(300px, 34vw, 460px);
  max-height: 640px;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.section--compact {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}
.home-intro + .section--compact {
  padding-top: clamp(40px, 5vw, 64px);
  background: var(--bg-soft);
}
@media (min-width: 992px) {
  .home-intro__grid { align-items: stretch; }
  .home-intro__col--right {
    display: flex;
    flex-direction: column;
  }
  .home-intro__img--tall {
    flex: 1;
    width: 100%;
  }
}
.section--compact + .evaluate-section {
  padding-top: clamp(56px, 7vw, 88px);
}

/* ---------- About page hero (live site style) ---------- */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-hero__img,
.about-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero__img--mobile,
.about-hero__video--mobile { display: none; }
.about-hero__copy {
  position: relative;
  z-index: 2;
  width: min(92%, 900px);
  padding: 130px 24px 90px;
}
.about-hero__copy h1,
.about-hero__copy h2,
.about-hero__copy h3 {
  font-family: "Playfair Display", serif;
}
.about-hero__line {
  font-size: clamp(1.5rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: #eee;
  margin: 0 0 6px;
  line-height: 1.1;
}
.about-hero__title {
  font-size: clamp(2.75rem, 8.5vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin: 0 0 16px;
  background: linear-gradient(90deg, #d1e532, #1fd0b7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about-hero__tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.about-content { padding-top: 80px; }

/* ---------- About page — Who We Are section ---------- */
.about-who {
  padding-top: clamp(64px, 8vw, 88px);
  padding-bottom: clamp(64px, 8vw, 88px);
}
.about-who__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}
.about-who__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #ff6a2b;
  margin-bottom: 18px;
}
.about-who__copy h2 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  color: #0b1220;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.about-who__copy p {
  color: #5b6470;
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 520px;
}
.about-who__copy p:last-child { margin-bottom: 0; }
.about-who__visual {
  position: relative;
  background: #0d1b33;
  border-radius: 24px;
  aspect-ratio: 16 / 11.5;
  overflow: visible;
}
.about-who__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(420px 260px at 20% 85%, rgba(196, 242, 75, 0.10), transparent 65%),
    radial-gradient(360px 260px at 85% 15%, rgba(47, 230, 201, 0.10), transparent 65%);
  pointer-events: none;
}
.about-who__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-who__float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 16px 32px rgba(10, 20, 40, 0.18);
}
.about-who__float-card b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 2px;
}
.about-who__float-card span {
  font-size: 13px;
  color: #5b6470;
}
.about-who__float-card--hq { top: -22px; right: 28px; }
.about-who__float-card--brand { bottom: -22px; left: 28px; }
.about-who__path {
  stroke-dasharray: 4 6;
  animation: about-who-dash 22s linear infinite;
}
.about-who__pulse {
  animation: about-who-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes about-who-dash { to { stroke-dashoffset: -200; } }
@keyframes about-who-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) {
  .about-who__path { animation: none; }
  .about-who__pulse { animation: none; }
}

/* ---------- About page — How We Work / Happy Ecom Model ---------- */
.about-model {
  --model-navy: #0e1a38;
  --model-navy-deep: #0a142c;
  --model-orange: #f2711c;
  --model-orange-2: #ff8a3d;
  --model-ink-0: #101c3a;
  --model-ink-1: #5b6470;
  --model-white-dim: rgba(255, 255, 255, 0.62);
  --model-white-faint: rgba(255, 255, 255, 0.38);
  position: relative;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(242, 113, 28, 0.16), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(60, 90, 170, 0.20), transparent 60%),
    linear-gradient(180deg, var(--model-navy) 0%, var(--model-navy-deep) 100%);
  padding: clamp(72px, 8vw, 96px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  font-family: "Manrope", var(--font-body), sans-serif;
}
.about-model::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black 0%, transparent 80%);
  pointer-events: none;
}
.about-model__inner {
  position: relative;
  width: min(1280px, 92%);
  margin: 0 auto;
  z-index: 2;
}
.about-model__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(64px, 8vw, 88px);
}
.about-model__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--model-orange-2);
  margin-bottom: 22px;
}
.about-model__eyebrow::before,
.about-model__eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(255, 138, 61, 0.5);
}
.about-model__title {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 22px;
}
.about-model__title em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--model-orange-2);
}
.about-model__lede {
  color: var(--model-white-dim);
  font-size: 17.5px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.about-model__flow-wrap {
  position: relative;
  padding-bottom: 110px;
}
.about-model__connector {
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
  height: calc(100% + 64px);
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}
.about-model__flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  text-align: left;
}
.about-model__step {
  position: relative;
  flex: 1;
  min-width: 0;
}
.about-model__step--2 { margin-bottom: 52px; }
.about-model__step--3 { margin-bottom: 104px; }
.about-model__card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px 30px;
  box-shadow: 0 30px 60px rgba(4, 10, 26, 0.45);
  overflow: hidden;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease;
}
.about-model__step:hover .about-model__card {
  box-shadow: 0 40px 80px rgba(4, 10, 26, 0.55);
}
.about-model__phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.about-model__step--1 .about-model__phase-tag { color: #a34a0e; background: #fdece0; }
.about-model__step--2 .about-model__phase-tag { color: #25407c; background: #e8eefb; }
.about-model__step--3 .about-model__phase-tag { color: #0e5c46; background: #e2f5ee; }
.about-model__ghost-num {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 112px;
  line-height: 1;
  color: var(--model-ink-0);
  opacity: 0.045;
  user-select: none;
  pointer-events: none;
}
.about-model__card h3 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--model-ink-0);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.about-model__card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--model-ink-1);
  margin: 0 0 22px;
  min-height: 102px;
}
.about-model__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0ece4;
  padding-top: 18px;
}
.about-model__chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--model-ink-1);
  background: #f7f4ee;
  padding: 6px 11px;
  border-radius: 7px;
  white-space: nowrap;
}
.about-model__step--1 .about-model__chip { background: #fdf3ea; color: #9c5320; }
.about-model__step--2 .about-model__chip { background: #eef2fa; color: #31508e; }
.about-model__step--3 .about-model__chip { background: #e9f6f0; color: #186a52; }
.about-model__marker {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 3px solid var(--model-navy);
  top: -26px;
  left: 32px;
}
.about-model__step--1 .about-model__marker {
  background: linear-gradient(135deg, var(--model-orange-2), var(--model-orange));
  box-shadow: 0 0 0 6px rgba(242, 113, 28, 0.15), 0 10px 24px rgba(0, 0, 0, 0.4);
}
.about-model__step--2 .about-model__marker {
  background: linear-gradient(135deg, #4a6ab8, #2c4585);
  box-shadow: 0 0 0 6px rgba(74, 106, 184, 0.15), 0 10px 24px rgba(0, 0, 0, 0.4);
}
.about-model__step--3 .about-model__marker {
  background: linear-gradient(135deg, #22b98a, #128a67);
  box-shadow: 0 0 0 6px rgba(34, 185, 138, 0.15), 0 10px 24px rgba(0, 0, 0, 0.4);
}
@media (max-width: 920px) {
  .about-model__flow {
    flex-direction: column;
    align-items: stretch;
    gap: 56px;
  }
  .about-model__step--2,
  .about-model__step--3 { margin-bottom: 0; }
  .about-model__connector { display: none; }
  .about-model__card > p { min-height: 0; }
  .about-model__head { margin-bottom: 72px; }
  .about-model__flow-wrap { padding-bottom: 72px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-model__flow-dot { display: none; }
}

.about-model + .section {
  padding-top: clamp(56px, 7vw, 96px);
  background: var(--bg);
}

/* ---------- Contact page hero (live site style) ---------- */

.contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contact-hero__img--mobile { display: none; }
.contact-hero__copy {
  position: relative;
  z-index: 2;
  text-align: right;
  width: min(92%, 640px);
  padding: 130px 6% 90px 24px;
  margin-left: auto;
}
.contact-hero__stay {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: #eee;
  margin: 0 0 6px;
  line-height: 1.1;
}
.contact-hero__connected {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.75rem, 8.5vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #d1e532, #1fd0b7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.contact-hero__with {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.contact-intro {
  padding: 72px 0 16px;
  text-align: center;
}
.contact-intro__head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.contact-intro__head p {
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-section { padding-top: 48px; }

/* ---------- Brands page hero (growth catalyst) ---------- */
.brands-page {
  --brands-bg-0: #090d10;
  --brands-bg-1: #0d1318;
  --brands-ink-0: #f4f6f4;
  --brands-ink-1: #a7b3ac;
  --brands-ink-2: #6b7770;
  --brands-orange: #ff7a33;
  --brands-lime: #c4f24b;
  --brands-teal: #2fe6c9;
  --brands-line: rgba(244, 246, 244, 0.12);
}
.brands-hero {
  position: relative;
  background: var(--brands-bg-0);
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  padding: 120px 0 64px;
  min-height: 720px;
}
.brands-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 82% 18%, rgba(255, 122, 51, 0.10), transparent 60%),
    radial-gradient(500px 500px at 78% 55%, rgba(196, 242, 75, 0.08), transparent 60%),
    radial-gradient(700px 300px at 10% 90%, rgba(47, 230, 201, 0.06), transparent 60%);
  pointer-events: none;
}
.brands-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 246, 244, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(700px 500px at 70% 40%, black, transparent 75%);
  pointer-events: none;
}
.brands-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
}
.brands-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}
.brands-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--brands-lime);
  background: rgba(196, 242, 75, 0.08);
  border: 1px solid rgba(196, 242, 75, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.brands-hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brands-lime);
  box-shadow: 0 0 8px var(--brands-lime);
}
.brands-hero__copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  color: var(--brands-ink-0);
  letter-spacing: -0.01em;
}
.brands-hero__copy h1 em {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.28em;
  line-height: 1.05;
  margin-top: 2px;
  background: linear-gradient(100deg, var(--brands-lime) 10%, var(--brands-teal) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brands-hero__sub {
  color: var(--brands-ink-1);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 440px;
  margin: 24px 0 34px;
}
.brands-hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.brands-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brands-ink-0);
  color: #0a0d0a;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.brands-hero__btn:hover {
  transform: translateY(-1px);
  background: var(--brands-lime);
}
.brands-hero__btn svg { transition: transform 0.15s ease; }
.brands-hero__btn:hover svg { transform: translateX(3px); }
.brands-hero__ghost {
  color: var(--brands-ink-1);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--brands-line);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.brands-hero__ghost:hover {
  color: var(--brands-ink-0);
  border-color: var(--brands-ink-1);
}
.brands-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--brands-line);
  max-width: 460px;
}
.brands-hero__stat b {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--brands-ink-0);
}
.brands-hero__stat span {
  font-size: 12.5px;
  color: var(--brands-ink-2);
  letter-spacing: 0.02em;
}
.brands-hero__orbit {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}
.brands-hero__orbit svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brands-orbit-spin {
  animation: brands-orbit-spin 46s linear infinite;
  transform-origin: 260px 260px;
}
.brands-orbit-spin-rev {
  animation: brands-orbit-spin-rev 60s linear infinite;
  transform-origin: 260px 260px;
}
@keyframes brands-orbit-spin { to { transform: rotate(360deg); } }
@keyframes brands-orbit-spin-rev { to { transform: rotate(-360deg); } }
@media (prefers-reduced-motion: reduce) {
  .brands-orbit-spin,
  .brands-orbit-spin-rev { animation: none; }
}
.brands-hero + .section {
  padding-top: clamp(64px, 8vw, 96px);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(245,166,35,.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 70%, #142e52 100%);
  color: #fff; padding: 170px 0 90px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: #b9c6d8; max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { margin-top: 22px; font-size: 14px; color: #8fa2ba; }
.breadcrumb a { color: var(--accent); }

/* ---------- Services page ---------- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: none; }
.service-block.rev .service-text { order: 2; }
.service-block.rev .service-art { order: 1; }
.service-art {
  border-radius: 18px; min-height: 300px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, rgba(245,166,35,.1), rgba(11,31,58,.05));
  border: 1px solid var(--line);
}
.service-art svg { width: 110px; height: 110px; stroke: var(--accent-dark); opacity: .9; }
.service-text .kicker { margin-bottom: 8px; }
.service-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-text p { color: var(--muted); margin-bottom: 16px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill {
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy);
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 500;
}
.self-use-note {
  background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(247,107,28,.06));
  border: 1px solid rgba(245,166,35,.35); border-radius: var(--radius);
  padding: 26px 30px; margin-top: 10px; display: flex; gap: 18px; align-items: flex-start;
}
.self-use-note svg { width: 28px; height: 28px; stroke: var(--accent-dark); flex-shrink: 0; margin-top: 3px; }
.self-use-note b { color: var(--navy); }
.self-use-note p { color: var(--muted); font-size: .95rem; }

/* ---------- Brands / Partners ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  min-height: 96px; display: flex; align-items: center; justify-content: center;
  padding: 16px 14px; transition: box-shadow .3s, transform .3s;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.06);
  overflow: hidden; min-width: 0; position: relative; isolation: isolate;
}
.brand-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-tile.reveal { opacity: 0; transform: none; transition: opacity .55s ease; }
.brand-tile.reveal.visible { opacity: 1; }
.brand-tile.reveal.visible:hover { transform: translateY(-3px); }
.brand-tile img {
  display: block; width: auto; height: auto; max-width: 86%; max-height: 54px;
  object-fit: contain; object-position: center; margin: 0 auto; min-width: 0;
  image-rendering: -webkit-optimize-contrast;
}
/* Wide horizontal wordmarks */
.brand-tile--wide img {
  max-width: 94%; max-height: 46px;
}
.brand-tile--wide-xl img {
  max-width: 96%; max-height: 42px;
}
/* Logos that read small at default size */
.brand-tile--boost:not(.brand-tile--wide):not(.brand-tile--wide-xl) img {
  max-width: 84%; max-height: 60px;
}
.brand-tile--wide.brand-tile--boost img {
  max-width: 94%; max-height: 48px;
}
/* Square / badge logos */
.brand-tile--badge img {
  max-width: 84%; max-height: 60px;
}
.brand-tile--badge.brand-tile--boost img {
  max-width: 86%; max-height: 62px;
}
/* Legacy compact — only Amazon Now */
.brand-tile--compact img {
  max-width: 68%; max-height: 50px;
}
/* Bikaji — trimmed badge, needs more presence in tile */
.brand-tile--bikaji img {
  max-width: 90%; max-height: 62px;
}
/* JK Tyre — wide wordmark with tagline */
.brand-tile--jk-tyre img {
  max-width: 96%; max-height: 46px;
}
.brand-tile--wide-xl.brand-tile--jk-tyre img {
  max-width: 96%; max-height: 46px;
}
/* WishCareBD — full banner with tagline + gradient */
.brand-tile--wishcare img {
  max-width: 98%; max-height: 68px;
}
/* Flipkart Minutes — rounded badge wordmark */
.brand-tile--flipkart-minutes img {
  max-width: 94%; max-height: 64px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px 34px; }
.info-card h3 { color: #fff; margin-bottom: 8px; }
.info-card > p { color: #b9c6d8; margin-bottom: 28px; font-size: .95rem; }
.info-row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-row .ico {
  width: 44px; height: 44px; border-radius: 11px; background: rgba(245,166,35,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-row .ico svg { width: 21px; height: 21px; stroke: var(--accent); }
.info-row b { display: block; font-size: 15px; margin-bottom: 3px; }
.info-row p, .info-row a { color: #b9c6d8; font-size: 14px; }
.info-row a:hover { color: var(--accent); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,.15); background: #fff;
}
.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 14px; }
.form-status.ok { display: block; background: #e8f7ee; color: #16794c; border: 1px solid #bfe8d2; font-weight: 500; line-height: 1.5; }
.form-status.err { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; font-weight: 500; line-height: 1.5; }
.form-submit-btn:disabled { opacity: 0.72; cursor: not-allowed; }
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
.form-card form,
.form-card--v2 form { position: relative; }
.form-submit-btn.is-loading { opacity: 0.72; pointer-events: none; }

/* ---------- CTA band ---------- */
/* ---------- FAQ accordion ---------- */
.home-faq {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 31, 58, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(245, 166, 35, 0.45);
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-question span { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: var(--gold, #f5a623);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
}
.faq-answer p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-question:hover { color: var(--navy-700, #0b1f3a); }
.faq-question:focus-visible {
  outline: 2px solid var(--gold, #f5a623);
  outline-offset: -2px;
  border-radius: 14px;
}
@media (max-width: 600px) {
  .faq-question { padding: 18px 16px; font-size: 1rem; }
  .faq-answer { padding: 0 16px 18px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(245,166,35,.22), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-700));
  border-radius: 22px; padding: 64px 56px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.cta-band p { color: #b9c6d8; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.4rem; margin: 42px 0 14px; }
.legal-wrap h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--muted); margin-bottom: 12px; font-size: .98rem; }
.legal-wrap ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-updated { font-size: 14px; color: var(--muted); font-style: italic; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: #081831; color: #a7b6ca; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.site-footer .logo img { height: 40px; margin-bottom: 18px; }
.site-footer p { font-size: 14px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 13px; font-size: 14px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; stroke: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--accent); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.social-row a:hover { background: var(--grad); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; stroke: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13.5px;
}
.footer-bottom a { color: #a7b6ca; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-grid, .split, .service-block, .contact-grid, .evaluate-grid { grid-template-columns: 1fr; }
  .service-block.rev .service-text { order: 1; }
  .service-block.rev .service-art { order: 2; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 480px; }
  .contact-hero { min-height: 88vh; }
  .contact-hero__img--desktop { display: none; }
  .contact-hero__img--mobile { display: block; }
  .contact-hero__copy { padding: 120px 5% 80px 16px; }
  .about-hero { min-height: 88vh; }
  .about-hero__video--desktop { display: none; }
  .about-hero__img--mobile { display: block; }
  .about-hero__copy { padding: 120px 20px 80px; }
  .home-hero__video--desktop { display: none; }
  .home-hero__video--mobile { display: block; }
  .home-hero__headline { font-size: clamp(2.75rem, 22vw, 8rem); padding-top: 80px; }
  .home-intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .home-intro__copy {
    width: 100%;
    margin-left: 0;
    text-align: left;
    padding-bottom: 24px;
  }
  .home-intro__img--tall { min-height: 300px; }
  .brands-hero__grid { grid-template-columns: 1fr; }
  .brands-hero__orbit { max-width: 340px; margin-top: 36px; }
  .brands-hero__stats { gap: 28px; }
  .brands-hero { padding: 100px 0 48px; min-height: auto; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-min-h) + 16px) 0 32px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1050;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-family: var(--font-head) !important;
    font-size: var(--nav-link-size) !important;
    font-weight: var(--nav-link-weight) !important;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: #fff !important;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: left;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a.active {
    color: var(--accent) !important;
    background: rgba(245, 166, 35, 0.12);
    border-left: 3px solid var(--accent);
    padding-left: 25px;
  }
  .nav-links .nav-cta {
    margin: 20px 28px 0;
    width: auto;
    align-self: stretch;
    justify-content: center;
    padding: 14px 24px !important;
    font-family: var(--font-head) !important;
    font-size: var(--nav-cta-size) !important;
    font-weight: 600 !important;
    border-bottom: none;
    border-radius: 999px;
  }
  .site-header.scrolled .nav-links a,
  .site-header.header-solid .nav-links a { color: #fff !important; }
  .site-header.scrolled .nav-links a.active,
  .site-header.header-solid .nav-links a.active { color: var(--accent) !important; }
  .hamburger.open span { background: var(--navy); }
  .site-header:not(.scrolled):not(.header-solid) .hamburger.open span { background: #fff; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .contact-hero { min-height: 82vh; }
  .contact-hero__copy {
    width: 100%;
    text-align: right;
    padding: 110px 20px 64px;
  }
  .about-hero { min-height: 82vh; }
  .about-hero__copy { padding: 110px 20px 64px; }
  .home-hero__inner { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; }
  .home-hero__headline { font-size: clamp(2.5rem, 28vw, 7rem); }
  .about-content { padding-top: 56px; }
  .about-who__grid { grid-template-columns: 1fr; gap: 56px; }
  .about-who__visual { aspect-ratio: 16 / 13; margin-top: 12px; }
  .about-who__float-card { padding: 11px 16px; }
  .about-who__float-card--hq { top: -16px; right: 16px; }
  .about-who__float-card--brand { bottom: -16px; left: 16px; }
  .evaluate-card { padding: 1.5rem 0; }
  .evaluate-card__inner { flex-direction: column; align-items: center; text-align: center; }
  .evaluate-card__icon { flex: none; max-width: 120px; }
  .evaluate-card__body h3 { font-size: 1.35rem; }
  .contact-intro { padding: 56px 0 8px; }
  .contact-section { padding-top: 36px; }
  .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-tile { min-height: 84px; padding: 12px 10px; }
  .brand-tile img { max-width: 84%; max-height: 46px; }
  .brand-tile--wide img { max-width: 92%; max-height: 40px; }
  .brand-tile--wide-xl img { max-width: 94%; max-height: 36px; }
  .brand-tile--boost:not(.brand-tile--wide):not(.brand-tile--wide-xl) img {
    max-width: 82%; max-height: 52px;
  }
  .brand-tile--wide.brand-tile--boost img { max-width: 92%; max-height: 42px; }
  .brand-tile--badge img { max-width: 82%; max-height: 52px; }
  .brand-tile--badge.brand-tile--boost img { max-width: 84%; max-height: 54px; }
  .brand-tile--compact img { max-height: 44px; max-width: 64%; }
  .brand-tile--bikaji img { max-width: 88%; max-height: 54px; }
  .brand-tile--jk-tyre img { max-width: 94%; max-height: 40px; }
  .brand-tile--wishcare img { max-width: 96%; max-height: 58px; }
  .brand-tile--flipkart-minutes img { max-width: 92%; max-height: 56px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 44px 28px; }
  .hero { padding: 120px 0 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- About page — Vision & Mission (What Drives Us) ---------- */
.about-drives {
  --drives-orange: #f2711c;
  --drives-orange-2: #ff8a3d;
  --drives-blue: #4a6ab8;
  --drives-blue-deep: #2c4585;
  --drives-ink-0: #101c3a;
  --drives-ink-1: #5b6470;
  position: relative;
  background:
    radial-gradient(700px 420px at 6% -12%, rgba(242, 113, 28, 0.08), transparent 60%),
    radial-gradient(720px 460px at 98% 118%, rgba(74, 106, 184, 0.10), transparent 60%),
    var(--bg-soft);
  padding: clamp(72px, 8vw, 104px) 0;
  overflow: hidden;
  font-family: "Manrope", var(--font-body), sans-serif;
}
.about-drives::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 31, 58, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black 0%, transparent 75%);
  pointer-events: none;
}
.about-drives__inner {
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
  z-index: 2;
}
.about-drives__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(52px, 6vw, 72px);
}
.about-drives__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--drives-orange);
  margin-bottom: 20px;
}
.about-drives__eyebrow::before,
.about-drives__eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(242, 113, 28, 0.45);
}
.about-drives__title {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800;
  color: var(--drives-ink-0);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
.about-drives__title em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--drives-orange);
}
.about-drives__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about-drives__amp {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--drives-orange-2), var(--drives-orange));
  border: 4px solid var(--bg-soft);
  box-shadow: 0 0 0 6px rgba(242, 113, 28, 0.12), 0 12px 26px rgba(11, 31, 58, 0.18);
  pointer-events: none;
}
.about-drives__card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 34px 28px;
  border: 1px solid rgba(11, 31, 58, 0.06);
  box-shadow: 0 24px 50px rgba(11, 31, 58, 0.08);
  overflow: hidden;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease;
}
.about-drives__card:hover {
  box-shadow: 0 34px 70px rgba(11, 31, 58, 0.14);
}
.about-drives__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.about-drives__card--vision::after {
  background: linear-gradient(90deg, var(--drives-orange-2), var(--drives-orange), transparent 85%);
}
.about-drives__card--mission::after {
  background: linear-gradient(90deg, var(--drives-blue), var(--drives-blue-deep), transparent 85%);
}
.about-drives__ghost {
  position: absolute;
  top: -14px;
  right: 2px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 74px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--drives-ink-0);
  opacity: 0.045;
  user-select: none;
  pointer-events: none;
}
.about-drives__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.about-drives__card--vision .about-drives__tag { color: #a34a0e; background: #fdece0; }
.about-drives__card--mission .about-drives__tag { color: #25407c; background: #e8eefb; }
.about-drives__statement {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--drives-ink-0);
  margin: 0 0 24px;
  min-height: 100px;
}
.about-drives__statement em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
}
.about-drives__card--vision .about-drives__statement em { color: var(--drives-orange); }
.about-drives__card--mission .about-drives__statement em { color: var(--drives-blue); }
.about-drives__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0ece4;
  padding-top: 18px;
}
.about-drives__chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 7px;
  white-space: nowrap;
}
.about-drives__card--vision .about-drives__chip { background: #fdf3ea; color: #9c5320; }
.about-drives__card--mission .about-drives__chip { background: #eef2fa; color: #31508e; }
@media (max-width: 920px) {
  .about-drives__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-drives__statement { min-height: 0; }
  .about-drives__ghost { font-size: 58px; top: -10px; }
}
@media (max-width: 640px) {
  .about-drives__card { padding: 30px 24px 24px; }
  .about-drives__amp {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
}

/* ---------- Home page — What We Do (capabilities) ---------- */
.home-caps {
  --caps-orange: #f2711c;
  --caps-orange-2: #ff8a3d;
  --caps-blue: #4a6ab8;
  --caps-green: #22b98a;
  --caps-ink-0: #101c3a;
  --caps-ink-1: #5b6470;
  position: relative;
  background:
    radial-gradient(720px 440px at 94% -12%, rgba(242, 113, 28, 0.07), transparent 60%),
    radial-gradient(680px 440px at 2% 112%, rgba(74, 106, 184, 0.09), transparent 60%),
    #fff;
  padding: clamp(72px, 8vw, 104px) 0;
  overflow: hidden;
  font-family: "Manrope", var(--font-body), sans-serif;
}
.home-caps::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 31, 58, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
  pointer-events: none;
}
.home-caps__inner {
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
  z-index: 2;
}
.home-caps__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(52px, 6vw, 68px);
}
.home-caps__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--caps-orange);
  margin-bottom: 20px;
}
.home-caps__eyebrow::before,
.home-caps__eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(242, 113, 28, 0.45);
}
.home-caps__title {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 800;
  color: var(--caps-ink-0);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 18px;
}
.home-caps__title em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--caps-orange);
}
.home-caps__lede {
  color: var(--caps-ink-1);
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}
.home-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-caps__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 22px;
  border: 1px solid rgba(11, 31, 58, 0.07);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.06);
  overflow: hidden;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease, border-color .25s ease;
}
.home-caps__card:hover {
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.13);
  border-color: rgba(11, 31, 58, 0.12);
}
.home-caps__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity .3s ease;
}
.home-caps__card:hover::after { opacity: 1; }
.home-caps__card--a::after { background: linear-gradient(90deg, var(--caps-orange-2), var(--caps-orange), transparent 88%); }
.home-caps__card--b::after { background: linear-gradient(90deg, var(--caps-blue), #2c4585, transparent 88%); }
.home-caps__card--c::after { background: linear-gradient(90deg, var(--caps-green), #128a67, transparent 88%); }
.home-caps__ghost {
  position: absolute;
  top: -12px;
  right: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  color: var(--caps-ink-0);
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
}
.home-caps__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.home-caps__ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.home-caps__ico svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}
.home-caps__card--a .home-caps__ico { color: #b3540f; background: #fdece0; }
.home-caps__card--b .home-caps__ico { color: #31508e; background: #e8eefb; }
.home-caps__card--c .home-caps__ico { color: #128a67; background: #e2f5ee; }
.home-caps__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
}
.home-caps__card--a .home-caps__tag { color: #a34a0e; background: #fdf3ea; }
.home-caps__card--b .home-caps__tag { color: #25407c; background: #eef2fa; }
.home-caps__card--c .home-caps__tag { color: #0e5c46; background: #e9f6f0; }
.home-caps__card h3 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--caps-ink-0);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 10px;
}
.home-caps__card > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--caps-ink-1);
  margin: 0 0 20px;
}
.home-caps__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0ece4;
  padding-top: 15px;
  margin-top: auto;
}
.home-caps__chip {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  color: var(--caps-ink-1);
  background: #f7f4ee;
}
.home-caps__card--a .home-caps__chip { background: #fdf3ea; color: #9c5320; }
.home-caps__card--b .home-caps__chip { background: #eef2fa; color: #31508e; }
.home-caps__card--c .home-caps__chip { background: #e9f6f0; color: #186a52; }
@media (max-width: 991px) {
  .home-caps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-caps__grid { grid-template-columns: 1fr; gap: 18px; }
  .home-caps__card { padding: 24px 20px 18px; }
  .home-caps__ghost { font-size: 62px; top: -9px; }
}

/* ---------- Home page — Principles (soft variant of capabilities) ---------- */
.home-caps--soft {
  background:
    radial-gradient(700px 420px at 4% -12%, rgba(242, 113, 28, 0.07), transparent 60%),
    radial-gradient(700px 440px at 98% 114%, rgba(34, 185, 138, 0.08), transparent 60%),
    var(--bg-soft);
}
.home-caps__grid--2col {
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.home-caps__ghost--word {
  font-size: 52px;
  top: -6px;
  right: 10px;
  letter-spacing: 0.04em;
}
.home-caps__card--d::after {
  background: linear-gradient(90deg, #f5a623, #d9930d, transparent 88%);
}
.home-caps__card--d .home-caps__ico { color: #8a6116; background: #fdf4e0; }
.home-caps__card--d .home-caps__tag { color: #8a6116; background: #fbf3df; }
.home-caps__card--d .home-caps__chip { background: #fbf3df; color: #7d5a17; }
@media (max-width: 991px) {
  .home-caps__grid--2col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .home-caps__grid--2col { grid-template-columns: 1fr; }
  .home-caps__ghost--word { font-size: 40px; }
}

/* ---------- Contact page — Get In Touch (v2, design language) ---------- */
.contact-intro__head--v2 .contact-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #f2711c;
  margin-bottom: 18px;
}
.contact-intro__head--v2 .contact-intro__eyebrow::before,
.contact-intro__head--v2 .contact-intro__eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(242, 113, 28, 0.45);
}
.contact-intro__head--v2 h2 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  font-style: normal;
  color: #101c3a;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.contact-intro__head--v2 h2 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: #f2711c;
}
.contact-intro__head--v2 p {
  font-size: 17px;
  color: #5b6470;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.contact-card-tag {
  display: inline-flex;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.contact-card-tag--contact { color: #ffb379; background: rgba(242, 113, 28, 0.16); }
.contact-card-tag--message { color: #a34a0e; background: #fdece0; }
.info-card--v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(420px 260px at 90% -10%, rgba(242, 113, 28, 0.22), transparent 60%),
    linear-gradient(180deg, #0e1a38 0%, #0a142c 100%);
}
.info-card--v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black 0%, transparent 80%);
  pointer-events: none;
}
.info-card--v2 > * { position: relative; z-index: 1; }
.info-card--v2 h3 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.info-card--v2 > p { font-size: 15.5px; }
.contact-ghost {
  position: absolute;
  top: -14px;
  right: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 84px;
  line-height: 1;
  color: #fff;
  opacity: 0.045;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.info-card--v2 .info-row .ico {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}
.info-card--v2 .info-row b { font-size: 15.5px; }
.info-card--v2 .info-row p, .info-card--v2 .info-row a { font-size: 14.5px; }
.form-card--v2 h3 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #101c3a;
  margin-bottom: 6px;
}
.form-card--v2 .form-card__lede {
  color: #5b6470;
  font-size: 15.5px;
  margin-bottom: 26px;
}
.form-card--v2 .form-group label { font-size: 14.5px; }
.form-card--v2 .form-group input,
.form-card--v2 .form-group textarea { font-size: 15.5px; }
.form-card--v2 .form-group input:focus,
.form-card--v2 .form-group textarea:focus,
.form-card--v2 .form-group select:focus {
  border-color: #f2711c;
  box-shadow: 0 0 0 3px rgba(242, 113, 28, 0.14);
}

/* ---------- Partner page ---------- */
.partner-page {
  --partner-bg: #081428;
  --partner-ink: #f8fafc;
  --partner-muted: #9eb0c8;
  --partner-line: rgba(255, 255, 255, 0.1);
}
.partner-hero {
  position: relative;
  background:
    radial-gradient(700px 420px at 78% 22%, rgba(247, 107, 28, 0.18), transparent 62%),
    radial-gradient(520px 380px at 12% 88%, rgba(245, 166, 35, 0.1), transparent 58%),
    linear-gradient(165deg, #0b1f3a 0%, var(--partner-bg) 55%, #060e1c 100%);
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  padding: 120px 0 64px;
  min-height: 700px;
}
.partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 72% 42%, black, transparent 78%);
  pointer-events: none;
}
.partner-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
}
.partner-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.partner-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: #ffb379;
  background: rgba(247, 107, 28, 0.12);
  border: 1px solid rgba(247, 107, 28, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.partner-hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f76b1c;
  box-shadow: 0 0 0 0 rgba(247, 107, 28, 0.55);
  animation: partner-pulse 2.2s ease-out infinite;
}
@keyframes partner-pulse {
  0% { box-shadow: 0 0 0 0 rgba(247, 107, 28, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(247, 107, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(247, 107, 28, 0); }
}
.partner-hero__copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  color: var(--partner-ink);
  letter-spacing: -0.01em;
}
.partner-hero__copy h1 em {
  display: inline;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1em;
  line-height: inherit;
  margin-top: 0;
  margin-left: 0.18em;
  background: linear-gradient(100deg, #ffd08a 5%, #f76b1c 55%, #f5a623 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partner-hero__sub {
  color: var(--partner-muted);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 460px;
  margin: 24px 0 34px;
}
.partner-hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.partner-hero__btn {
  padding: 14px 26px;
  font-size: 15px;
}
.partner-hero__ghost {
  color: #c8d4e4;
  font-size: 14.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--partner-line);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.partner-hero__ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.partner-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--partner-line);
  max-width: 520px;
}
.partner-hero__stat b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(100deg, #ffd08a, #f76b1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partner-hero__stat span {
  font-size: 12.5px;
  color: #7f92ab;
  letter-spacing: 0.02em;
}
.partner-hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin: 0 auto;
}
.partner-hero__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 107, 28, 0.22), transparent 68%);
  filter: blur(18px);
  animation: partner-glow 4s ease-in-out infinite alternate;
}
@keyframes partner-glow {
  from { transform: scale(0.92); opacity: 0.65; }
  to { transform: scale(1.06); opacity: 1; }
}
.partner-hero__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}
.partner-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  transform-origin: 260px 260px;
}
.partner-ring--1 { animation: partner-ring-pulse 5s ease-in-out infinite; }
.partner-ring--2 {
  stroke: rgba(247, 107, 28, 0.14);
  stroke-dasharray: 4 10;
  animation: partner-ring-spin 28s linear infinite;
}
.partner-ring--3 {
  stroke: rgba(245, 166, 35, 0.2);
  animation: partner-ring-pulse 4s ease-in-out infinite reverse;
}
@keyframes partner-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.03); opacity: 1; }
}
@keyframes partner-ring-spin {
  to { transform: rotate(360deg); }
}
.partner-hub {
  filter: drop-shadow(0 0 22px rgba(247, 107, 28, 0.45));
  animation: partner-hub-pulse 3s ease-in-out infinite;
}
@keyframes partner-hub-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.partner-node { transform-origin: 260px 260px; }
.partner-node--1 { animation: partner-float 5s ease-in-out infinite; }
.partner-node--2 { animation: partner-float 5s ease-in-out infinite 0.8s; }
.partner-node--3 { animation: partner-float 5s ease-in-out infinite 1.6s; }
.partner-node--4 { animation: partner-float 5s ease-in-out infinite 2.4s; }
@keyframes partner-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.partner-path {
  animation: partner-dash 3s linear infinite;
}
@keyframes partner-dash {
  to { stroke-dashoffset: -22; }
}
.partner-orbit {
  animation: partner-orbit-drift 18s linear infinite;
  transform-origin: 260px 260px;
}
@keyframes partner-orbit-drift {
  to { transform: rotate(360deg); }
}
.partner-hero + .partner-intro {
  padding-top: clamp(64px, 8vw, 96px);
}
@media (max-width: 991px) {
  .partner-hero__grid { grid-template-columns: 1fr; }
  .partner-hero__visual { max-width: 340px; margin-top: 36px; }
  .partner-hero__stats { gap: 28px; }
  .partner-hero { padding: 100px 0 48px; min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .partner-hero__pulse,
  .partner-hero__glow,
  .partner-ring--1,
  .partner-ring--2,
  .partner-ring--3,
  .partner-hub,
  .partner-node--1,
  .partner-node--2,
  .partner-node--3,
  .partner-node--4,
  .partner-path,
  .partner-orbit { animation: none; }
}

.partner-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b9c6d8;
  font-size: 14.5px;
  line-height: 1.55;
}
.partner-benefits__ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: #ffb379;
}
.partner-benefits__ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
.form-group .req {
  color: var(--accent-dark);
  font-weight: 600;
}
.partner-section { padding-bottom: clamp(64px, 8vw, 96px); }
.partner-intro {
  padding-bottom: 0;
  background: #fff;
}
.partner-intro .section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.partner-intro + .partner-section { padding-top: 36px; }

/* ---------- Site-wide design-language sync ----------
   One heading family (Manrope), one serif accent (Fraunces),
   one mono label style (IBM Plex Mono) on every page. */
h1, h2, h3, h4 {
  font-family: "Manrope", var(--font-head), sans-serif;
  letter-spacing: -0.01em;
}
.section-head h2 {
  font-weight: 800;
  color: #101c3a;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
}
.section-head p { font-size: 17px; line-height: 1.7; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f2711c;
  margin-bottom: 16px;
}
.section-head:not(.left) .kicker::before,
.section-head:not(.left) .kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(242, 113, 28, 0.45);
}
.about-who__eyebrow { letter-spacing: 0.2em; font-size: 12.5px; }
.stat .num {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cta-band h2 { font-weight: 800; letter-spacing: -0.01em; }

/* Content headings previously in Playfair -> Manrope system */
.evaluate-head h2 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #101c3a;
  font-size: clamp(30px, 3.8vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.evaluate-head p { font-size: 17px; line-height: 1.7; color: #5b6470; }
.evaluate-card__body h3 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #101c3a;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
}
.home-intro__copy h3 {
  font-family: "Manrope", var(--font-head), sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #101c3a;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

/* Hero serif: unify Playfair -> Fraunces (the site's single serif accent) */
.home-hero__tagline,
.about-hero__copy h1,
.about-hero__copy h2,
.about-hero__copy h3,
.contact-hero__stay,
.contact-hero__connected,
.contact-hero__with {
  font-family: "Fraunces", serif;
  font-style: italic;
}

/* ---------- Footer — design-language sync ---------- */
.site-footer {
  position: relative;
  background:
    radial-gradient(720px 380px at 92% -10%, rgba(242, 113, 28, 0.14), transparent 60%),
    radial-gradient(600px 400px at 2% 115%, rgba(74, 106, 184, 0.14), transparent 60%),
    linear-gradient(180deg, #0e1a38 0%, #0a142c 100%);
  overflow: hidden;
  font-family: "Manrope", var(--font-body), sans-serif;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black 0%, transparent 75%);
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-grid h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff8a3d;
  margin-bottom: 22px;
}
.site-footer p { font-size: 15px; line-height: 1.75; color: #a7b6ca; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 15px;
  display: inline-block;
  transition: color .2s, transform .2s;
}
.footer-links a:hover { color: #ff8a3d; transform: translateX(3px); }
.footer-contact li { font-size: 14.5px; line-height: 1.7; }
.footer-contact li b { color: #e8edf5; }
.footer-contact svg { stroke: #ff8a3d; }
.footer-contact a:hover { color: #ff8a3d; }
.social-row a { border: 1px solid rgba(255, 255, 255, 0.08); }
.social-row a:hover {
  background: linear-gradient(135deg, #ff8a3d, #f2711c);
  border-color: transparent;
}
.footer-bottom {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #8fa0b8;
}
.footer-bottom a:hover { color: #ff8a3d; }

/* ---------- Footer columns — one explicit type spec everywhere ---------- */
.footer-links a,
.footer-contact li,
.footer-contact a,
.footer-contact span,
.site-footer .footer-grid > div > p,
.site-footer p {
  font-family: "Manrope", var(--font-body), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  color: #a7b6ca;
}
.footer-contact li b { color: #e8edf5; font-weight: 700; }
.footer-links a:hover,
.footer-contact a:hover { color: #ff8a3d; }
.footer-grid h4 {
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
}

/* ---------- Stats bar — larger, more prominent ---------- */
.stat .num {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.stat .lbl {
  font-size: 16.5px;
  font-weight: 500;
  margin-top: 6px;
}
.stats-inner { padding: 38px 30px; }
@media (max-width: 640px) {
  .stat .num { font-size: 2.2rem; }
  .stat .lbl { font-size: 14.5px; }
}

/* ---------- Ghost watermarks — more visible ---------- */
.home-caps__ghost { opacity: 0.12; }
.home-caps__card--a .home-caps__ghost { color: #f2711c; }
.home-caps__card--b .home-caps__ghost { color: #4a6ab8; }
.home-caps__card--c .home-caps__ghost { color: #22b98a; }
.home-caps__card--d .home-caps__ghost { color: #d9930d; }
.about-drives__ghost { opacity: 0.12; }
.about-drives__card--vision .about-drives__ghost { color: #f2711c; }
.about-drives__card--mission .about-drives__ghost { color: #4a6ab8; }
.contact-ghost { opacity: 0.10; }

/* ---------- Services hub — clickable cards ---------- */
a.home-caps__card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.home-caps__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #f2711c;
  transition: gap 0.2s ease;
}
a.home-caps__card:hover .home-caps__more { gap: 10px; }
.home-caps--hub { padding-top: clamp(56px, 7vw, 88px); }
.home-caps__view-all {
  text-align: center;
  margin-top: 36px;
}
.home-caps__view-all a {
  font-size: 15px;
  font-weight: 600;
  color: #f2711c;
}

/* ---------- Service detail pages ---------- */
.service-detail {
  padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 96px);
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.service-detail__main h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: 36px 0 14px;
  color: #101c3a;
}
.service-detail__main h2:first-child { margin-top: 0; }
.service-detail__main p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}
.service-detail__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #f2711c;
}
.service-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: svc-step;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-steps li {
  counter-increment: svc-step;
  position: relative;
  padding-left: 52px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.service-steps li::before {
  content: counter(svc-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fdece0;
  color: #c44e12;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-steps li b {
  display: block;
  color: #101c3a;
  font-size: 16px;
  margin-bottom: 4px;
}
.service-detail__aside {
  position: sticky;
  top: 100px;
}
.service-aside-card {
  background: linear-gradient(165deg, #0e1a38 0%, #0a142c 100%);
  border-radius: 18px;
  padding: 32px 28px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.service-aside-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-aside-card p {
  color: #a7b6ca;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.service-aside-card .pill-row { margin-bottom: 24px; }
.service-aside-card .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #d4deec;
}
.service-related {
  padding: 0 0 clamp(64px, 8vw, 88px);
  background: var(--bg-soft);
}
.service-related .home-caps__grid { margin-top: 8px; }
.service-related .home-caps__card { min-height: auto; }
@media (max-width: 991px) {
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__aside { position: static; }
}

/* ---------- Service detail — branded hero (per-service themes) ---------- */
.service-hero {
  position: relative;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  padding: 120px 0 64px;
  min-height: 680px;
  background: var(--svc-bg);
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 72% 42%, black, transparent 78%);
  pointer-events: none;
}
.service-hero__wrap { position: relative; z-index: 2; max-width: 1280px; }
.service-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.service-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--svc-accent-soft);
  background: var(--svc-eyebrow-bg);
  border: 1px solid var(--svc-eyebrow-border);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.service-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--svc-accent);
  box-shadow: 0 0 0 0 var(--svc-glow);
  animation: service-hero-pulse 2.2s ease-out infinite;
}
@keyframes service-hero-pulse {
  0% { box-shadow: 0 0 0 0 var(--svc-glow); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.service-hero__copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.06;
  color: #f8fafc;
  letter-spacing: -0.01em;
}
.service-hero__copy h1 em {
  display: inline;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1em;
  margin-left: 0.16em;
  background: var(--svc-em-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-hero__sub {
  color: var(--svc-muted);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 480px;
  margin: 24px 0 28px;
}
.service-hero__breadcrumb {
  font-size: 13.5px;
  color: #7f92ab;
  margin-top: 20px;
}
.service-hero__breadcrumb a { color: var(--svc-accent-soft); }
.service-hero__breadcrumb a:hover { color: #fff; }
.service-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-hero__stat b {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: var(--svc-em-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-hero__stat span {
  font-size: 12.5px;
  color: #7f92ab;
}
.service-hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
}
.service-hero__glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--svc-glow), transparent 68%);
  filter: blur(20px);
  animation: service-glow-breathe 4s ease-in-out infinite alternate;
}
@keyframes service-glow-breathe {
  from { transform: scale(0.9); opacity: 0.55; }
  to { transform: scale(1.08); opacity: 1; }
}
.service-hero__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}
/* Theme: Stock / Inventory */
.service-hero--stock {
  --svc-bg: linear-gradient(165deg, #0b1f3a 0%, #081428 55%, #060e1c 100%);
  --svc-accent: #f76b1c;
  --svc-accent-soft: #ffb379;
  --svc-muted: #9eb0c8;
  --svc-glow: rgba(247, 107, 28, 0.45);
  --svc-eyebrow-bg: rgba(247, 107, 28, 0.12);
  --svc-eyebrow-border: rgba(247, 107, 28, 0.35);
  --svc-em-grad: linear-gradient(100deg, #ffd08a 5%, #f76b1c 55%, #f5a623 95%);
}
/* Theme: Orders */
.service-hero--orders {
  --svc-bg: linear-gradient(165deg, #0e1a38 0%, #0a1428 55%, #060d18 100%);
  --svc-accent: #6b8fd4;
  --svc-accent-soft: #a8c4f0;
  --svc-muted: #96a8c4;
  --svc-glow: rgba(74, 106, 184, 0.4);
  --svc-eyebrow-bg: rgba(74, 106, 184, 0.14);
  --svc-eyebrow-border: rgba(107, 143, 212, 0.35);
  --svc-em-grad: linear-gradient(100deg, #c8daf5 5%, #4a6ab8 50%, #6b8fd4 95%);
}
/* Theme: Finance */
.service-hero--finance {
  --svc-bg: linear-gradient(165deg, #0a1f2e 0%, #071820 55%, #041210 100%);
  --svc-accent: #2fe6c9;
  --svc-accent-soft: #7af0dc;
  --svc-muted: #8fb8b0;
  --svc-glow: rgba(47, 230, 201, 0.35);
  --svc-eyebrow-bg: rgba(47, 230, 201, 0.1);
  --svc-eyebrow-border: rgba(47, 230, 201, 0.3);
  --svc-em-grad: linear-gradient(100deg, #b8fff5 5%, #22b98a 50%, #2fe6c9 95%);
}
/* Theme: Catalog */
.service-hero--catalog {
  --svc-bg: linear-gradient(165deg, #1a1030 0%, #120a22 55%, #0a0614 100%);
  --svc-accent: #ff8a3d;
  --svc-accent-soft: #ffc49a;
  --svc-muted: #b0a0c8;
  --svc-glow: rgba(255, 138, 61, 0.38);
  --svc-eyebrow-bg: rgba(255, 138, 61, 0.12);
  --svc-eyebrow-border: rgba(255, 138, 61, 0.32);
  --svc-em-grad: linear-gradient(100deg, #ffe0c4 5%, #ff8a3d 50%, #f76b1c 95%);
}
/* Theme: Returns */
.service-hero--returns {
  --svc-bg: linear-gradient(165deg, #0c1835 0%, #081228 55%, #050c1e 100%);
  --svc-accent: #5b7fc7;
  --svc-accent-soft: #9eb5e8;
  --svc-muted: #94a4c0;
  --svc-glow: rgba(91, 127, 199, 0.38);
  --svc-eyebrow-bg: rgba(91, 127, 199, 0.12);
  --svc-eyebrow-border: rgba(91, 127, 199, 0.32);
  --svc-em-grad: linear-gradient(100deg, #c5d8ff 5%, #3d5a9a 50%, #5b7fc7 95%);
}
/* Theme: Growth */
.service-hero--growth {
  --svc-bg: linear-gradient(165deg, #0a1a10 0%, #061208 55%, #030a06 100%);
  --svc-accent: #c4f24b;
  --svc-accent-soft: #e8ffb0;
  --svc-muted: #8faa8a;
  --svc-glow: rgba(196, 242, 75, 0.32);
  --svc-eyebrow-bg: rgba(196, 242, 75, 0.1);
  --svc-eyebrow-border: rgba(196, 242, 75, 0.28);
  --svc-em-grad: linear-gradient(100deg, #e8ffb0 5%, #7fbf1f 50%, #c4f24b 95%);
}
.service-hero--stock { background: radial-gradient(600px 400px at 78% 20%, rgba(247,107,28,0.16), transparent 60%), var(--svc-bg); }
.service-hero--orders { background: radial-gradient(560px 380px at 80% 18%, rgba(74,106,184,0.18), transparent 60%), var(--svc-bg); }
.service-hero--finance { background: radial-gradient(560px 380px at 78% 22%, rgba(47,230,201,0.14), transparent 60%), var(--svc-bg); }
.service-hero--catalog { background: radial-gradient(560px 380px at 82% 20%, rgba(255,138,61,0.15), transparent 60%), var(--svc-bg); }
.service-hero--returns { background: radial-gradient(560px 380px at 76% 20%, rgba(91,127,199,0.16), transparent 60%), var(--svc-bg); }
.service-hero--growth { background: radial-gradient(560px 380px at 80% 18%, rgba(196,242,75,0.12), transparent 60%), var(--svc-bg); }
/* Hub — services overview page */
.service-hero--hub {
  --svc-bg: linear-gradient(165deg, #0c1830 0%, #081228 50%, #050c18 100%);
  --svc-accent: #f76b1c;
  --svc-accent-soft: #ffd08a;
  --svc-muted: #9eb0c8;
  --svc-glow: rgba(247, 107, 28, 0.35);
  --svc-eyebrow-bg: rgba(255, 255, 255, 0.06);
  --svc-eyebrow-border: rgba(255, 208, 138, 0.35);
  --svc-em-grad: linear-gradient(100deg, #ffe0c4 0%, #f76b1c 40%, #6b8fd4 75%, #c4f24b 100%);
  background:
    radial-gradient(520px 360px at 75% 15%, rgba(247,107,28,0.14), transparent 55%),
    radial-gradient(400px 300px at 20% 80%, rgba(74,106,184,0.12), transparent 50%),
    radial-gradient(360px 280px at 85% 75%, rgba(196,242,75,0.08), transparent 50%),
    var(--svc-bg);
}
.service-hero--hub .service-hero__copy h1 em {
  background: linear-gradient(100deg, #ffd08a 0%, #f76b1c 35%, #a8c4f0 65%, #c4f24b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.service-hero + .home-caps--hub { padding-top: clamp(48px, 6vw, 72px); }
.svc-hub-orbit { transform-origin: 260px 260px; animation: svc-hub-spin 40s linear infinite; }
@keyframes svc-hub-spin { to { transform: rotate(360deg); } }
.svc-fx { position: absolute; pointer-events: none; z-index: 2; }
.svc-fx--hub-pulse {
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255, 208, 138, 0.15);
  animation: svc-hub-pulse 3s ease-out infinite;
}
@keyframes svc-hub-pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}
/* Stock — scan + ripple */
.svc-fx--scan {
  left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, #ffb379, #f76b1c, #ffb379, transparent);
  box-shadow: 0 0 12px rgba(247, 107, 28, 0.6);
  animation: svc-scan 3s ease-in-out infinite;
}
@keyframes svc-scan {
  0%, 100% { top: 12%; opacity: 0; }
  15% { opacity: 1; }
  50% { top: 88%; opacity: 1; }
  85% { opacity: 0; }
}
.svc-fx--ripple {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(247, 107, 28, 0.5);
  top: 50%; left: 50%; margin: -20px 0 0 -20px;
  animation: svc-ripple 2.8s ease-out infinite;
}
.svc-fx--ripple-b { animation-delay: 1.4s; }
@keyframes svc-ripple {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}
.svc-iso-stack { animation: svc-iso-bob 4s ease-in-out infinite alternate; transform-origin: 260px 320px; }
@keyframes svc-iso-bob { from { transform: translateY(4px); } to { transform: translateY(-6px); } }
.svc-sync-beam { animation: svc-beam-pulse 2s ease-in-out infinite; }
.svc-sync-beam--d1 { animation-delay: 0.5s; }
.svc-sync-beam--d2 { animation-delay: 1s; }
@keyframes svc-beam-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
/* Orders — conveyor */
.svc-fx--conveyor {
  bottom: 6%; left: 5%; right: 5%; height: 6px;
  background: rgba(107, 143, 212, 0.2); border-radius: 3px; overflow: visible;
}
.svc-fx--conveyor span {
  position: absolute; top: -5px; width: 16px; height: 16px;
  background: #0e1a38; border: 1.5px solid #6b8fd4; border-radius: 3px;
  animation: svc-conveyor-move 2.5s linear infinite;
}
.svc-fx--conveyor span:nth-child(2) { animation-delay: 0.8s; }
.svc-fx--conveyor span:nth-child(3) { animation-delay: 1.6s; }
@keyframes svc-conveyor-move {
  from { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { left: calc(100% - 16px); opacity: 0; }
}
.svc-path-glow { animation: svc-path-pulse 2s ease-in-out infinite; }
@keyframes svc-path-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.svc-checkpoint { animation: svc-checkpoint-flash 3s ease-in-out infinite; }
.svc-checkpoint--ship { animation-delay: 1.5s; }
@keyframes svc-checkpoint-flash {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}
/* Finance — ticker */
.svc-fx--ticker {
  top: 4%; left: 0; right: 0; overflow: hidden; height: 28px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.svc-fx--ticker span {
  display: inline-block; padding: 0 24px;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; color: #7af0dc;
  animation: svc-ticker-scroll 8s linear infinite;
}
.svc-fx--ticker span:nth-child(2) { animation-delay: -2.6s; color: #b8fff5; }
.svc-fx--ticker span:nth-child(3) { animation-delay: -5.2s; color: #2fe6c9; }
@keyframes svc-ticker-scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-200%); }
}
.svc-ledger-row { animation: svc-ledger-in 0.6s ease-out both; }
.svc-ledger-row--1 { animation-delay: 0.1s; }
.svc-ledger-row--2 { animation-delay: 0.25s; }
.svc-ledger-row--3 { animation-delay: 0.4s; }
.svc-ledger-row--4 { animation-delay: 0.55s; }
@keyframes svc-ledger-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.svc-coin-orbit { transform-origin: 260px 260px; animation: svc-coin-orbit 12s linear infinite; }
.svc-coin-orbit--rev { animation-direction: reverse; animation-duration: 16s; }
@keyframes svc-coin-orbit { to { transform: rotate(360deg); } }
/* Catalog — shimmer + page flip */
.svc-fx--shimmer {
  inset: 10% 8%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,196,154,0.15) 50%, transparent 60%);
  animation: svc-shimmer 3s ease-in-out infinite;
}
@keyframes svc-shimmer {
  from { transform: translateX(-30%); }
  to { transform: translateX(30%); }
}
.svc-page--front { animation: svc-page-tilt 5s ease-in-out infinite alternate; transform-origin: 180px 240px; }
@keyframes svc-page-tilt {
  from { transform: rotate(-2deg) translateY(0); }
  to { transform: rotate(3deg) translateY(-8px); }
}
.svc-tag-float { animation: svc-tag-drift 4s ease-in-out infinite; }
.svc-tag-float--d1 { animation-delay: 0.8s; }
.svc-tag-float--d2 { animation-delay: 1.6s; }
@keyframes svc-tag-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -6px); }
}
/* Returns — reverse glow */
.svc-fx--reverse-glow {
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,127,199,0.2), transparent 70%);
  animation: svc-reverse-glow 3s ease-in-out infinite alternate;
}
@keyframes svc-reverse-glow {
  from { transform: scale(0.9) rotate(0deg); opacity: 0.5; }
  to { transform: scale(1.1) rotate(180deg); opacity: 1; }
}
.svc-return-dash { animation: svc-return-dash 4s linear infinite; }
@keyframes svc-return-dash { to { stroke-dashoffset: -40; } }
.svc-qc-light { animation: svc-qc-blink 2s ease-in-out infinite; }
@keyframes svc-qc-blink {
  0%, 100% { fill: rgba(34,185,138,0.2); }
  50% { fill: rgba(34,185,138,0.55); }
}
/* Growth — radar */
.svc-fx--radar {
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(196, 242, 75, 0.15);
  animation: svc-radar-ring 4s ease-out infinite;
}
@keyframes svc-radar-ring {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}
.svc-radar-sweep { animation: svc-radar-sweep 4s linear infinite; }
@keyframes svc-radar-sweep { to { transform: rotate(360deg); } }
.svc-sparkline { stroke-dasharray: 400; stroke-dashoffset: 400; animation: svc-spark-draw 2.5s ease-out forwards, svc-spark-pulse 3s ease-in-out 2.5s infinite alternate; }
@keyframes svc-spark-draw { to { stroke-dashoffset: 0; } }
@keyframes svc-spark-pulse { from { opacity: 0.7; } to { opacity: 1; } }
.svc-data-node { animation: svc-node-ping 2s ease-out infinite; }
.svc-data-node--d1 { animation-delay: 0.4s; }
.svc-data-node--d2 { animation-delay: 0.8s; }
.svc-data-node--d3 { animation-delay: 1.2s; }
@keyframes svc-node-ping {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { opacity: 0; }
}
.svc-metric-card { animation: svc-metric-float 4s ease-in-out infinite alternate; }
.svc-metric-card--d1 { animation-delay: 1s; }
@keyframes svc-metric-float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}
.svc-ring { fill: none; stroke: rgba(255,255,255,0.08); transform-origin: 260px 260px; }
.svc-ring--spin { animation: svc-ring-spin 24s linear infinite; }
.svc-ring--pulse { animation: svc-ring-pulse 4s ease-in-out infinite; }
@keyframes svc-ring-spin { to { transform: rotate(360deg); } }
@keyframes svc-ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
.svc-node-float { animation: svc-node-float 5s ease-in-out infinite; }
.svc-node-float--d1 { animation-delay: 0.6s; }
.svc-node-float--d2 { animation-delay: 1.2s; }
.svc-node-float--d3 { animation-delay: 1.8s; }
@keyframes svc-node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.svc-dash { animation: svc-dash 3s linear infinite; }
@keyframes svc-dash { to { stroke-dashoffset: -24; } }
.svc-bar { transform-origin: bottom center; animation: svc-bar-grow 2.5s ease-in-out infinite alternate; }
.svc-bar--2 { animation-delay: 0.3s; }
.svc-bar--3 { animation-delay: 0.6s; }
.svc-bar--4 { animation-delay: 0.9s; }
@keyframes svc-bar-grow {
  from { transform: scaleY(0.7); }
  to { transform: scaleY(1); }
}
.svc-flow-dot { animation: svc-flow 3s linear infinite; }
@keyframes svc-flow {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.service-hero + .service-detail { padding-top: clamp(56px, 7vw, 80px); }
@media (max-width: 991px) {
  .service-hero__grid { grid-template-columns: 1fr; }
  .service-hero__visual { max-width: 320px; margin-top: 32px; }
  .service-hero { padding: 100px 0 48px; min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .service-hero__dot, .service-hero__glow, .svc-ring--spin, .svc-ring--pulse,
  .svc-node-float, .svc-dash, .svc-bar, .svc-flow-dot,
  .svc-hub-orbit, .svc-fx--hub-pulse, .svc-fx--scan, .svc-fx--ripple,
  .svc-iso-stack, .svc-sync-beam, .svc-fx--conveyor span, .svc-path-glow,
  .svc-checkpoint, .svc-fx--ticker span, .svc-ledger-row, .svc-coin-orbit,
  .svc-fx--shimmer, .svc-page--front, .svc-tag-float, .svc-fx--reverse-glow,
  .svc-return-dash, .svc-qc-light, .svc-fx--radar, .svc-radar-sweep,
  .svc-sparkline, .svc-data-node, .svc-metric-card { animation: none; }
}
