/* ──────────────────────────────────────────────────────────────
   COLORS — Discord brand chord on a deep-indigo canvas
   Blurple owns action; green is the single high-intent CTA;
   magenta carries playful gradient energy.
   ────────────────────────────────────────────────────────────── */

:root {
  /* ── Brand & accent ───────────────────────────── */
  --color-primary: #5865f2; /* Blurple — the iconic brand colour */
  --color-on-primary: #ffffff;
  --color-green: #35ed7e; /* Electric green — highest-intent CTA only */
  --color-magenta: #ec48bd; /* Vibrant magenta — gradient panels, steps */
  --color-link: #00b0f4; /* Cyan inline link on dark */

  /* ── Surfaces (cool darks) ────────────────────── */
  --color-canvas: #0a0d3a; /* Deep-indigo page base */
  --color-surface-indigo: #1e2353; /* Raised indigo — cards, rows, ghost */
  --color-surface-onyx: #23272a; /* Classic dark-UI chrome */
  --color-surface-black: #000000; /* Full-black showcase bands */

  /* ── Text ─────────────────────────────────────── */
  --color-ink: #ffffff; /* White — dominant text on dark */
  --color-ink-dark: #000000; /* Text on light/green fills */
  --color-muted: #333333; /* Secondary text on light surfaces */
  --color-hairline: #23272a; /* Dividers / borders */

  /* ── Brand gradient mesh ──────────────────────── */
  --gradient-brand:
    radial-gradient(
      120% 120% at 12% 10%,
      #5865f2 0%,
      rgba(88, 101, 242, 0) 45%
    ),
    radial-gradient(
      120% 120% at 88% 18%,
      #ec48bd 0%,
      rgba(236, 72, 189, 0) 50%
    ),
    radial-gradient(
      140% 140% at 50% 100%,
      #2b1d6b 0%,
      rgba(43, 29, 107, 0) 55%
    ),
    #0a0d3a; /* @kind color */
  --gradient-magenta: linear-gradient(
    135deg,
    #ec48bd 0%,
    #8b3bd6 60%,
    #5865f2 120%
  ); /* @kind color */
  --gradient-blurple: linear-gradient(
    135deg,
    #5865f2 0%,
    #7a6bff 100%
  ); /* @kind color */

  /* ── Semantic aliases ─────────────────────────── */
  --text-default: var(--color-ink);
  --text-muted: var(--color-muted);
  --text-link: var(--color-link);
  --bg-page: var(--color-canvas);
  --bg-card: var(--color-surface-indigo);
  --bg-showcase: var(--color-surface-black);
  --action-default: var(--color-primary);
  --action-high: var(--color-green);
  --accent-playful: var(--color-magenta);
  --border-default: var(--color-hairline);
}

/* ──────────────────────────────────────────────────────────────
   FONTS
   Discord ships proprietary faces — ABC Ginto Nord (display),
   ABC Ginto (links/leads) and ggsans (UI body). These are NOT
   redistributable, so this rebuild substitutes the nearest
   open-source matches from Google Fonts:

     ABC Ginto Nord  →  Hanken Grotesk  (heavy geometric grotesque)
     ABC Ginto       →  Hanken Grotesk  (500 weight)
     ggsans          →  Plus Jakarta Sans (UI body)

   Keep headlines bold (700–800) and tracked tight — the loud,
   confident display weight is the brand's voice.
   ────────────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* ──────────────────────────────────────────────────────────────
   RADIUS & ELEVATION
   Soft, toy-like geometry. Depth comes from colour + gradient,
   not shadow — only one diffuse violet-tinted glow exists.
   ────────────────────────────────────────────────────────────── */

:root {
  /* Border radius — soft, generous */
  --radius-xs: 6px; /* small ghost buttons, chips */
  --radius-sm: 12px; /* primary / green CTA, links, cells */
  --radius-md: 14px; /* game-rank rows, mid controls */
  --radius-lg: 16px; /* white/ghost buttons, cards, media */
  --radius-xl: 40px; /* gradient feature panels, large media */
  --radius-pill: 50px; /* pill caps, badges, avatar chips */
  --radius-jumbo: 120px; /* signature oversized shape cards */
  --radius-full: 9999px; /* circular avatars, icon buttons */

  /* Elevation — Discord leans on colour, not shadow */
  --shadow-none: none;
  --shadow-float: 0 3px 68px rgba(69, 42, 124, 0.1); /* wide violet glow */
}

/* ──────────────────────────────────────────────────────────────
   SPACING — 8px base unit
   ────────────────────────────────────────────────────────────── */

