/* ============================================================
   CHAMELEO GFX STUDIO  —  Design System (tokens)
   Aesthetic: Premium SaaS + FinTech. Brand red used as the
   single action colour. "Adaptive spectrum" = the one flourish.
   ============================================================ */
:root {
  /* Brand + ink */
  --red: #E5162B;
  --red-deep: #B30E1F;
  --red-glow: rgba(229, 22, 43, .45);
  --red-soft: rgba(229, 22, 43, .12);

  --ink: #0B0C10;
  --ink-2: #101218;
  --ink-3: #171A22;
  --ink-line: rgba(255, 255, 255, .09);
  --ink-line-2: rgba(255, 255, 255, .14);

  --paper: #F6F5F1;
  --paper-2: #EDEBE4;
  --paper-line: rgba(11, 12, 16, .10);

  /* Text */
  --on-dark: #EDEEF1;
  --on-dark-mut: #9A9EA8;
  --on-dark-dim: #6E727C;
  --on-light: #14151A;
  --on-light-mut: #54585F;

  /* Adaptive spectrum (chameleon shift) — flourish only */
  --spectrum: linear-gradient(90deg, #E5162B 0%, #F0A30A 32%, #19B36B 62%, #2E7DF6 100%);

  /* Type */
  --display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout — standard container system */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --content-narrow: 720px;
  --content-reading: 42rem;
  --content-hero: 960px;
  --nav-height: 76px;

  /* Legacy aliases (used by nav + wrap) */
  --maxw: var(--container-max);
  --gut: var(--container-pad);

  --sect: clamp(3.25rem, 7vw, 7.25rem);
  --r: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--on-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink-2);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  border: 2px solid var(--ink-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 9s linear infinite;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* Ambient Glow Tracker */
.glow-tracker {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 22, 43, 0.08) 0%, rgba(229, 22, 43, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transform: translate3d(-300px, -300px, 0);
  will-change: transform;
}

img {
  max-width: 100%;
  display: block
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

::selection {
  background: var(--red);
  color: #fff
}

/* ---------- Typographic scale ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.02em
}

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
  display: inline-block
}

.eyebrow.on-light {
  color: var(--red)
}

h2.sect-title {
  font-family: var(--display);

  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.06;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.wrap--narrow {
  max-width: var(--content-narrow);
}

.wrap--reading {
  max-width: var(--content-reading);
}

.section {
  padding-block: var(--sect)
}

.section.dark {
  background: var(--ink);
  color: var(--on-dark)
}

.section.darker {
  background: var(--ink-2);
  color: var(--on-dark)
}

.section.light {
  background: var(--paper);
  color: var(--on-light);
  position: relative;
}

.section.light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(229, 22, 43, .04), transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 100%, rgba(46, 125, 246, .04), transparent 55%);
  pointer-events: none;
}

.section.dark,
.section.darker {
  position: relative;
}

.section.dark::before,
.section.darker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -20%, rgba(229, 22, 43, .06), transparent 60%);
  pointer-events: none;
}

.section .wrap {
  position: relative;
  z-index: 1;
}

.spectrum-rule {
  height: 2px;
  background: var(--spectrum);
  border: 0;
  opacity: .9
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
  padding: .92em 1.5em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--red-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .22) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .3s;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease infinite;
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -8px var(--red-glow)
}

.btn-primary svg {
  transition: transform .25s var(--ease)
}

.btn-primary:hover svg {
  transform: translateX(3px)
}

.btn-ghost {
  border: 1px solid var(--ink-line-2);
  color: var(--on-dark)
}

.btn-ghost:hover {
  border-color: #fff;
  transform: translateY(-2px)
}

.btn-ghost.on-light {
  border: 1px solid var(--paper-line);
  color: var(--on-light)
}

.btn-ghost.on-light:hover {
  border-color: var(--on-light)
}

.btn-lg {
  padding: 1.05em 1.9em;
  font-size: 1rem
}

/* =========================================================
   HEADER / NAV  (sticky + mega menu)  — PDF §1
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.125rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding .3s var(--ease);
}

.nav.scrolled {
  background: rgba(11, 12, 16, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}

.nav.scrolled .nav-inner {
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -.02em;
  color: #fff
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  position: relative;
  flex: none;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 9s linear infinite;
  box-shadow: 0 4px 16px -4px var(--red-glow);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 5px;
  background: var(--ink)
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 9s linear infinite
}

@keyframes shift {
  to {
    background-position: 200% 0
  }
}

@keyframes float {

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

  33% {
    transform: translate(18px, -22px) scale(1.04);
  }

  66% {
    transform: translate(-14px, 12px) scale(0.96);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(25, 179, 107, .18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(25, 179, 107, .08);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: .35;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .55;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes border-spin {
  to {
    --angle: 360deg;
  }
}

.brand small {
  color: var(--red);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  font-weight: 500;
  display: block;
  margin-top: -3px
}

.brand-logo {
  width: clamp(120px, 18vw, 150px);
  height: auto;
  max-height: 50px;
  flex: none;
  object-fit: contain
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav-links a,
.nav-links .has-mega>button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--on-dark-mut);
  padding: 9px 14px;
  border-radius: 9px;
  transition: color .2s, background .2s;
  position: relative;
}

.nav-links>li>a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links .has-mega:hover>button,
.nav-links .has-mega.open>button {
  color: #fff;
  background: rgba(255, 255, 255, .05)
}

.nav-links .chev {
  width: 11px;
  height: 11px;
  transition: transform .25s var(--ease)
}

.nav-links .has-mega.open .chev {
  transform: rotate(180deg)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-quote {
  font-size: .9rem;
  font-weight: 500;
  color: var(--on-dark-mut);
  transition: color .2s
}

.nav-quote:hover {
  color: #fff
}

/* Mega menu — PDF §4 services */
.has-mega {
  position: relative
}

.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(760px, 90vw);
  z-index: 999;
  background: rgba(16, 18, 24, .96);
  backdrop-filter: blur(18px);
  border: 1px solid var(--ink-line-2);
  border-radius: var(--r-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7);
}

.has-mega.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px
}

.mega-item {
  display: flex;
  gap: 13px;
  padding: 13px;
  border-radius: 13px;
  transition: background .2s;
  align-items: flex-start
}

.mega-item:hover {
  background: rgba(255, 255, 255, .05)
}

.mega-ico {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  background: rgba(229, 22, 43, .12);
  display: grid;
  place-items: center;
  color: var(--red)
}

.mega-ico svg {
  width: 18px;
  height: 18px
}

.mega-item h4 {
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px
}

.mega-item p {
  font-size: .78rem;
  color: var(--on-dark-dim);
  line-height: 1.45
}

.mega-foot {
  margin-top: 6px;
  padding: 14px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.mega-foot span {
  font-size: .85rem;
  color: var(--on-dark-mut)
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--ink-line-2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11, 12, 16, .98);
  backdrop-filter: blur(8px);
  padding: calc(var(--nav-height) + 1.5rem) var(--container-pad) 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s var(--ease), opacity .4s, visibility .4s;
  overflow-y: auto;
}

.drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible
}