:root {
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-xxl: 32px;
  --space-section: 40px;
}

/* ──────────────────────────────────────────────────────────────
   TYPOGRAPHY — loud all-caps display over light body
   Display: Hanken Grotesk 700–800 (sub for ABC Ginto Nord)
   Body/UI: Plus Jakarta Sans 400–500 (sub for ggsans)
   ────────────────────────────────────────────────────────────── */

:root {
  /* Display scale — ABC Ginto Nord substitute */
  --type-display-xl-size: 82px;
  --type-display-xl-weight: 800;
  --type-display-xl-lh: 1;

  --type-display-lg-size: 62px;
  --type-display-lg-weight: 800;
  --type-display-lg-lh: 1.05;

  --type-display-md-size: 56px;
  --type-display-md-weight: 700;
  --type-display-md-lh: 1.05;

  --type-heading-lg-size: 48px;
  --type-heading-lg-weight: 700;
  --type-heading-lg-lh: 1.1;

  --type-heading-sm-size: 22px;
  --type-heading-sm-weight: 700;
  --type-heading-sm-lh: 1.2;

  /* Lead / link / body — ABC Ginto & ggsans substitute */
  --type-body-lg-size: 20px;
  --type-body-lg-weight: 500;
  --type-body-lg-lh: 1.4;

  --type-link-lg-size: 18px;
  --type-link-lg-weight: 500;
  --type-link-lg-lh: 1.4;

  --type-body-size: 16px;
  --type-body-weight: 400;
  --type-body-lh: 1.5;

  --type-link-size: 16px;
  --type-link-weight: 500;
  --type-link-lh: 1.4;

  --type-link-sm-size: 14px;
  --type-link-sm-weight: 500;
  --type-link-sm-lh: 1.4;
}

/* ── Reusable type utility classes ─────────────────────────────── */
.t-display-xl {
  font-family: var(--font-display);
  font-size: var(--type-display-xl-size);
  font-weight: var(--type-display-xl-weight);
  line-height: var(--type-display-xl-lh);
  letter-spacing: -0.01em;
}
.t-display-lg {
  font-family: var(--font-display);
  font-size: var(--type-display-lg-size);
  font-weight: var(--type-display-lg-weight);
  line-height: var(--type-display-lg-lh);
  letter-spacing: -0.01em;
}
.t-display-md {
  font-family: var(--font-display);
  font-size: var(--type-display-md-size);
  font-weight: var(--type-display-md-weight);
  line-height: var(--type-display-md-lh);
  letter-spacing: -0.01em;
}
.t-heading-lg {
  font-family: var(--font-display);
  font-size: var(--type-heading-lg-size);
  font-weight: var(--type-heading-lg-weight);
  line-height: var(--type-heading-lg-lh);
}
.t-heading-sm {
  font-family: var(--font-display);
  font-size: var(--type-heading-sm-size);
  font-weight: var(--type-heading-sm-weight);
  line-height: var(--type-heading-sm-lh);
}
.t-body-lg {
  font-family: var(--font-text);
  font-size: var(--type-body-lg-size);
  font-weight: var(--type-body-lg-weight);
  line-height: var(--type-body-lg-lh);
}
.t-link-lg {
  font-family: var(--font-text);
  font-size: var(--type-link-lg-size);
  font-weight: var(--type-link-lg-weight);
  line-height: var(--type-link-lg-lh);
}
.t-body {
  font-family: var(--font-ui);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-lh);
}
.t-link {
  font-family: var(--font-text);
  font-size: var(--type-link-size);
  font-weight: var(--type-link-weight);
  line-height: var(--type-link-lh);
}
.t-link-sm {
  font-family: var(--font-text);
  font-size: var(--type-link-sm-size);
  font-weight: var(--type-link-sm-weight);
  line-height: var(--type-link-sm-lh);
}