.drawer a {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-line)
}

.drawer .btn {
  margin-top: 26px;
  width: 100%;
  font-size: 1.1rem;
  text-align: center;
  justify-content: center;
}

/* =========================================================
   HERO  — PDF §2
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(7rem, 16vh, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden
}

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

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5
}

.hero-bg .o1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(229, 22, 43, .5), transparent 70%);
  animation: float 14s ease-in-out infinite;
}

.hero-bg .o2 {
  width: 440px;
  height: 440px;
  bottom: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(46, 125, 246, .22), transparent 70%);
  animation: float 18s ease-in-out infinite reverse;
}

.hero-bg .o3 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 163, 10, .12), transparent 70%);
  animation: float 20s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000, transparent 75%);
  opacity: .6;
  animation: hero-grid-drift 40s linear infinite;
}

@keyframes hero-grid-drift {
  to {
    background-position: 64px 64px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  text-align: center;
  transition: opacity .15s linear;
  will-change: transform;
}

.hero-image {
  margin-bottom: 30px;
  display: flex;
  justify-content: center
}

.hero-image img {
  max-width: 200px;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px -15px var(--red-glow)
}

.hero .eyebrow {
  margin-bottom: 26px
}

.hero h1,
.hero h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  max-width: 22ch;
  margin-inline: auto;
}

.hero h1 .cycle-wrap,
.hero h2 .cycle-wrap {
  display: inline-block;
  position: relative;
  color: var(--red);
}

.hero h1 .cycle-wrap::after,
.hero h2 .cycle-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: 3px;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 6s linear infinite;
  border-radius: 2px;
  opacity: .85;
}

.cycle {
  display: inline-block;
  min-width: 1ch
}

.hero-sub {
  margin: 28px 0px 0;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: var(--on-dark-mut);
  max-width: 100%;
  line-height: 1.6
}

.hero-support {
  margin: 18px 0px 0;
  font-size: 1rem;
  color: var(--on-dark-dim);
  max-width: 100%
}

.hero-cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.hero-cta .btn {
  width: auto;
  min-width: min(100%, 260px);
}

.hero-trust {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--on-dark-dim);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap
}

.hero-trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #19B36B;
  box-shadow: 0 0 0 4px rgba(25, 179, 107, .18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* Industry ticker under hero */
.hero-ticker {
  margin-top: 54px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2
}

.hero-ticker .track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-x 32s linear infinite
}

.hero-ticker .track span {
  font-family: var(--mono);
  font-size: .85rem;
  color: #fff;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap
}

.hero-ticker .track span::after {
  content: "◆";
  color: var(--red);
  font-size: .6rem
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%)
  }
}

.hero-ticker:hover .track {
  animation-play-state: paused
}

/* =========================================================
   TRUST BADGES  — PDF §3
   ========================================================= */
.badges {
  padding-block: clamp(48px, 6vw, 72px)
}

.badges .head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px
}

.badges .head .eyebrow {
  margin: 0
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden
}

.badge {
  background: rgba(16, 18, 24, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 30px 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), background .35s var(--ease), border-color .35s, box-shadow .35s;
}

.badges-grid:not(.in) .badge {
  opacity: 0;
  transform: translateY(20px);
}

.badges-grid.in .badge {
  opacity: 1;
  transform: none;
}

.badges-grid.in .badge:nth-child(1) {
  transition-delay: .05s;
}

.badges-grid.in .badge:nth-child(2) {
  transition-delay: .12s;
}

.badges-grid.in .badge:nth-child(3) {
  transition-delay: .19s;
}

.badges-grid.in .badge:nth-child(4) {
  transition-delay: .26s;
}

.badges-grid.in .badge:nth-child(5) {
  transition-delay: .33s;
}

.badges-grid.in .badge:nth-child(6) {
  transition-delay: .4s;
}

.badge .b-ico {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 11px;
  background: rgba(229, 22, 43, .1);
  color: var(--red);
  display: grid;
  place-items: center;
  transition: transform .4s var(--ease-spring), background .3s;
}

.badge:hover .b-ico {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(229, 22, 43, .2);
}

.badge:hover {
  background: rgba(23, 26, 34, 0.85);
  border-color: rgba(229, 22, 43, 0.35);
  box-shadow: 0 12px 30px -10px rgba(229, 22, 43, 0.15);
  transform: translateY(-4px);
}

.badge .b-ico svg {
  width: 21px;
  height: 21px
}

.badge h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.01em
}

.badge-cap {
  margin-top: 30px;
  font-size: .9rem;
  color: var(--on-dark-dim);
  text-align: center
}

/* =========================================================
   SERVICES  — PDF §4
   ========================================================= */
.svc-head {
  max-width: 760px;
  margin-bottom: 56px
}

.svc-head .eyebrow {
  margin-bottom: 22px
}

.svc-head p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--on-light-mut);
  max-width: 64ch
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  overflow: hidden
}

.svc {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(11, 12, 16, 0.05);
  padding: 34px 30px;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), background .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
}

.svc-grid:not(.in) .svc {
  opacity: 0;
  transform: translateY(24px);
}

.svc-grid.in .svc {
  opacity: 1;
  transform: none;
}

.svc-grid.in .svc:nth-child(1) {
  transition-delay: .04s;
}

.svc-grid.in .svc:nth-child(2) {
  transition-delay: .08s;
}

.svc-grid.in .svc:nth-child(3) {
  transition-delay: .12s;
}

.svc-grid.in .svc:nth-child(4) {
  transition-delay: .16s;
}

.svc-grid.in .svc:nth-child(5) {
  transition-delay: .2s;
}

.svc-grid.in .svc:nth-child(6) {
  transition-delay: .24s;
}

.svc-grid.in .svc:nth-child(7) {
  transition-delay: .28s;
}

.svc-grid.in .svc:nth-child(8) {
  transition-delay: .32s;
}

.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--spectrum);
  background-size: 100% 200%;
  transition: height .4s var(--ease);
  border-radius: 0 0 2px 2px;
}

.svc:hover::before {
  height: 100%;
}

.svc:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -10px rgba(11, 12, 16, 0.06);
  border-color: rgba(229, 22, 43, 0.2);
}

.svc-num {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--red);
  letter-spacing: .1em
}

.svc-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 16px 0 18px;
  transition: background .3s
}

.svc:hover .svc-ico {
  background: var(--red)
}

.svc-ico svg {
  width: 23px;
  height: 23px
}

.svc h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px
}