/* =====================================================================
   Flora Fountain — Marketing Website
   Shared stylesheet for all pages
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #fbfaf6;
  --ink: #1a1626;
  --ink-2: #161225;
  --muted: #4b4658;
  --muted-2: #2e2a3a;
  --soft: #8a8496;
  --primary: #4228d0;
  --pink: #dd0568;
  --orange: #f83b21;
  --green: #00b563;
  --purple: #5c0072;
  --yellow: #ffc10e;
  --dark: #161225;
  --darker: #0f0c18;

  --font-head: "Inter Tight", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --maxw: 1280px;
}

/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

img {
  width: 100%;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--pink);
}

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

img {
  display: block;
}

input,
select,
textarea {
  font-family: var(--font-body);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

@keyframes ff-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ---------- Layout helpers ---------- */
.page {
  width: 100%;
  background: var(--bg);
  overflow-x: clip;
  position: relative;
  color: var(--ink);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section {
  padding: 0 24px 100px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.primary {
  color: var(--primary);
}
.eyebrow.pink {
  color: var(--pink);
}
.eyebrow.green {
  color: var(--green);
}
.eyebrow.orange {
  color: var(--orange);
}
.eyebrow.yellow {
  color: var(--yellow);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-2);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition:
    filter 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  font-size: 16.5px;
  padding: 17px 32px;
  box-shadow: 0 14px 30px -10px rgba(66, 40, 208, 0.5);
}
.btn-primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

.btn-gradient {
  background: linear-gradient(100deg, var(--primary), var(--pink));
  color: #fff;
  font-size: 17px;
  padding: 18px 38px;
  box-shadow: 0 20px 44px -14px rgba(66, 40, 208, 0.6);
}
.btn-gradient:hover {
  filter: brightness(1.1);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  font-size: 16.5px;
  padding: 17px 28px;
  border: 1.5px solid rgba(20, 18, 31, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-size: 16.5px;
  padding: 17px 34px;
}
.btn-white:hover {
  filter: brightness(0.96);
  color: var(--primary);
}

/* ---------- Palette utilities (per-item accents) ---------- */
.bg-primary {
  background: var(--primary);
}
.bg-pink {
  background: var(--pink);
}
.bg-green {
  background: var(--green);
}
.bg-orange {
  background: var(--orange);
}
.bg-purple {
  background: var(--purple);
}
.bg-yellow {
  background: var(--yellow);
}

.c-primary {
  color: var(--primary);
}
.c-pink {
  color: var(--pink);
}
.c-green {
  color: var(--green);
}
.c-orange {
  color: var(--orange);
}
.c-purple {
  color: var(--purple);
}
.c-yellow {
  color: var(--yellow);
}
.c-greend {
  color: #00854a;
}
.c-yellowd {
  color: #8a6200;
}
.c-ink {
  color: var(--ink-2);
}
.c-muted {
  color: var(--muted);
}

/* Soft tinted backgrounds (service blocks / chips) */
.tint-primary {
  background: rgba(66, 40, 208, 0.07);
}
.tint-pink {
  background: rgba(221, 5, 104, 0.07);
}
.tint-green {
  background: rgba(0, 181, 99, 0.07);
}
.tint-orange {
  background: rgba(248, 59, 33, 0.06);
}
.tint-purple {
  background: rgba(92, 0, 114, 0.06);
}
.tint-yellow {
  background: rgba(255, 193, 14, 0.16);
}

.grad-brand {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--pink) 60%,
    var(--purple)
  );
}

/* Circular icon tints for case-study stat markers */
.itint-primary {
  background: rgba(66, 40, 208, 0.12);
  color: var(--primary);
}
.itint-pink {
  background: rgba(221, 5, 104, 0.12);
  color: var(--pink);
}
.itint-green {
  background: rgba(0, 181, 99, 0.12);
  color: var(--green);
}
.itint-orange {
  background: rgba(248, 59, 33, 0.12);
  color: var(--orange);
}
.itint-purple {
  background: rgba(92, 0, 114, 0.12);
  color: var(--purple);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 18, 31, 0.06);
}
.nav-inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links a.active {
  font-weight: 700;
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(66, 40, 208, 0.45);
  transition: filter 0.15s ease;
}
.nav-cta:hover {
  filter: brightness(1.08);
  color: #fff;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(20, 18, 31, 0.12);
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu {
  padding: 8px 24px 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(20, 18, 31, 0.06);
  display: none;
}
.menuLinks{
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(20, 18, 31, 0.06);
  width: 100%;
}
.mobile-menu.open {
  display: flex;
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}
.logoMenu{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  /* border-bottom: 1px solid rgba(20, 18, 31, 0.06); */
}
.mobile-menu a.active {
  font-weight: 700;
  color: var(--primary);
}
.mobile-menu a.mobile-cta {
  margin-top: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border-radius: 100px;
  text-align: center;
  border-bottom: none;
}

/* =====================================================================
   IMAGE PLACEHOLDER (replaces <image-slot> drop zones)
   ===================================================================== */
.image-slot {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 12px; */
  /* background: rgba(0, 0, 0, 0.04); */
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  line-height: 1.3;
}
.image-slot.circle {
  border-radius: 50%;
}

/* =====================================================================
   HERO (Homepage)
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 24px clamp(64px, 10vw, 120px);
  overflow: clip;
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink-2);
}
.text-gradient {
  background: linear-gradient(
    100deg,
    var(--primary),
    var(--pink) 55%,
    var(--orange)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-media {
  position: relative;
  min-width: 0;
}
.hero-frame {
  position: relative;
  /* border-radius: 32px; */
  overflow: hidden;
  /* box-shadow: 0 40px 80px -30px rgba(66, 40, 208, 0.35); */
  /* aspect-ratio: 4/3; */
}
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 48px -18px rgba(20, 18, 31, 0.28);
}
.hero-badge.bl {
  bottom: -22px;
  left: -22px;
  padding: 18px 22px;
  animation: ff-float 6s ease-in-out infinite;
}
.hero-badge.tr {
  top: -18px;
  right: -16px;
  padding: 14px 18px;
  background: var(--ink-2);
  animation: ff-float 7s ease-in-out infinite 1s;
}
.hero-badge-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--primary);
}
.hero-badge-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.hero-badge-live {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* =====================================================================
   TRUSTED-BY LOGO STRIP
   ===================================================================== */
.trusted {
  padding: 36px 24px 56px;
}
.trusted-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.trusted-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 28px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}
.logo-row img {
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* =====================================================================
   PROBLEM / PROMISE
   ===================================================================== */
.pitch {
  padding: 40px 24px 96px;
}
.pitch-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pitch-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.pitch p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}
.pitch p.strong {
  color: var(--ink-2);
  font-weight: 700;
  margin: 0;
}

/* =====================================================================
   SERVICES (Homepage cards)
   ===================================================================== */
.services {
  padding: 0 24px 100px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  display: block;
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(20, 18, 31, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(20, 18, 31, 0.18);
}
.service-card.standout {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--pink) 60%,
    var(--purple)
  );
}
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.service-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card.standout h3,
.service-card.standout .service-link {
  color: #fff;
}
.service-card.standout p {
  color: rgba(255, 255, 255, 0.85);
}

/* =====================================================================
   STATS BAND (dark)
   ===================================================================== */
.stats-band {
  background: var(--ink-2);
  padding: 80px 24px;
  position: relative;
  overflow: clip;
}
.stats-band.compact {
  padding: 72px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.stats-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.stats-head .eyebrow.yellow {
  color: var(--yellow);
}
.stats-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -0.02em;
  color: #7c67e8;
}
.stat-value.warm {
  background: linear-gradient(100deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(32px, 4vw, 46px);
}
.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 8px;
}

/* =====================================================================
   CASE STUDIES (Homepage carousel)
   ===================================================================== */
.cases {
  padding: 100px 0;
}
.cases-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.cases-head .eyebrow.pink {
  color: var(--pink);
}
.cases-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 0;
  max-width: 520px;
}
.link-pill {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  border: 1.5px solid rgba(20, 18, 31, 0.16);
  padding: 14px 24px;
  border-radius: 100px;
  white-space: nowrap;
}
.link-pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.cases-track {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.case-slide {
  display: none;
}
.case-slide.active {
  display: block;
}
.case-card {
  background: var(--primary);
  width: 100%;
  border-radius: 40px;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: clip;
}
.case-top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}
.case-industry {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.case-client {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
}
.case-result {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 360px;
  margin: 0 0 24px;
}
.case-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 12px;
}
.case-btn:hover {
  color: var(--primary);
}

.case-images {
  min-width: 0;
  position: relative;
}
.case-images-grid {
  /* display: grid;
  grid-template-columns: 1fr;
  gap: 0; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.case-img-a {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  /* aspect-ratio: 4/3.4; */
  max-width: 450px;
}
.case-img-a img {
  width: 100%;
}
.case-img-b {
  border-radius: 0 24px 24px 0;
  overflow: hidden;
  aspect-ratio: 1/1.15;
  margin-top: 40px;
  box-shadow: -8px 0 0 var(--primary);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 760px;
}
.cstat-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cstat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  color: #fff;
}
.cstat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}
.cstat-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.case-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.case-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}
.case-progress {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
}
.case-progress-bar {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s;
}

/* =====================================================================
   WHY US / VALUES (tinted panel)
   ===================================================================== */