.svc p {
  font-size: .95rem;
  color: var(--on-light-mut);
  line-height: 1.6
}

.svc .outcome {
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--on-light);
  display: flex;
  gap: 8px;
  align-items: baseline
}

.svc .outcome b {
  color: var(--red);
  font-weight: 600
}

.svc-cta {
  margin-top: 50px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--on-light)
}

.svc-cta a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color .2s
}

.svc-cta a:hover {
  border-color: var(--red)
}

/* =========================================================
   CASE STUDIES  — PDF §5
   ========================================================= */
#cases {
  background: none;
}

#cases::before {
  background: none;
}

.case-head {
  max-width: 760px;
  margin-bottom: 54px
}

.case-head .eyebrow {
  margin-bottom: 22px
}

.case-head p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--on-dark-mut)
}

.cases {
  display: grid;
  gap: 1.25rem;
}

.case {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  background: rgba(16, 18, 24, 0.65);
  backdrop-filter: blur(8px);
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), transform .15s var(--ease), opacity .6s var(--ease-out);
  align-items: start;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.case.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), transform .8s var(--ease-out), opacity .8s var(--ease-out);
}

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

.case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 22, 43, .06) 0%, transparent 45%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.case-image {
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}

.case-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s var(--ease);
}

.case-tag {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase
}

.case h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 14px;
  color: #fff;
  line-height: 1.1
}

.case-sub {
  font-size: .9rem;
  color: var(--on-dark-dim);
  margin-top: 10px
}

.case-body {
  display: grid;
  gap: 20px
}

.case-row b {
  display: block;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-bottom: 7px
}

.case-row.result b {
  color: #19B36B
}

.case-row p {
  font-size: .98rem;
  color: var(--on-dark-mut);
  line-height: 1.62
}

.case-row.result p {
  color: var(--on-dark)
}

/* compact "more work" grid */
.case_study_link a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease);
  display: inline-block;
}

.case_study_link a:hover {
  border-color: var(--red);
}

.case_study_link a::after {
  content: " \2192";
  /* Right arrow */
  display: inline-block;
  transition: transform .2s var(--ease);
}

.case_study_link a:hover::after {
  transform: translateX(4px);
}


.more-head {
  margin: 64px 0 26px;
  display: flex;
  align-items: center;
  gap: 16px
}

.more-head span {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  white-space: nowrap
}

.more-head .ln {
  height: 1px;
  background: var(--ink-line);
  flex: 1
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden
}

.more {
  background: rgba(16, 18, 24, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px 26px;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px
}

.more:hover {
  background: rgba(23, 26, 34, 0.85);
  border-color: rgba(229, 22, 43, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(229, 22, 43, 0.15);
}

.more .m-tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--red)
}

.more h4 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1
}

.more p {
  font-size: .92rem;
  color: var(--on-dark-mut);
  line-height: 1.58
}

.case-cta {
  margin-top: 46px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--on-dark)
}

.case-cta a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color .2s
}

.case-cta a:hover {
  border-color: var(--red)
}

/* =========================================================
   LOGO WALL  — PDF §6
   ========================================================= */
.logos-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 46px
}

.logos-head .eyebrow {
  justify-content: center;
  margin-bottom: 20px
}

.logos-head .eyebrow::before {
  display: none
}

.logos-head p {
  margin-top: 18px;
  color: var(--on-light-mut);
  font-size: 1.05rem
}

/* full-bleed marquee — stays inside viewport */
.marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: grid;
  gap: 15px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  overflow: hidden;
}

.mq-row {
  overflow: hidden
}

.mq-track {
  display: flex;
  width: max-content;
  gap: 20px;
  will-change: transform
}

.mq-track.ltr {
  animation: mq-left 42s linear infinite
}

.mq-track.rtl {
  animation: mq-right 42s linear infinite
}

.marquee:hover .mq-track {
  animation-play-state: paused
}

@keyframes mq-left {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes mq-right {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.mq-logo {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mq-logo img,
.mq-logo svg {
  height: 70px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex: none;
}

.logos-cap {
  text-align: center;
  margin-top: 30px;
  font-size: .9rem;
  color: var(--on-light-mut)
}

/* =========================================================
   WHY CHOOSE US  — PDF §7
   ========================================================= */
#why {
  padding-block: var(--sect);
}

.why {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.why-left .eyebrow {
  margin-bottom: 22px
}

.why-left h2 {
  margin-bottom: 22px
}

.why-left p {
  color: var(--on-dark-mut);
  font-size: 1.05rem;
  max-width: 42ch
}

.why-left .btn {
  margin-top: 30px
}

.why-list {
  display: grid;
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden
}

.why-list:not(.in) .why-item {
  opacity: 0;
  transform: translateX(20px);
}

.why-list.in .why-item {
  opacity: 1;
  transform: none;
}

.why-list.in .why-item:nth-child(1) {
  transition-delay: .05s;
}

.why-list.in .why-item:nth-child(2) {
  transition-delay: .1s;
}

.why-list.in .why-item:nth-child(3) {
  transition-delay: .15s;
}

.why-list.in .why-item:nth-child(4) {
  transition-delay: .2s;
}

.why-list.in .why-item:nth-child(5) {
  transition-delay: .25s;
}

.why-list.in .why-item:nth-child(6) {
  transition-delay: .3s;
}

.why-item {
  background: rgba(16, 18, 24, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px 30px;
  display: flex;
  gap: 20px;
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), background .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width .35s var(--ease);
}

.why-item:hover::after {
  width: 3px;
}

.why-item:hover {
  background: rgba(23, 26, 34, 0.85);
  border-color: rgba(229, 22, 43, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(229, 22, 43, 0.15);
}

.why-n {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--red);
  flex: none;
  padding-top: 3px
}

.why-item h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 7px
}

.why-item p {
  font-size: .93rem;
  color: var(--on-dark-mut);
  line-height: 1.6
}

/* =========================================================
   MID CTA  — PDF §8
   ========================================================= */
.midcta {
  position: relative;
  overflow: hidden;
  background: #090a0f;
  color: #fff;
  border-radius: 0;
  padding-block: var(--sect);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.midcta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(229, 22, 43, 0.38) 0%, rgba(229, 22, 43, 0.08) 50%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.midcta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.midcta-deco {
  display: none;
}

.midcta-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0 auto;
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.midcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(229, 22, 43, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 22, 43, 0.35);
  color: #ff4d61;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(229, 22, 43, 0.15);
}

.midcta-badge svg {
  color: #ff4d61;
}

.midcta h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 18px;
}

.midcta-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  max-width: 100%;
  margin-inline: auto;
  line-height: 1.4;
}

.midcta-body {
  margin-top: 14px;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
  margin-inline: auto;
  line-height: 1.6;
}

.midcta-action {
  margin-top: 36px;
}

.midcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e5162b !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 18px 38px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(229, 22, 43, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.midcta-btn svg {
  transition: transform 0.3s ease;
}

.midcta-btn:hover {
  background: #ff1e38 !important;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(229, 22, 43, 0.65), 0 0 25px rgba(255, 30, 56, 0.5);
}

.midcta-btn:hover svg {
  transform: translateX(5px);
}

.midcta-reassure {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.midcta-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.midcta-reassure svg {
  color: #4cd964;
}

.midcta-reassure .dot {
  opacity: 0.4;
  font-size: 1.2rem;
}

/* Pre-FAQ CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line)
}

.cta-band .spectrum-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.cta-band .glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-block: var(--sect);
}

.cta-band .eyebrow {
  justify-content: center;
  margin-bottom: 22px
}

.cta-band .eyebrow::before {
  display: none
}

.cta-band h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.025em;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.06;
  color: #fff
}

.cta-band p {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--on-dark-mut);
  max-width: 54ch;
  margin-inline: auto
}

.cta-band .btn {
  margin-top: 32px
}

.cta-band .reassure {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--on-dark-dim)
}

/* =========================================================
   PROCESS  — PDF §9
   ========================================================= */
.proc-section {
  background: #08090d !important;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px) !important;
  background-size: 24px 24px !important;
  position: relative;
  padding-block: var(--sect);
}

.proc-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 64px;
}

.proc-head .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.proc-head .eyebrow::before {
  display: none;
}

.proc-head p {
  margin-top: 18px;
  color: var(--on-dark-mut);
  font-size: 1.08rem;
}

.steps-container {
  position: relative;
  margin-block: 20px 40px;
}

.steps-line {
  position: absolute;
  top: 43px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  border-radius: 4px;
}

.steps-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #e5162b, #ff4d61, #e5162b);
  box-shadow: 0 0 16px #e5162b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 4px;
}

.steps-line.in::after,
.steps-container.in .steps-line::after {
  transform: scaleX(1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  position: relative;
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.in {
  opacity: 1;
  transform: translateY(0);
}

.step-num {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #06070a;
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  margin-bottom: 28px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: scale(0.9);
  transition: border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step.in .step-num {
  border-color: #e5162b;
  color: #ffffff;
  box-shadow: 0 0 28px rgba(229, 22, 43, 0.55), inset 0 0 15px rgba(229, 22, 43, 0.3);
  transform: scale(1.05);
}

.step-num::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  pointer-events: none;
  transition: border-color 0.5s ease;
}

.step.in .step-num::before {
  border-color: rgba(229, 22, 43, 0.7);
  animation: ring-rotate 25s linear infinite;
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.step:hover .step-num {
  transform: scale(1.12);
  box-shadow: 0 0 38px rgba(229, 22, 43, 0.75), inset 0 0 20px rgba(229, 22, 43, 0.4);
}

.step:hover .step-num::before {
  border-color: rgba(229, 22, 43, 1);
}

.step h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: color 0.5s ease;
}

.step.in h3 {
  color: #ffffff;
}

.step p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
  transition: color 0.5s ease;
}

.step.in p {
  color: rgba(255, 255, 255, 0.75);
}

.proc-cta {
  text-align: center;
  margin-top: 60px;
  font-size: 1.05rem;
  color: var(--on-dark);
}

.proc-cta a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.proc-cta a:hover {
  border-color: var(--red);
}

@media (max-width: 991px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .steps-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================================================
   INDUSTRIES  — PDF §10
   ========================================================= */
.ind-head {
  max-width: 720px;
  margin-bottom: 50px
}

.ind-head .eyebrow {
  margin-bottom: 22px
}

.ind-head p {
  margin-top: 18px;
  color: var(--on-light-mut);
  font-size: 1.08rem
}

.ind-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.ind-chip {
  font-size: .96rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--paper-line);
  background: var(--paper);
  color: var(--on-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), background .25s var(--ease), color .25s, border-color .25s;
}

.ind-grid:not(.in) .ind-chip {
  opacity: 0;
  transform: scale(0.92);
}

.ind-grid.in .ind-chip {
  opacity: 1;
  transform: none;
}

.ind-grid.in .ind-chip:nth-child(1) {
  transition-delay: .02s;
}

.ind-grid.in .ind-chip:nth-child(2) {
  transition-delay: .05s;
}

.ind-grid.in .ind-chip:nth-child(3) {
  transition-delay: .08s;
}

.ind-grid.in .ind-chip:nth-child(4) {
  transition-delay: .11s;
}

.ind-grid.in .ind-chip:nth-child(5) {
  transition-delay: .14s;
}

.ind-grid.in .ind-chip:nth-child(6) {
  transition-delay: .17s;
}

.ind-grid.in .ind-chip:nth-child(7) {
  transition-delay: .2s;
}

.ind-grid.in .ind-chip:nth-child(8) {
  transition-delay: .23s;
}

.ind-grid.in .ind-chip:nth-child(9) {
  transition-delay: .26s;
}

.ind-grid.in .ind-chip:nth-child(10) {
  transition-delay: .29s;
}

.ind-grid.in .ind-chip:nth-child(11) {
  transition-delay: .32s;
}

.ind-grid.in .ind-chip:nth-child(12) {
  transition-delay: .35s;
}

.ind-chip svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--red);
  transition: color .25s
}

.ind-chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px)
}

.ind-chip:hover svg {
  color: #fff
}

.ind-close {
  margin-top: 36px;
  font-size: 1rem;
  color: var(--on-light-mut)
}

.ind-close a {
  color: var(--red);
  font-weight: 600
}

/* =========================================================
   TECH STACK  — PDF §11
   ========================================================= */
.tech-head {
  max-width: 720px;
  margin-bottom: 50px
}

.tech-head .eyebrow {
  margin-bottom: 22px
}

.tech-head p {
  margin-top: 18px;
  color: var(--on-dark-mut);
  font-size: 1.08rem
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.tech-card {
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  padding: 26px 28px;
  background: var(--ink-2);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 22, 43, .3);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, .5);
}

.tech-card h3 {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--on-dark);
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  transition: border-color .2s, color .2s, transform .25s var(--ease), background-color .2s;
}

.tech-tag svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--red);
  transition: transform 0.25s ease, color 0.2s ease;
}

.tech-tag:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.tech-tag:hover svg {
  transform: scale(1.2);
}

/* Authentic Brand Colors for Tech Stack Icons */
.tag-figma svg {
  color: #F24E1E !important;
}

.tag-ps svg {
  color: #31A8FF !important;
}

.tag-ai svg {
  color: #FF9A00 !important;
}

.tag-canva svg {
  color: #00C4CC !important;
}

.tag-xd svg {
  color: #FF61F6 !important;
}