.panel {
  padding: 0 24px 100px;
}
.panel-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(66, 40, 208, 0.06),
    rgba(221, 5, 104, 0.05) 50%,
    rgba(0, 181, 99, 0.05)
  );
  border-radius: 40px;
  padding: clamp(36px, 6vw, 72px);
}
.panel-head {
  text-align: center;
  /* max-width: 620px; */
  margin: 0 auto 52px;
}
.panel-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}
.diff-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
}
.diff h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 8px;
}
.diff p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* value cards (About) sit on white inside the panel */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(20, 18, 31, 0.06);
}
.value-card .diff-mark {
  font-size: 16px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 8px;
}
.value-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* =====================================================================
   PROCESS
   ===================================================================== */
.process {
  padding: 0 24px 100px;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(20, 18, 31, 0.07);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--ink-2);
  margin: 0 0 8px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials {
  padding: 0 24px 100px;
}
.testimonials-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(20, 18, 31, 0.07);
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-2);
  margin: 0 0 22px;
  flex: 1;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink-2);
}
.testi-role {
  font-size: 13px;
  color: var(--soft);
}

/* single centered testimonial (Services) */
.quote-block {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(20, 18, 31, 0.07);
  text-align: center;
}
.quote-block .stars {
  display: block;
  font-size: 18px;
  margin-bottom: 18px;
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.quote-author {
  font-size: 14.5px;
  color: var(--soft);
  font-weight: 600;
}

/* =====================================================================
   GUARANTEE / CTA banners
   ===================================================================== */
.guarantee {
  padding: 24px 24px 100px;
}
.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    120deg,
    var(--primary),
    var(--purple) 55%,
    var(--pink)
  );
  border-radius: 36px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: clip;
}
.badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.guarantee-inner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 680px;
}
.guarantee-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-dark {
  padding: 0 24px 100px;
}
.cta-dark-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--ink-2);
  border-radius: 40px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: clip;
}
.cta-dark-inner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 680px;
}
.cta-dark-inner p {
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

.cta-gradient {
  padding: 100px 24px;
}
.cta-gradient-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    120deg,
    var(--primary),
    var(--purple) 55%,
    var(--pink)
  );
  border-radius: 40px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 64px);
  text-align: center;
}
.cta-gradient-inner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 620px;
}
.cta-gradient-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  padding: 0 24px 100px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 44px;
}
.faq-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(20, 18, 31, 0.08);
  border-radius: 18px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-2);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4f2fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--darker);
  padding: 64px 24px 28px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  grid-column: span 2;
  min-width: 240px;
}
.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin: 0 0 22px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s ease;
}
.socials a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin: 0 0 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.footer-signup {
  display: flex;
  gap: 8px;
}
.footer-signup input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: #fff;
}
.footer-signup button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 14px;
  border-radius: 100px;
}

/* =====================================================================
   MOBILE STICKY CTA
   ===================================================================== */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
}
.sticky-cta a {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 100px;
  box-shadow: 0 16px 36px -10px rgba(66, 40, 208, 0.55);
}

/* =====================================================================
   ABOUT page
   ===================================================================== */
.about-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 24px clamp(56px, 8vw, 96px);
  overflow: clip;
}
.about-hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}
.about-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink-2);
}
.about-hero p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}
.about-hero-frame {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px -30px rgba(66, 40, 208, 0.3);
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.prose h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.prose p {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 18px;
}
.prose p.strong {
  color: var(--ink-2);
  font-weight: 700;
  margin: 0;
}

.team {
  padding: 0 24px 100px;
}
.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.team-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.team-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-member {
  text-align: center;
  padding: 10px 30px;
}
.team-avatar {
  width: 240px;
  height: 240px;
  /* border-radius: 50%; */
  overflow: hidden;
  margin: 0 auto 18px;
}
.team-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  color: var(--soft);
}

.culture {
  padding: 100px 24px;
}
.culture-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.culture-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.culture-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 0;
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.culture-shot {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

/* =====================================================================
   SERVICES page
   ===================================================================== */
.svc-hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 24px clamp(48px, 7vw, 80px);
  text-align: center;
  overflow: clip;
}
.svc-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.svc-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.svc-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.svc-blocks {
  padding: 24px 24px 100px;
}
.svc-blocks-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-block {
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  scroll-margin-top: 90px;
  position: relative;
  overflow: clip;
}
.svc-block-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}
.svc-block-main {
  min-width: 0;
  flex: 1 1 340px;
}
.svc-code {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.svc-block h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.svc-block p {
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 480px;
}
.svc-block-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
}
.svc-tags {
  flex: 0 1 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-content: flex-start;
}
.svc-tag {
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* =====================================================================
   CASE STUDIES page
   ===================================================================== */
.cs-hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 24px clamp(40px, 6vw, 64px);
  text-align: center;
  overflow: clip;
}
.cs-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.cs-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.cs-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}