.tag-html svg {
  color: #E34F26 !important;
}

.tag-css svg {
  color: #1572B6 !important;
}

.tag-js svg {
  color: #F7DF1E !important;
}

.tag-react svg {
  color: #61DAFB !important;
}

.tag-next svg {
  color: #FFFFFF !important;
}

.tag-wp svg {
  color: #21759B !important;
}

.tag-webflow svg {
  color: #146EF5 !important;
}

.tag-python svg {
  color: #3776AB !important;
}

.tag-netlify svg {
  color: #00C7B7 !important;
}

.tag-gsc svg {
  color: #4285F4 !important;
}

.tag-ga4 svg {
  color: #E37400 !important;
}

.tag-ahrefs svg {
  color: #FF6B00 !important;
}

.tag-semrush svg {
  color: #FF642D !important;
}

.tag-schema svg {
  color: #00B4D8 !important;
}

.tag-gads svg {
  color: #4285F4 !important;
}

.tag-meta svg {
  color: #0668E1 !important;
}

.tag-gtm svg {
  color: #246FDB !important;
}

.tag-pixel svg {
  color: #0668E1 !important;
}

.tag-n8n svg {
  color: #FF6D5A !important;
}

.tag-bot svg {
  color: #10A37F !important;
}

.tag-wa svg {
  color: #25D366 !important;
}

.tag-auto svg {
  color: #F0A30A !important;
}

.tag-slack svg {
  color: #E01E5A !important;
}

.tag-gworkspace svg {
  color: #EA4335 !important;
}

.tag-pm svg {
  color: #8A2BE2 !important;
}

.tag-report svg {
  color: #00E676 !important;
}

/* =========================================================
   OUR TEAM
   ========================================================= */
.team-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px
}

.team-head .eyebrow {
  justify-content: center;
  margin-bottom: 20px
}

.team-head .eyebrow::before {
  display: none
}

.team-head p {
  margin-top: 18px;
  color: var(--on-dark-mut);
  font-size: 1.05rem
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.member {
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .3s, transform .4s var(--ease);
}

.member:hover {
  border-color: rgba(229, 22, 43, .35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(229, 22, 43, .12);
}

.member .avatar {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  position: relative;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 9s linear infinite;
  flex: none;
  box-shadow: 0 12px 35px -10px var(--red-glow);
}

.member .avatar img {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.member .avatar .mono {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--ink-2);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: .02em;
}

.member h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.f-star {
  color: var(--red);
  display: inline-flex
}

.f-star svg {
  width: 16px;
  height: 16px
}

.member .role {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px
}

.member .bio {
  font-size: .96rem;
  color: var(--on-dark-mut);
  line-height: 1.62;
  margin-top: 16px;
  max-width: 48ch;
}

.member .actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.bio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  padding: .72em 1.4em;
  border-radius: 999px;
  border: 1px solid var(--ink-line-2);
  color: #fff;
  transition: all .25s var(--ease);
}

.bio-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px)
}

.member .li-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 600;
  padding: .72em 1.3em;
  border-radius: 999px;
  border: 1px solid var(--ink-line-2);
  color: #fff;
  transition: all .25s var(--ease);
}

.member .li-btn svg {
  width: 17px;
  height: 17px
}

.member .li-btn:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  transform: translateY(-2px)
}