.filters {
  padding: 0 24px 48px;
}
.filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--muted-2);
  border: 1px solid rgba(20, 18, 31, 0.14);
}
.filter-chip.active {
  background: var(--ink-2);
  color: #fff;
  border-color: var(--ink-2);
}

.cs-list {
  padding: 0 24px 100px;
}
.cs-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cs-card {
  background: #fff;
  width: 100%;
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(20, 18, 31, 0.07);
  box-shadow: 0 20px 44px -30px rgba(20, 18, 31, 0.18);
  position: relative;
  overflow: clip;
}
.cs-top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}
.cs-industry {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cs-client {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.cs-result {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 380px;
  margin: 0 0 26px;
}
.cs-btn {
  display: inline-block;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 12px;
}
.cs-btn:hover {
  color: #fff;
  filter: brightness(1.05);
}
.cs-images {
  min-width: 0;
  position: relative;
}
.cs-images-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cs-img-a {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  /* aspect-ratio: 4/3.4; */
}
.cs-img-b {
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  aspect-ratio: 1/1.15;
  margin-top: 40px;
  box-shadow: -8px 0 0 #fff;
}
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  max-width: 760px;
  border-top: 1px solid rgba(20, 18, 31, 0.07);
  padding-top: 28px;
}
.cs-stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
}
.cs-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.cs-stat-label {
  font-size: 13.5px;
  color: var(--soft);
  margin-top: 4px;
}

.awards {
  padding: 0 24px 100px;
}
.awards-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(66, 40, 208, 0.06),
    rgba(221, 5, 104, 0.05) 50%,
    rgba(0, 181, 99, 0.05)
  );
  border-radius: 36px;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}
.award {
  text-align: center;
}
.award-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink-2);
}
.award-year {
  font-size: 13px;
  color: var(--soft);
  margin-top: 4px;
}

/* =====================================================================
   CONTACT page
   ===================================================================== */
.contact-hero {
  position: relative;
  padding: clamp(40px, 6vw, 64px) 24px 0;
  text-align: center;
  overflow: clip;
}
.contact-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.contact-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.contact-hero p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.contact-body {
  padding: 48px 24px 100px;
}
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
}
.form-card {
  background: #fff;
  border-radius: 32px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 70px -34px rgba(66, 40, 208, 0.28);
  border: 1px solid rgba(20, 18, 31, 0.06);
}
.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.form-note .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.form-note span:last-child {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.form-card h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  margin: 14px 0 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(20, 18, 31, 0.12);
  font-size: 15px;
  color: var(--ink-2);
  background: #fff;
}
.field textarea {
  resize: vertical;
}
.form-submit {
  margin-top: 8px;
  background: var(--primary) !important;
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  padding: 17px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(66, 40, 208, 0.5);
  transition: filter 0.15s ease;
}
.form-submit:hover {
  filter: brightness(1.08);
}

.form-success {
  padding: 48px 24px;
  text-align: center;
  display: none;
}
.form-success .tick-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.form-success p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
}
.form-card.submitted .contact-form {
  display: none;
}
.form-card.submitted .form-success {
  display: block;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details {
  background: var(--ink-2);
  border-radius: 28px;
  padding: 32px;
  color: #fff;
}
.contact-details h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 20px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}
.detail-value {
  font-size: 15px;
  font-weight: 600;
}
.contact-details .socials {
  margin-top: 24px;
}
.contact-details .socials a {
  background: rgba(255, 255, 255, 0.1);
}

.contact-map {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.trust-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(20, 18, 31, 0.07);
}
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-point .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-point span:last-child {
  font-size: 14.5px;
  color: var(--muted-2);
  font-weight: 600;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 899px) {
  .nav-links,
  .nav > .nav-inner > .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .sticky-cta {
    display: block;
  }

  .hero-grid,
  .about-hero-grid,
  .case-top,
  .cs-top,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-top: 8px;
  }
  .hero-badge.bl {
    left: 0;
  }
  .hero-badge.tr {
    right: 0;
  }

  .case-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #headerCTAButton{
    display: none;
  }
}