/* Bio modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 10, .72);
  backdrop-filter: blur(6px);
  animation: fadeIn .3s ease
}

.modal-box {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid var(--ink-line-2);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
  animation: popIn .35s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink-line-2);
  color: var(--on-dark-mut);
  display: grid;
  place-items: center;
  transition: all .2s
}

.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.modal-close svg {
  width: 18px;
  height: 18px
}

.modal-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 9s linear infinite;
  flex: none;
  box-shadow: 0 8px 25px -8px var(--red-glow);
}

.modal-avatar img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.modal-box h3 {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1
}

.modal-role {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px
}

.modal-body {
  margin-top: 20px
}

.modal-body p {
  font-size: .97rem;
  color: var(--on-dark-mut);
  line-height: 1.7;
  margin-bottom: 16px
}

.modal-body p:last-child {
  margin-bottom: 0
}

.modal .li-btn {
  margin-top: 26px;
  border: 1px solid var(--ink-line-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 600;
  padding: .72em 1.3em;
  border-radius: 999px;
  transition: all .25s var(--ease)
}

.modal .li-btn svg {
  width: 17px;
  height: 17px
}

.modal .li-btn:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  transform: translateY(-2px)
}

body.modal-open {
  overflow: hidden
}


.tst-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px
}

.tst-head .eyebrow {
  justify-content: center;
  margin-bottom: 20px
}

.tst-head .eyebrow::before {
  display: none
}

.tst-head p {
  margin-top: 18px;
  color: var(--on-light-mut);
  font-size: 1.05rem
}

.slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #fafafc 100%);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 30px 70px -15px rgba(11, 12, 16, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.slider:hover {
  border-color: rgba(229, 22, 43, 0.12);
  box-shadow: 0 40px 85px -15px rgba(11, 12, 16, 0.07);
}

.slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--spectrum);
  background-size: 200% 100%;
  animation: shift 9s linear infinite;
  z-index: 5;
  border-top-left-radius: var(--r-lg);
  border-top-right-radius: var(--r-lg);
}

.slides {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.slides-track {
  display: flex;
  transition: transform .65s var(--ease-out);
}

.slide {
  min-width: 100%;
  padding: clamp(28px, 4vw, 42px) clamp(20px, 5vw, 48px);
  background: transparent;
  text-align: center;
  position: relative;
  transition: opacity .5s var(--ease);
}

.slider.transitioning .slide {
  opacity: .7;
}

.slide .quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--red);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.slide blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -.02em;
  color: var(--on-light);
  margin: 0 auto;
  max-width: 90%;
  position: relative;
}

.slide blockquote::before {
  content: "★★★★★";
  display: block;
  color: #F0A30A;
  font-size: 1.85rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-style: normal;
  opacity: 0.9;
}

.slide cite {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  position: relative;
  padding-top: 14px;
  font-style: normal;
}

.slide cite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.slide cite strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -.01em;
  color: var(--on-light);
}

.slide cite span {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--on-light-mut);
}

.slider-ctrl {
  margin: 0;
}

.slider-ctrl button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--on-light);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-ctrl button:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(229, 22, 43, 0.22);
}

#prevSlide {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#nextSlide {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#prevSlide:hover {
  transform: translateY(-50%) scale(1.08) translateX(-2px);
}

#nextSlide:hover {
  transform: translateY(-50%) scale(1.08) translateX(2px);
}

@media (max-width: 768px) {
  #prevSlide {
    left: -10px;
  }

  #nextSlide {
    right: -10px;
  }

  #prevSlide:hover {
    transform: translateY(-50%) scale(1.05);
  }

  #nextSlide:hover {
    transform: translateY(-50%) scale(1.05);
  }
}

.dots {
  display: none;
}

.dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper-line);
  border: none;
  cursor: pointer;
  transition: background .25s, width .25s;
  padding: 0;
}

.dot-btn.active {
  background: var(--red);
  width: 16px;
  border-radius: 9px;
}

.tst-cta {
  text-align: center;
  margin-top: 46px;
  font-size: 1.05rem;
  color: var(--on-light)
}

.tst-cta a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color .2s
}

.tst-cta a:hover {
  border-color: var(--red)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ratings-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 22, 43, .12), transparent 34%),
    linear-gradient(180deg, #050101 0%, #0A0202 100%);
  color: #fff;
}

.ratings-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, rgba(229, 22, 43, .05) 58%, transparent 76%);
  pointer-events: none;
}

.ratings-section .wrap {
  position: relative;
  z-index: 1;
}

.ratings-head {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(42px, 6vw, 66px);
}

.ratings-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 6px 22px;
  border: 1px solid rgba(229, 22, 43, .65);
  border-radius: 999px;
  background: rgba(229, 22, 43, .08);
  color: #fff;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(229, 22, 43, .08);
}

.ratings-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(229, 22, 43, .9);
  flex: none;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  max-width: 1160px;
  margin: 0 auto;
}

.rating-card {
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.rating-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 22, 43, .32);
  background: rgba(255, 255, 255, .04);
}

.rating-mark {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.rating-mark.google {
  color: #4285F4;
}

.rating-mark.justdial {
  background: transparent;
}

.rating-mark.trustpilot {
  color: #00B67A;
  font-size: 1.45rem;
}

.rating-mark.clutch {
  color: #EF4335;
  border-radius: 50%;

  font-size: .9rem;
}

.rating-card>div {
  flex: 1;
  min-width: 0;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.rating-card h3 {
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F8F4E9;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.rating-stars {
  color: var(--red);
  font-size: .72rem;
  letter-spacing: 3px;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(229, 22, 43, .75);
}

.rating-card p {
  margin-top: 18px;
  color: rgba(248, 244, 233, .34);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
}

.ratings-section {
  background: var(--ink-2);
  color: var(--on-dark);
  padding-block: clamp(48px, 6vw, 72px);
}

.ratings-section::before {
  background: radial-gradient(ellipse 70% 50% at 50% -20%, rgba(229, 22, 43, .06), transparent 60%);
}

.ratings-section .wrap {
  position: relative;
  z-index: 1;
}

.ratings-head {
  justify-content: flex-start;
  margin-bottom: 36px;
}

.ratings-head .eyebrow {
  margin: 0;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: none;
  margin: 0;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.rating-card {
  min-height: auto;
  background: rgba(16, 18, 24, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0;
  box-shadow: none;
  padding: 30px 26px;
  gap: 16px;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), background .35s var(--ease), border-color .35s, box-shadow .35s;
}

.rating-card:hover {
  background: rgba(23, 26, 34, 0.85);
  border-color: rgba(229, 22, 43, 0.35);
  box-shadow: 0 12px 30px -10px rgba(229, 22, 43, 0.15);
  transform: translateY(-4px);
}

.rating-mark {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(229, 22, 43, .1);
  color: var(--red);
  font-size: 1rem;
  transition: transform .4s var(--ease-spring), background .3s;
}

.rating-card:hover .rating-mark {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(229, 22, 43, .2);
}

.rating-mark.google,
.rating-mark.trustpilot,
.rating-mark.clutch {
  color: var(--red);
}

.rating-mark.justdial {
  color: var(--red);
  font-size: .78rem;

}

.rating-mark.clutch {
  border: 0;
}

.rating-card h3 {
  color: #fff;
  font-size: 1.05rem;
}

.rating-card p {
  margin-top: 10px;
  color: var(--on-dark-dim);
  font-weight: 500;
}

.rating-stars {
  color: #F0A30A;
  text-shadow: none;
}

/* =========================================================
   FAQ  (accordion)  — PDF §13
   ========================================================= */
.faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start
}

.faq-left {
  position: sticky;
  top: 110px
}

.faq-left .eyebrow {
  margin-bottom: 22px
}

.faq-left p {
  margin-top: 18px;
  color: var(--on-dark-mut);
  font-size: 1rem;
  max-width: 34ch
}

.faq-list {
  display: grid
}

.faq-item {
  border-top: 1px solid var(--ink-line);
  transition: background .3s var(--ease);
}

.faq-item.open {
  background: rgba(255, 255, 255, .02);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--ink-line)
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  transition: color .2s
}

.faq-q:hover {
  color: var(--red)
}

.faq-icon {
  flex: none;
  width: 24px;
  height: 24px;
  position: relative
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: transform .3s var(--ease)
}

.faq-icon::before {
  top: 11px;
  left: 2px;
  width: 20px;
  height: 2px
}

.faq-icon::after {
  top: 2px;
  left: 11px;
  width: 2px;
  height: 20px
}

.faq-item.open .faq-icon::after {
  transform: scaleY(0)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.faq-a-inner {
  padding-bottom: 26px;
  color: var(--on-dark-mut);
  font-size: 1rem;
  line-height: 1.66;
  max-width: 62ch;
}

.faq-item.open .faq-a-inner {
  animation: fade-up .35s var(--ease-out);
}

/* =========================================================
   CONTACT  (form)  + final CTA
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: start
}

.contact-left .eyebrow {
  margin-bottom: 22px
}

.contact-left h2 {
  margin-bottom: 22px
}

.contact-left .lead {
  color: var(--on-dark-mut);
  font-size: 1.1rem;
  max-width: 42ch
}

.contact-points {
  margin-top: 34px;
  display: grid;
  gap: 18px
}

.cpoint {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.cpoint .ci {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 10px;
  background: rgba(229, 22, 43, .1);
  color: var(--red);
  display: grid;
  place-items: center
}

.cpoint .ci svg {
  width: 18px;
  height: 18px
}

.cpoint b {
  display: block;
  font-size: .95rem;
  color: #fff;
  font-weight: 600
}

.cpoint span {
  font-size: .9rem;
  color: var(--on-dark-mut)
}

.form {
  background: rgba(16, 18, 24, .85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.form:focus-within {
  border-color: rgba(229, 22, 43, .35);
  box-shadow: 0 20px 50px -20px rgba(229, 22, 43, .15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--ink-line-2);
  border-radius: 11px;
  padding: 13px 15px;
  color: #fff;
  font-family: var(--body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}

.field textarea {
  resize: vertical;
  min-height: 110px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 22, 43, .18)
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239A9EA8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center
}

.form .btn {
  width: 100%;
  margin-top: 6px
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--on-dark-dim)
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px
}

.form-success.show {
  display: block;
  animation: fade-up .5s var(--ease-out);
}

.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(25, 179, 107, .14);
  color: #19B36B;
  display: grid;
  place-items: center;
  margin: 0 auto 18px
}

.form-success h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px
}

.form-success p {
  color: var(--on-dark-mut);
  font-size: .95rem
}

/* =========================================================
   FOOTER  — PDF §14
   ========================================================= */
.foot {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(56px, 7vw, 84px) 0
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px
}

.foot-brand .brand {
  margin-bottom: 16px
}

.foot-brand p {
  color: var(--on-dark-mut);
  font-size: .92rem;
  line-height: 1.62;
  max-width: 34ch
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  margin-bottom: 16px
}

.foot-col ul {
  list-style: none;
  display: grid;
  gap: 11px
}

.foot-col a {
  color: var(--on-dark-mut);
  font-size: .92rem;
  transition: color .2s
}

.foot-col a:hover {
  color: #fff
}

.foot-contact p {
  color: var(--on-dark-mut);
  font-size: .92rem;
  margin-bottom: 10px;
  display: flex;
  gap: 9px;
  align-items: flex-start
}

.foot-contact p b {
  color: #fff;
  font-weight: 500
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 16px
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--ink-line-2);
  display: grid;
  place-items: center;
  color: var(--on-dark-mut);
  transition: all .25s
}