@media (max-width: 560px) {
  .case-stats,
  .cs-stats {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}


    .hero-section {
        background: #FBFAF6;
        padding: 50px 30px;
        position: relative;
        overflow: clip;
    }

    .left-content {
        color: #fff;
        padding-right: 60px;
    }

    .small-title {
        color: #6fd3ff;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .form-box {
        background: #fff;
        border-radius: 16px;
        padding: 45px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .form-box h2 {
        font-size: 42px;
        margin-bottom: 40px;
        color: #00181d;
    }

    .form-control {
        width: 100%;
        padding: 13px 16px;
        border-radius: 12px;
        border: 1.5px solid rgba(20, 18, 31, 0.12);
        font-size: 15px;
        color: var(--ink-2);
        background: #fff;
    }

    .form-control:focus {
        outline: 2px solid var(--primary);
        outline-offset: 1px;
    }

    .form-label {
        display: block;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--muted-2);
        margin-bottom: 7px;
    }

    .submit-btn:hover {
        background: #0b4d59;
    }
.partner-section{
    padding: 0 24px 50px;
}

.partner-card{
    border-radius:18px;
    /* padding:15px 15px; */
    text-align:center;
    transition:.3s;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.partner-image{
    max-width: 150px;
}


    /* performance section */

    .performance-section {
        padding: clamp(36px, 6vw, 72px);
    }

    .section-title p {
        color: #6c757d;
        font-size: 18px;
    }

    .tab-menu {
        position: sticky;
        top: 120px;
    }

    .tab-btn {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        padding: 12px 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        border: none;
        /* border-left: 4px solid transparent; */
        background: white;
        font-size: 18px;
        font-weight: 600;
        text-align: left;
        transition: .35s;
        margin-bottom: 12px;
        border-radius: 12px;
        cursor: pointer;
    }

    .tab-btn span {
        font-size: 32px;
        color: #bcbcbc;
        width: 50px;
    }

    .tab-btn:hover {
        background: #f2fbff;
    }

    .tab-btn.active {
        background: #e9fbff;
    }

    .tab-btn.active span {
        color: #00bfff;
    }

    .content-box {
        background: white;
        border-radius: 20px;
        padding: 50px;
        min-height: 600px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .content {
        display: none;
        animation: fade .4s;
    }

    .content.active {
        display: block;
    }

    .content h3 {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .content p {
        color: #666;
        line-height: 1.8;
        font-size: 18px;
    }

    .content ul {
        margin-top: 30px;
    }

    .content li {
        margin-bottom: 15px;
        font-size: 18px;
    }

    @keyframes fade {

        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }



    /* framework section */

    .framework-section {
        padding: 0 24px 100px;
        position: relative;
    }

    .timeline {
        position: relative;
        padding-left: 70px;
    }

    /* .timeline::before {
        content: "";
        position: absolute;
        left: 42px;
        top: 0;
        bottom: 0;
        width: 1.5px;
        background: #12201d;
    } */

    .timeline-item {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px;
        position: relative;
    }

    .timeline-left {
        width: 58px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .circle {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        border: 2px solid #12201d;
        background: #efefe8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 20px;
        color: #12201d;
        z-index: 2;
    }

    .active .circle {
        background: #12201d;
        color: #fff;
    }

    .small-title {
        display: block;
        font-size: 13px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #ff5b2e;
        margin-bottom: 10px;
    }

    .timeline-right h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #12201d;
    }

    .timeline-right p {
        font-size: 17px;
        line-height: 1.5;
        max-width: 800px;
        color: #5d6561;
    }

    .measurement-section {
        padding: 0 24px 100px;
        color: #000;
    }

    .section-desc {
        color: #9cb1a5;
        font-size: 26px;
        line-height: 1.5;
        max-width: 760px;
        margin-bottom: 35px;
    }

    .stack-card {
        height: 100%;
        min-height: 260px;
        border-radius: 15px;
        background-color: #fff;
        padding: 40px 24px;
        transition: .35s;
    }

    .stack-card:hover {
        background: linear-gradient(135deg, var(--primary), var(--pink) 60%, var(--purple));
    }

    .stack-card:hover span,
    .stack-card:hover h4,
    .stack-card:hover p {
        color: #fff;
    }

    .stack-card span {
        display: block;
        color: #161225;
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 22px;
    }

    .stack-card h4 {
        font-size: 32px;
        margin-bottom: 18px;
        color: #161225;
        font-weight: 700;
    }

    .stack-card p {
        color: #161225;
        line-height: 1.7;
        font-size: 18px;
        margin: 0;
    }



    /* tracking section */

    .tracking-section {
        padding: 0 24px 100px;
    }


    .tracking-content p {
        font-size: 22px;
        line-height: 1.7;
        color: #4f5c59;
        margin-bottom: 20px;
    }

    .flow {
        max-width: 600px;
        margin-left: auto;
    }

    .flow-card {
        border: 1px solid #ef5b42;
        background: #fff;
        text-align: center;
        padding: 10px;
        transition: .35s;
    }

    .flow-card span {

        display: block;
        font-size: 13px;
        color: #ef5b42;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .flow-card h4 {

        margin: 0;
        font-size: 34px;
        font-weight: 700;
        color: #0d1f21;
    }

    .arrow {
        text-align: center;
        font-size: 28px;
        color: #7f908b;
        margin: 5px 0;
    }




    /* industries section */

    .industries-section {
        padding: 0 24px 100px;
        background: #f7f7f2;
    }

    .industry-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid #ececec;
        height: 100%;
        transition: .35s;
    }

    .industry-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .industry-content {
        padding: 25px;
    }

    .industry-content h4 {
        font-size: 26px;
        margin-bottom: 0px;
        color: #161225;
    }

    .industry-content p {
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
        color: #666;
    }

    /* Responsive Tablet */

    @media(max-width:991px) {

        .left-content {
            padding-right: 0;
            margin-bottom: 50px;
        }

        .left-content p {
            font-size: 22px;
        }

        .form-box h2 {
            font-size: 34px;
        }

        .tab-menu {
            position: relative;
            top: 0;
            margin-bottom: 30px;
        }

        .content-box {
            padding: 30px;
        }

        h2 {
            font-size: 48px;
        }

        .subtitle {
            font-size: 20px;
        }

        .timeline-right h3 {
            font-size: 34px;
        }

        .timeline-right p {
            font-size: 20px;
        }

        .timeline {
            padding-left: 40px;
        }

        .timeline::before {
            left: 10px;
        }

        .circle {
            width: 48px;
            height: 48px;
            font-size: 16px;
        }

        .section-desc {
            font-size: 20px;
        }

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

        .stack-card h4 {
            font-size: 28px;
        }

        .tracking-section {
            padding: 80px 0;
        }

        .flow {
            margin: 0 auto;
        }

        .flow-card h4 {
            font-size: 28px;
        }

        .industries-section h2 {
            font-size: 42px;
        }

        .industry-card img {
            height: 180px;
        }


    }

    /* Mobile */

    @media(max-width:767px) {

        .measurement-section {
            padding: 70px 0;
        }

        .section-desc {
            font-size: 18px;
        }

        .stack-card {
            min-height: auto;
            padding: 30px 22px;
        }

        .stack-card h4 {
            font-size: 24px;
        }

        .stack-card p {
            font-size: 16px;
        }

        .tracking-content p {
            font-size: 18px;
        }

        .flow-card {
            padding: 25px 15px;
        }

        .flow-card h4 {
            font-size: 22px;
        }

        .arrow {
            font-size: 22px;
            margin: 12px 0;
        }

        .industries-section {
            padding: 70px 0;
        }

        .industries-section h2 {
            font-size: 32px;
        }

        .industries-section p {
            font-size: 17px;
        }

        .industry-card img {
            height: 200px;
        }
    }

.why-choose-section{
    padding: 0 24px 100px;
}

.comparison-table{
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--border);
    background:#fff;
    box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.table-header,
.table-row{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.table-header{
    background:#161225;
    color:#fff;
    font-weight:600;
}

.table-header div,
.table-row div{
    padding:22px 26px;
}

.table-header .agency{
    text-align:center;
    border-left:1px solid rgba(255,255,255,.08);
}

.table-header .us{
    text-align:center;
        background: linear-gradient(120deg, var(--primary), var(--purple) 55%, var(--pink));
}

.table-row{
    border-top:1px solid var(--border);
}

.table-row:nth-child(even){
    background:var(--bg);
}

.feature{
    font-weight:600;
    color:var(--dark);
}

.table-row div:nth-child(2){
    color:#777;
    border-left:1px solid var(--border);
}

.highlight{
    color:var(--primary);
    font-weight:600;
    border-left:1px solid var(--border);
    position:relative;
    padding-left:55px !important;
}

.highlight::before{
    content:"✓";
    position:absolute;
    left:25px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    border-radius:50%;
    background:rgba(0,129,138,.12);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

@media (max-width:768px){

    .section-heading h2{
        font-size:30px;
    }

    .comparison-table{
        overflow-x:auto;
    }

    .table-header,
    .table-row{
        min-width:700px;
    }
}