.foot-social a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.foot-social svg {
  width: 17px;
  height: 17px
}

.foot-cta-strip {
  border-top: 1px solid var(--ink-line);
  padding: clamp(1.25rem, 3vw, 1.875rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap
}

.foot-cta-strip .btn {
  flex-shrink: 0;
}

.foot-cta-strip span {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em
}

.foot-legal {
  border-top: 1px solid var(--ink-line);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.foot-legal p,
.foot-legal a {
  font-size: .82rem;
  color: var(--on-dark-dim)
}

.foot-legal a:hover {
  color: var(--on-dark-mut)
}

.foot-legal .links {
  display: flex;
  gap: 18px
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: transform, opacity;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Hero loads immediately on page open */
body.loaded .hero .reveal {
  animation: fade-up .9s var(--ease-out) backwards;
}

body.loaded .hero .reveal[data-d="1"] {
  animation-delay: .1s;
}

body.loaded .hero .reveal[data-d="2"] {
  animation-delay: .2s;
}

body.loaded .hero .reveal[data-d="3"] {
  animation-delay: .3s;
}

body.loaded .hero .reveal[data-d="4"] {
  animation-delay: .4s;
}

body.loaded .hero .reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-d="1"] {
  transition-delay: .08s
}

.reveal[data-d="2"] {
  transition-delay: .16s
}

.reveal[data-d="3"] {
  transition-delay: .24s
}

.reveal[data-d="4"] {
  transition-delay: .32s
}

/* Skip link / a11y */
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px
}

.skip:focus {
  left: 8px
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px
}

/* Floating Call + WhatsApp (bottom-left) */
.float-actions {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fab {
  display: flex;
  align-items: center;
  height: 54px;
  width: 54px;
  padding-left: 15px;
  border-radius: 999px;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .5);
  transition: width .35s var(--ease), transform .25s var(--ease), box-shadow .25s;
  animation: fab-enter .6s var(--ease-out) backwards;
}

.fab.wa {
  animation-delay: .15s;
}

@keyframes fab-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fab svg {
  width: 24px;
  height: 24px;
  flex: none
}

.fab .lbl {
  margin-left: 12px;
  padding-right: 6px;
  font-weight: 600;
  font-size: .92rem;
  opacity: 0;
  transition: opacity .22s ease
}

.fab:hover {
  width: auto;
  padding-right: 22px;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .55)
}

.fab:hover .lbl {
  opacity: 1
}

.fab.call {
  background: var(--red)
}

.fab.wa {
  background: #25D366
}

.fab.wa .lbl {
  color: #063
}

/* =========================================================
   RESPONSIVE — mobile-first breakpoints
   sm: 480px | md: 768px | lg: 1024px | xl: 1280px
   ========================================================= */

/* Large tablet / small laptop */
@media (max-width: 1200px) {
  .case {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    grid-template-areas:
      "meta body"
      "image image";
  }

  .case>div:first-child {
    grid-area: meta;
  }

  .case-body {
    grid-area: body;
  }

  .case-image {
    grid-area: image;
    max-width: 640px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 72px;
  }

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

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

  .why {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .faq-wrap,
  .contact {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .faq-left {
    position: static;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }

  .steps::after {
    display: none;
  }

  .step {
    border-top: 2px solid var(--ink-line);
    padding: 1.5rem 0;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .mega {
    width: min(680px, calc(100vw - 2rem));
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
  }

  .has-mega.open .mega {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 880px) {

  .nav-links,
  .nav-quote {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 20px;
    --container-pad: 1.25rem;
  }

  .ratings-section {
    padding-block: 64px;
  }

  .ratings-pill {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    font-size: .68rem;
    letter-spacing: .08em;
  }

  .ratings-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .rating-card {
    min-height: 104px;
  }

  .rating-row {
    justify-content: space-between;
  }

  .btn-lg {
    white-space: normal;
    line-height: 1.35;
    min-height: 3rem;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav.scrolled .nav-inner {
    padding-block: 0.875rem;
  }

  .hero h1,
  .hero h2 {
    max-width: none;
    font-size: clamp(1.85rem, 8.5vw, 2.75rem);
    line-height: 1.08;
  }

  .hero .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-trust {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
  }

  .badges-grid,
  .svc-grid,
  .tech-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .case {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "meta"
      "body";
  }

  .case>div:first-child {
    grid-area: meta;
  }

  .case-body {
    grid-area: body;
  }

  .case-image {
    grid-area: image;
    order: unset;
    max-width: none;
    width: 100%;
  }

  .more-grid {
    grid-template-columns: 1fr;
  }

  .case h3 {
    font-size: 1.4rem;
  }

  .case-head {
    max-width: 100%;
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step::before {
    left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .foot-social {
    justify-content: center;
  }

  .foot-brand .brand {
    justify-content: center;
  }

  .foot-brand .brand-logo {
    width: 180px;
    max-height: 60px;
  }

  .foot-brand p {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .foot-contact p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .foot-cta-strip {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .foot-cta-strip .btn {
    width: 100%;
    max-width: 360px;
  }

  .foot-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .foot-legal .links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    width: 100%;
  }

  .midcta-inner,
  .cta-band-inner {
    padding-inline: var(--container-pad);
  }

  .slide blockquote {
    max-width: none;
  }

  .float-actions {
    left: 1rem;
    bottom: 5.5rem;
    gap: 0.625rem;
  }

  .to-top {
    right: 1rem;
    bottom: 1rem;
    width: 46px;
    height: 46px;
  }

  .fab {
    height: 50px;
    width: 50px;
    padding-left: 13px;
  }

  .fab svg {
    width: 22px;
    height: 22px;
  }

  .mq-logo {
    padding: 0;
  }

  .mq-logo img {
    height: 45px;
    max-width: none;
  }

  .member .actions {
    flex-direction: column;
    width: 100%;
  }

  .member .actions .bio-btn,
  .member .actions .li-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ticker .track {
    gap: 2rem;
    animation-duration: 24s;
  }

  .rating-card {
    align-items: center;
    padding: 22px 18px;
    text-align: center;
  }

  .rating-row {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .rating-card p {
    margin-top: 12px;
  }

  .badges .head {
    justify-content: center;
  }

  .badge {
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .svc {
    padding: 1.5rem 1.25rem;
  }

  .case {
    padding: 1.25rem;
    gap: 1rem;
  }

  .case-body {
    gap: 14px;
  }

  .case h3 {
    font-size: 1.25rem;
    margin-top: 10px;
  }

  .case-image img {
    border-radius: var(--r);
  }

  .more-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 1.5rem;
    margin-inline: 0.5rem;
  }

  h2.sect-title {
    font-size: clamp(1.65rem, 7vw, 2rem);
    text-align: center;
  }

  .ind-head p {

    text-align: center;
  }

  .case-head p {
    text-align: center;
  }

  .tech-head p {

    text-align: center;
  }

  .svc-head p {
    text-align: center;
  }

  .contact-left p {

    text-align: center;
  }

  .ind-close {
    text-align: center;
  }

  .ind-grid {
    justify-content: center;
  }

  .why-left {
    text-align: center;
  }

  .faq-left p {
    text-align: center;
  }

  .eyebrow {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .hero-cta .btn-ghost {
    min-width: auto;
  }
}

/* Scroll to top (bottom-right) */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--ink-line-2);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .5);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s, border-color .25s
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none
}

.to-top:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px)
}

.to-top svg {
  width: 20px;
  height: 20px
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important
  }

  .reveal,
  .badges-grid:not(.in) .badge,
  .svc-grid:not(.in) .svc,
  .ind-grid:not(.in) .ind-chip,
  .case.reveal,
  .why-list:not(.in) .why-item {
    opacity: 1;
    transform: none
  }

  /* Center text for specific sections on home page in mobile */
  .home .svc-head,
  .home .svc-head *,
  .home .case-head,
  .home .case-head *,
  .home .why-left,
  .home .why-left *,
  .home .midcta-inner,
  .home .midcta-inner *,
  .home .ind-head,
  .home .ind-head *,
  .home .tech-head,
  .home .tech-head *,
  .home .contact-left,
  .home .contact-left *,
  .home .team-head,
  .home .team-head *,
  .home .head,
  .home .head * {
    text-align: center !important;
    align-items: center !important;
  }
}
}

/* =========================================================
   LEGAL / POLICY PAGES TYPOGRAPHY & LAYOUT
   ========================================================= */
.content-page {
  padding-top: calc(var(--nav-height) + 4rem);
}

.content-narrow {
  /* max-width: var(--content-narrow) !important; */
  margin-inline: auto;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  font-family: var(--display);
  color: #ffffff;
}

.meta-date {
  font-size: 0.9rem;
  color: var(--on-dark-mut);
  margin-bottom: 3rem;
  font-family: var(--mono);
}

.content-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.content-body p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--on-dark-mut);
  margin-bottom: 1.5rem;
}

.content-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.content-body li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--on-dark-mut);
  margin-bottom: 0.5rem;
}

/* ============================================================
   LEGAL PAGES  (terms, privacy, disclaimer, refund)
   ============================================================ */
main.content-narrow {
  width: 100%;
  max-width: 1280px;
  padding-inline: var(--container-pad);
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  text-align: left;
}

.page-title,
.meta-date,
.content-body,
.content-body h2,
.content-body p,
.content-body ul,
.content-body li {
  text-align: left;
}

.tegline {
  font-weight: bold !important;
  font-family: 15px !important;
}

/* Ratings strip matched to the provided reference image */
.ratings-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 98px) 0 clamp(86px, 9vw, 116px);
  background: #000000;
  color: #fff;
}

.ratings-section .wrap {
  position: relative;
  z-index: 1;
}

.ratings-head {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(52px, 6vw, 66px);
}

.ratings-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 30px;
  padding: 6px 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ratings-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00B67A;
  box-shadow: 0 0 14px rgba(0, 182, 122, .6);
  flex: none;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1168px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.rating-card {
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  box-shadow: none;
  backdrop-filter: none;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.rating-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 22, 43, .35);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.rating-mark {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

@media(max-width: 1440px) {

  .hero h1,
  .hero h2 {
    max-width: 28ch;
  }
}

.rating-mark img,
.rating-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.rating-card:hover .rating-mark {
  transform: none;
  background: transparent;
}

.rating-mark.trustpilot {
  color: #00B67A;
  font-size: 1.45rem;
}

.rating-mark.justdial {
  color: #fff;
  font-size: .68rem;
}

.rating-mark.google {
  color: #4285F4;
}

.rating-mark.clutch {
  color: #EF4335;
  border-radius: 50%;
  font-size: .9rem;
}

.rating-card>div {
  flex: 1;
  min-width: 0;
}

.rating-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  min-height: 26px;
}

.rating-card h3 {
  color: #F8F4E9;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.rating-stars {
  color: var(--red);
  font-size: .74rem;
  letter-spacing: 4px;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(229, 22, 43, .8);
}

.rating-card p {
  margin-top: 18px;
  color: rgba(248, 244, 233, .32);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
}

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

@media (max-width: 768px) {
  .ratings-section {
    padding-block: 64px;
  }

  .ratings-pill {
    max-width: 100%;
    text-align: center;
    font-size: .68rem;
    letter-spacing: .08em;
  }

  .ratings-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .rating-card {
    min-height: auto;
    align-items: flex-start;
    padding: 22px 18px;
  }

  .rating-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .rating-card p {
    margin-top: 12px;
  }
}

/* =========================================================
   ABOUT US SECTION
   ========================================================= */
.about-us {
  position: relative;
  overflow: hidden;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chameleon-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
}

.chameleon-3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(229, 22, 43, 0.15) 0%, rgba(229, 22, 43, 0) 70%);
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
}

.floating-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}

.about-values {
  margin-top: 36px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.about-values li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(229, 22, 43, 0.3);
}

.val-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--red);
}

.val-icon svg {
  width: 24px;
  height: 24px;
}

.about-values span:not(.val-icon) {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.about-cta {
  margin-top: 48px;
}

@media (max-width: 992px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-content {
    align-items: center;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}