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

/* =========================================================
   CSS VARIABLES — Thoughtworks-inspired editorial system
   ========================================================= */
:root {
  --dark: #000000;
  --muted: #4a4a4a;
  --blue: #163c4d;
  --blue-hover: #1f5268;
  --gold: #f2617a;
  --white: #fff;
  --light-bg: #f4f4f4;
  --border: rgba(0,0,0,0.10);
  --tw-pink: #f2617a;
  --tw-rose: #bd4257;
  --tw-navy: #163c4d;
  --serif: Bitter, "Times New Roman", serif;
  --sans: Inter, Poppins, sans-serif;
  font-family: Inter, Poppins, sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body { font-family: Inter, Poppins, sans-serif; background: #fff; color: #000; -webkit-font-smoothing: antialiased; }
.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;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: Inter, Poppins, sans-serif; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* =========================================================
   NAVBAR — exact scrobits style
   ========================================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,53,67,0.08);
  transition: box-shadow 0.3s, border-color 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(11,31,58,0.08); border-bottom-color: rgba(46,53,67,0.06); }
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  height: 44px;
  text-decoration: none;
}
#navbar .nav-logo-icon,
.nav-logo-area img.nav-logo-icon {
  display: block;
  height: 40px !important;
  width: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
.nav-logo-word {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-apps { color: #0b1f3a; }
.nav-logo-aura { color: #0279fb; }
#navbar .nav-logo-wordmark,
.nav-logo-area img.nav-logo-wordmark { display: none; }
.nav-links-ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links-ul > li { position: relative; }
.nav-links-ul > li > a,
.nav-links-ul > li > .drop-trigger {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links-ul > li > a:hover,
.nav-links-ul > li > .drop-trigger:hover,
.nav-links-ul > li:hover > .drop-trigger { color: var(--dark); background: #eef4ff; }
.nav-links-ul > li > a.active { color: var(--dark); position: relative; }
.nav-links-ul > li > a.active::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--gold);
}
.drop-arrow { font-size: 10px; transition: transform 0.2s; }
.nav-links-ul > li:hover > .drop-trigger .drop-arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10); min-width: 240px;
  padding: 8px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
.nav-links-ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 13.5px; color: var(--dark); transition: background 0.15s, color 0.15s; }
.dropdown a:hover { background: #f0f4ff; color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-contact-btn {
  background: transparent; color: var(--blue);
  padding: 8px 18px; border-radius: 6px;
  font-size: 13.5px; font-weight: 500;
  border: 1px solid var(--blue);
  min-height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-contact-btn:hover { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(68,132,228,0.28); }
.hamburger-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  border-radius: 8px;
}
.hamburger-btn span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mob-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 900; }
.mob-backdrop.show { display: block; }
.mob-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: #fff; z-index: 950; padding: 76px 28px 40px;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
}
.mob-nav.open { transform: translateX(0); }
.mob-close-btn { position: absolute; top: 20px; right: 20px; font-size: 22px; color: var(--dark); background: #f0f2f5; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mob-nav a { font-size: 16px; font-weight: 500; color: var(--dark); padding: 14px 0; min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mob-nav a:hover { color: var(--blue); }
.mob-nav .mob-cta-btn { margin-top: 16px; background: var(--blue); color: #fff; border-radius: 4px; text-align: center; justify-content: center; border-bottom: none; padding: 13px; font-weight: 600; }
.mob-acc { border-bottom: 1px solid var(--border); }
.mob-acc summary {
  list-style: none;
  font-size: 16px; font-weight: 500; color: var(--dark);
  padding: 13px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.mob-acc summary::-webkit-details-marker { display: none; }
.mob-acc summary::after { content: "+"; font-weight: 500; color: var(--muted); }
.mob-acc[open] summary::after { content: "–"; }
.mob-acc a {
  display: block;
  padding: 8px 0 8px 12px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  border-bottom: none;
}
.mob-nav > a { border-bottom: 1px solid var(--border); }

/* =========================================================
   HERO SECTION — exact scrobits design
   Background: light blue/lavender gradient
   Hex pattern: tiled, filled hexagons visible as honeycomb
   Blobs: blue-teal gradient illuminate through hex
   ========================================================= */
.hero-container {
  min-height: 560px;
  height: auto;
  text-align: left;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  position: relative; overflow: hidden;
  margin-top: 70px;
  padding: 56px 5% 64px;
  background: linear-gradient(160deg, #dce8f8 0%, #e8eef9 40%, #dde8f6 100%);
}

/* The hex pattern — tiles across entire hero
   Exact scrobits: background-attachment:fixed, background-size:400vh
   But we also add repeat so it fills edge to edge */
.hexagon {
  background: url(hexagon.svg);
  background-repeat: repeat;
  background-position: center;
  background-size: 600px;
  height: 130%;
  z-index: 2;
  position: absolute;
  width: 100%;
  top: -15%; left: 0;
  pointer-events: none;
}

/* Static glow — visible on first paint. Growing this in JS
   kept Speed Index high after FCP/LCP had already landed. */
.hexBackground {
  position: absolute;
  width: min(70vw, 720px); height: min(70vw, 720px);
  filter: blur(80px);
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #335bf4, #2ae9c9);
  z-index: 1;
  visibility: visible;
  opacity: 0.7;
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: aa-hero-glow 9s ease-in-out infinite;
}
@keyframes aa-hero-glow {
  0%, 100% { opacity: 0.62; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.82; transform: translate(-50%, -50%) scale(1.05); }
}

/* Cursor blob — 300x300, follows mouse, glows through hex */
.hexBackground2 {
  position: fixed;
  height: 300px; width: 300px;
  filter: blur(40px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #335bf4, #2ae9c9);
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Hero content — above hex layer (z-index 5) */
.hero-content {
  position: relative; z-index: 5;
  width: 100%;
  max-width: 1200px;
  display: flex; flex-direction: column; align-items: flex-start;
  margin-top: 0;
}
.hero-content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-title {
  color: #2e3543;
  font-weight: 500; font-size: clamp(32px, 4.4vw, 48px); line-height: 120%;
  font-family: Poppins, sans-serif;
}
.title-dot { margin: 0 10px; color: #2e3543; }
.hero-subtitle {
  font-weight: 400; font-size: 18px;
  padding: 20px 0 0;
  line-height: 160%;
  width: 100%; color: #3a4250;
  margin: 0;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hero-contact-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center; text-decoration: none; box-sizing: border-box;
  background: #4484e4;
  width: auto; min-width: 0; height: 48px;
  font-family: Poppins, sans-serif;
  font-weight: 500; font-size: 16px;
  line-height: 110%; padding: 0 22px;
  color: #fff; border: 1px solid #4484e4;
  margin-top: 0;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.hero-contact-btn:hover { background: #5d9eff; border-color: transparent; color: #fff; }
.hero-ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 22px;
  font-size: 16px; font-weight: 500;
  color: var(--dark); background: #fff;
  border: 1px solid rgba(46,53,67,0.18);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.hero-ghost-btn:hover { border-color: var(--gold); color: #0b1f3a; }
.hero-shot {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(46,53,67,0.08);
  box-shadow: 0 16px 40px rgba(46,53,67,0.12);
}
.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #0b1f3a;
}
.hero-shot span {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border-top: 2px solid var(--gold);
}

/* =========================================================
   INNER-PAGE HERO — static honeycomb banner for subpages
   ========================================================= */
.page-hero {
  position: relative; overflow: hidden;
  margin-top: 70px; padding: 90px 5% 64px; text-align: center;
  background: linear-gradient(160deg, #dce8f8 0%, #e8eef9 40%, #dde8f6 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: -10% 0 0 0; height: 130%;
  background: url(hexagon.svg); background-repeat: repeat; background-size: 140px;
  opacity: 0.9; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: linear-gradient(90deg, #335bf4, #2ae9c9);
  filter: blur(90px); mix-blend-mode: multiply; opacity: 0.55; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 3; max-width: 780px; margin: 0 auto; }
.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero .sec-h1 { margin-bottom: 14px; }
.page-hero .sec-p { max-width: 620px; margin: 0 auto; font-size: 17px; }
.page-breadcrumb { position: relative; z-index: 3; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.page-breadcrumb a { color: var(--blue); }
.page-breadcrumb span { margin: 0 6px; }

/* =========================================================
   STATS / NUMBERS SECTION
   ========================================================= */
.stats-section {
  padding: 60px 5%; background: #fff;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-note { max-width: 720px; margin: 18px auto 0; text-align: center; font-size: 13px; color: var(--muted); line-height: 1.6; }
.stats-note a { color: var(--blue); font-weight: 600; }
.stat-item { text-align: center; padding: 20px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }
.stat-number { font-size: clamp(36px, 4vw, 54px); font-weight: 800; letter-spacing: -0.04em; color: var(--dark); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* =========================================================
   MARQUEE / PARTNER LOGOS
   ========================================================= */
.marquee-section { padding: 48px 0; background: #f7f9fc; overflow: hidden; }
.marquee-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before,
.marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 10; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, #f7f9fc, transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, #f7f9fc, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: mq 28s linear infinite; }
.marquee-track.mq-rev { animation-direction: reverse; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-chip {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(46,53,67,0.10); border-radius: 100px;
  padding: 10px 20px; white-space: nowrap;
  font-size: 13.5px; font-weight: 600; color: var(--dark);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
.section { padding: 80px 5%; }
.section-light { background: #f7f9fc; }
.section-white { background: #fff; }
.section-dark { background: var(--dark); }
.sec-wrap { max-width: 1280px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.sec-h1 { font-size: clamp(28px, 4vw, 60px); font-weight: 400; line-height: 110%; color: var(--dark); margin-bottom: 16px; }
.sec-h1 b { font-weight: 800; }
.sec-p { font-size: 16px; color: var(--muted); line-height: 160%; max-width: 560px; }

/* =========================================================
   EXPERTISE CARDS  
   ========================================================= */
.exp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.exp-card-wrap {
  display: block;
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; background: #fff;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  cursor: pointer;
}
.exp-card-wrap:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(68,132,228,0.15); }
.exp-card-body { padding: 32px 28px; }
.exp-card-icon { font-size: 36px; margin-bottom: 18px; }
.exp-card-icon svg { width: 36px; height: 36px; color: #335bf4; display: block; }
.exp-card-wrap h2,
.exp-card-wrap h3 { font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.exp-card-wrap p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.exp-card-bar { height: 3px; background: linear-gradient(90deg, #335bf4, #2ae9c9); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.exp-card-wrap:hover .exp-card-bar { transform: scaleX(1); }
.exp-lm { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--blue); }

/* =========================================================
   SERVICES — 2x2 illustrated cards
   ========================================================= */
.svc-section { position: relative; overflow: hidden; }
.svc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(68,132,228,0.12) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}
.svc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.svc-card-v2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8px;
  align-items: center;
  min-height: 240px;
  background: #fff;
  border: 1px solid rgba(46,53,67,0.08);
  border-radius: 20px;
  padding: 28px 24px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46,53,67,0.06);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.svc-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(46,53,67,0.12);
}
.svc-card-v2::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}
.svc-blue::after { background: radial-gradient(circle at 30% 30%, #6ea8ff, #335bf4 70%); }
.svc-teal::after { background: radial-gradient(circle at 30% 30%, #5eead4, #14b8a6 70%); }
.svc-purple::after { background: radial-gradient(circle at 30% 30%, #c4b5fd, #7c3aed 70%); }
.svc-orange::after { background: radial-gradient(circle at 30% 30%, #fdba74, #f97316 70%); }

.svc-card-copy { position: relative; z-index: 2; max-width: 280px; }
.svc-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: #fff;
}
.svc-ico svg { width: 22px; height: 22px; }
.svc-blue .svc-ico { background: linear-gradient(135deg, #4484e4, #335bf4); }
.svc-teal .svc-ico { background: linear-gradient(135deg, #2dd4bf, #0d9488); }
.svc-purple .svc-ico { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.svc-orange .svc-ico { background: linear-gradient(135deg, #fb923c, #ea580c); }

.svc-card-v2 h2,
.svc-card-v2 h3 {
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px; line-height: 1.25;
}
.svc-accent {
  display: block; width: 36px; height: 3px; border-radius: 3px;
  margin-bottom: 12px;
}
.svc-blue .svc-accent { background: #4484e4; }
.svc-teal .svc-accent { background: #14b8a6; }
.svc-purple .svc-accent { background: #7c3aed; }
.svc-orange .svc-accent { background: #f97316; }

.svc-card-v2 p {
  font-size: 13.5px; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
}
.svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: #335bf4;
}
.svc-teal .svc-more { color: #0f766e; }
.svc-purple .svc-more { color: #6d28d9; }
.svc-orange .svc-more { color: #c2410c; }

.svc-card-art {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
}
.svc-card-art > img:first-child {
  width: 100%; max-width: 220px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(46,53,67,0.12));
  transition: transform 0.35s ease;
}
.svc-card-v2:hover .svc-card-art > img:first-child { transform: translateY(-4px) scale(1.03); }
.svc-globe-badge {
  position: absolute;
  top: 8px; right: 4px;
  width: 48px !important; height: 48px !important;
  max-width: 48px !important;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(249,115,22,0.25));
}

/* =========================================================
   TECH — hexagonal logo grid
   ========================================================= */
.tech-section {
  background: #fff;
  padding: 80px 0 88px;
  overflow: hidden;
  position: relative;
}
.tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(68,132,228,0.06), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(51,91,244,0.05), transparent 26%);
  pointer-events: none;
}
.tech-inner { max-width: 1100px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 1; }
.tech-header { text-align: center; margin-bottom: 48px; }
.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(68,132,228,0.10);
  color: #335bf4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tech-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.tech-title span {
  background: linear-gradient(90deg, #335bf4, #7b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tech-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.tech-hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 22px;
  max-width: 980px;
  margin: 0 auto;
}
.tech-hex {
  width: 148px;
  height: 168px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #fff;
  filter: drop-shadow(0 8px 18px rgba(46,53,67,0.12));
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: default;
}
.tech-hex:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 14px 24px rgba(68,132,228,0.22));
}
.tech-hex-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px 26px;
  background: #fff;
}
.tech-hex-inner img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}
.tech-hex-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.25;
}
.tech-hex-line {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #335bf4, #4484e4);
}
.tech-cta-wrap { text-align: center; margin-top: 44px; }
.tech-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, #335bf4, #7b5cff);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(51,91,244,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tech-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(51,91,244,0.36);
}

/* =========================================================
   PROJECTS SLIDER
   ========================================================= */
.proj-section { background: #fff; padding: 80px 0; }
.proj-section .sec-wrap { padding: 0 5%; }
.proj-section .work-grid { margin-top: 8px; }
.portfolio-products { padding-top: 24px; padding-bottom: 48px; }

/* =========================================================
   INDUSTRIES WE EMPOWER
   ========================================================= */
.industries-section {
  background: #f7f9fc;
  padding: 72px 0 80px;
}
.industries-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.industries-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.industries-title span {
  background: linear-gradient(90deg, #335bf4, #7b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industries-copy .sec-p { max-width: 520px; margin: 0; }
.industries-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.industries-art img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(46,53,67,0.12);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: #fff;
  border: 1px solid rgba(46,53,67,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(46,53,67,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(68,132,228,0.12);
}
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.industry-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.industry-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #335bf4;
}
.work-section { background: #fff; padding: 80px 5%; }
.work-header { max-width: 1280px; margin: 0 auto 40px; }
.work-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.work-card {
  display: block; background: #fff;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(46,53,67,0.10); }
.work-card img {
  width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; object-position: top center; background: #1a1f2e;
}
.work-card-body { padding: 18px 20px 20px; }
.work-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.work-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }
.work-card-more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--blue); }
.work-all { display: inline-flex; margin-top: 28px; font-size: 15px; font-weight: 700; color: var(--blue); }
.proj-header { max-width: 1280px; margin: 0 auto; padding: 0 5%; margin-bottom: 40px; }
.proj-slider-wrap { overflow: hidden; position: relative; }
.proj-slider-wrap::before,
.proj-slider-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 10; pointer-events: none; }
.proj-slider-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.proj-slider-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.proj-track-1 { display: flex; gap: 16px; width: max-content; animation: projL 40s linear infinite; }
.proj-track-1:hover { animation-play-state: paused; }
@keyframes projL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.proj-item {
  width: 420px; flex-shrink: 0; border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 16/9;
  background: #1a1f2e; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proj-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.proj-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* =========================================================
   WHY US + CONNECT
   ========================================================= */
.why-section { background: #f7f9fc; padding: 80px 5%; }
.why-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-pts { margin-top: 32px; display: flex; flex-direction: column; gap: 28px; }
.why-pt { display: flex; align-items: flex-start; gap: 20px; }
.why-num {
  font-size: 42px; font-weight: 900; line-height: 1;
  color: #335bf4; flex-shrink: 0;
  min-width: 72px; width: auto;
}
.about-stats .why-num { font-size: 40px; min-width: 68px; }
.why-pt h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.why-pt p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 420px; }
.connect-box {
  background: var(--dark);
  border-radius: 16px; padding: 44px;
  color: #fff;
}
.connect-box .tag { font-size: 11px; font-weight: 700; color: #2ae9c9; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.connect-box h2 { font-size: 36px; font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.connect-box p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.connect-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  background: #4484e4; color: #fff;
  padding: 13px 28px; border-radius: 4px;
  font-size: 15px; font-weight: 600;
  border: 1px solid #4484e4;
  transition: background 0.2s;
}
.connect-btn:hover { background: #5d9eff; }
.why-compact .why-pts { margin-top: 20px; gap: 10px; }
.why-compact .why-pt { gap: 12px; }
.why-compact .why-num { font-size: 22px; min-width: 28px; }
.why-compact .why-pts { gap: 18px; }
.why-compact .why-pt h3 { margin-bottom: 4px; }
.why-compact .why-pt p { display: block; font-size: 13.5px; max-width: 440px; }
.svc-all-wrap { text-align: center; margin-top: 32px; position: relative; z-index: 1; }
.svc-all-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--blue);
}

/* =========================================================
   PROCESS — sticky scroll (simplified)
   ========================================================= */
.process-section { background: #fff; padding: 80px 5%; }
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--border); }
.process-step { padding: 32px 24px; border-right: 1px solid var(--border); position: relative; }
.process-step:last-child { border-right: none; }
.process-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #335bf4, #2ae9c9); transform: scaleX(0); transform-origin: left; transition: transform 0.5s; }
.process-step:hover::before { transform: scaleX(1); }
.step-num { font-size: 52px; font-weight: 900; color: rgba(68,132,228,0.10); line-height: 1; margin-bottom: 18px; letter-spacing: -0.04em; }
.process-step h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* =========================================================
   CTA BANNER  
   ========================================================= */
.cta-section { background: #fff; padding: 0 5% 80px; }
.cta-banner {
  max-width: 1280px; margin: 0 auto;
  background: linear-gradient(135deg, #335bf4, #4484e4, #1dcfb4);
  border-radius: 16px; padding: 56px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 8px; }
.cta-white-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #335bf4;
  padding: 14px 32px; border-radius: 4px;
  font-size: 15px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.cta-white-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* =========================================================
   FAQ  
   ========================================================= */
.faq-section { background: #f7f9fc; padding: 80px 5%; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 500; color: var(--dark); gap: 16px; user-select: none; width: 100%; background: none; border: 0; font-family: inherit; text-align: left; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; transition: transform 0.3s, background 0.3s, border-color 0.3s; }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.4s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* =========================================================
   FOOTER — exact scrobits style
   ========================================================= */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 64px 5% 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-wrap img.footer-logo-icon,
img.footer-logo-icon {
  display: block;
  height: 40px !important;
  width: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
.footer-logo-wrap .nav-logo-word { font-size: 22px; }
.footer-logo-wrap .nav-logo-apps { color: #fff; }
.footer-logo-wrap .nav-logo-aura { color: #5d9eff; }
.footer-logo-wrap img.footer-logo-wordmark,
img.footer-logo-wordmark { display: none; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.48); line-height: 1.75; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-soc-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.2s; }
.footer-soc-btn:hover { background: var(--blue); border-color: transparent; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h5 { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.footer-col a { display: flex; align-items: center; font-size: 14px; color: rgba(255,255,255,0.48); padding: 6px 0; min-height: 36px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
#btt { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 14px rgba(68,132,228,0.4); z-index: 800; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; cursor: pointer; border: none; }
#btt.show { opacity: 1; pointer-events: auto; }
#btt:hover { transform: translateY(-3px); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.rev { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.rev.in { opacity: 1; transform: translateY(0); }
.seo-main .rev,
.seo-aside .rev,
.contact-form.rev {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .rev { opacity: 1; transform: none; transition: none; }
  .marquee-track,
  .proj-track-1 { animation: none; }
  .hero-container .hexBackground,
  .hexBackground { animation: none; }
  .ai-card:hover { transform: none; }
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: #f0f4ff; color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.contact-form { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: 0 12px 40px rgba(46,53,67,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: Poppins, sans-serif; font-size: 14px; color: var(--dark); background: #fbfcfe;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(68,132,228,0.12); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-btn {
  width: 100%; background: var(--blue); color: #fff; padding: 14px; border-radius: 6px;
  font-size: 15px; font-weight: 600; transition: background 0.2s;
}
.form-submit-btn:hover { background: var(--blue-hover); }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}
.form-status.show { display: block; }
.form-status.ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-status.err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.form-status.pending { background: #f0f4ff; color: #335bf4; border: 1px solid #c7d7fb; }

/* =========================================================
   PORTFOLIO GRID
   ========================================================= */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(68,132,228,0.15); }
.portfolio-thumb { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 42px; }
.portfolio-body { padding: 22px 20px; }
.portfolio-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; display: block; }
.portfolio-card h3 { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.portfolio-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* =========================================================
   SEO SERVICES HUB
   ========================================================= */
.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seo-hub-card {
  display: block;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(68,132,228,0.06), transparent 42%),
    #fff;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, border-color 0.3s;
}
.seo-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(68,132,228,0.35);
  box-shadow: 0 18px 40px rgba(46,53,67,0.08);
}
.seo-hub-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 14px;
}
.seo-hub-card h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.seo-hub-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.seo-hub-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.seo-secondary-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: start;
}
.seo-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-bottom: 48px;
}
.seo-outcome-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  background: var(--light-bg);
  border-radius: 12px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.55;
}
.seo-outcome-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 3px #fff;
}
.seo-cap-head { margin-bottom: 24px; }
.seo-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.seo-sub-card {
  padding: 22px 20px;
  border-top: 3px solid var(--blue);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 55%);
  border-radius: 0 0 12px 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  scroll-margin-top: 96px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.seo-sub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(46,53,67,0.07);
}
.seo-sub-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.seo-sub-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.seo-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seo-aside-card {
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.seo-aside-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.seo-toc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 340px;
  overflow-y: auto;
}
.seo-toc a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.seo-toc a:hover { background: #f0f4ff; color: var(--blue); }
.seo-toc a.is-active { background: #f0f4ff; color: var(--blue); font-weight: 600; }
.seo-toc-wrap { margin: 0; }
.seo-toc-wrap summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
}
.seo-toc-wrap summary::-webkit-details-marker { display: none; }
.seo-toc-wrap summary::after { content: ""; }
@media (min-width: 1101px) {
  .seo-toc-wrap .seo-toc { display: flex !important; }
  .seo-toc-wrap summary { pointer-events: none; cursor: default; }
}
.seo-aside-cta {
  background:
    linear-gradient(145deg, rgba(68,132,228,0.12), transparent 50%),
    var(--light-bg);
}
.seo-aside-cta p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.seo-aside-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.seo-aside-btn:hover { background: var(--blue-hover); color: #fff; }
.seo-proof-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.seo-proof-list a { font-size: 13px; color: var(--blue); font-weight: 600; }
.seo-proof-meta { font-size: 12.5px; color: var(--muted); margin: 0 0 10px; line-height: 1.5; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.stats-note {
  max-width: 1100px;
  margin: 12px auto 0;
  padding: 0 5%;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}
.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.seo-related-card {
  display: block;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.seo-related-card:hover {
  border-color: rgba(68,132,228,0.4);
  transform: translateY(-3px);
}
.seo-related-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.seo-related-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.seo-trust-strip { padding-top: 28px; padding-bottom: 28px; }
.seo-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.seo-trust-row > div {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(160deg, #f7faff, #fff);
}
.seo-trust-row strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 4px;
}
.seo-trust-row span {
  font-size: 12.5px;
  color: var(--muted);
}
.seo-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.seo-takeaway {
  padding: 24px 22px;
  border-top: 3px solid var(--blue);
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
}
.seo-takeaway h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.seo-takeaway p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.seo-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}
.seo-hub-pills li {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: #eef4ff;
  padding: 4px 8px;
  border-radius: 6px;
}
.seo-industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-industry-row span,
.seo-industry-row a {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.seo-sub-bullets {
  margin: 0 0 14px;
  padding: 0;
}
.seo-sub-bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}
.seo-sub-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.seo-prose p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 72ch;
}
.seo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0 44px;
}
.seo-two-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.seo-check-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.seo-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.seo-check-list-wide { margin-top: 12px; }
.seo-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.seo-tech-row span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  background: #eef4ff;
  border: 1px solid rgba(68,132,228,0.18);
  padding: 7px 11px;
  border-radius: 8px;
}
.seo-local-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.seo-local-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-local-meta li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.seo-local-meta a { color: var(--blue); font-weight: 600; }
.seo-local-block {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.seo-local-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.seo-local-points > div {
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light-bg);
}
.seo-local-points strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--dark);
}
.seo-local-points span {
  font-size: 12.5px;
  color: var(--muted);
}
.seo-local-cta-box {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(68,132,228,0.25);
  background: linear-gradient(160deg, #eef4ff, #fff 55%);
}
.seo-local-cta-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.seo-local-cta-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .exp-grid-2 { grid-template-columns: 1fr; }
  .svc-grid-2 { grid-template-columns: 1fr; }
  .svc-card-v2 { grid-template-columns: 1fr 0.9fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }
  .hero-content-split { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .hero-copy { max-width: none; }
  .work-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-head { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-aside { position: static; }
  .seo-toc-wrap:not([open]) .seo-toc { display: none; }
  .seo-toc-wrap summary { display: flex; justify-content: space-between; align-items: center; padding-bottom: 4px; }
  .seo-toc-wrap summary::after { content: "+"; font-weight: 500; color: var(--muted); }
  .seo-toc-wrap[open] summary::after { content: "–"; }
  .seo-related-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-outcome-list { grid-template-columns: 1fr; }
  .seo-trust-row,
  .seo-takeaway-grid { grid-template-columns: 1fr 1fr; }
  .seo-two-col,
  .seo-local-block,
  .seo-local-points { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; width: 100%; }
  .hero-container { padding: 36px 5% 40px; min-height: 0; }
  .hero-shot { max-width: 520px; }
  .nav-links-ul, .nav-contact-btn { display: none; }
  .hamburger-btn { display: flex; }
  #navbar .nav-logo-icon,
  .nav-logo-area img.nav-logo-icon {
    height: 32px !important;
    width: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
  }
  .nav-logo-word { font-size: 18px; }
  .nav-logo-area { height: 36px; gap: 8px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-grid-2, .process-grid { grid-template-columns: 1fr; }
  .svc-card-v2 { grid-template-columns: 1fr; min-height: 0; padding: 24px; }
  .svc-card-art { min-height: 150px; order: -1; }
  .svc-card-copy { max-width: none; }
  .footer-cols { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 5% 28px; }
  .footer-top { gap: 28px; margin-bottom: 32px; }
  .footer-col a { min-height: 44px; padding: 10px 0; }
  .footer-bottom { padding-top: 20px; }
  .tech-hex { width: 120px; height: 136px; }
  .tech-hex-inner img { width: 42px; height: 42px; }
  .tech-hex-name { font-size: 11px; }
  .tech-hex-grid { gap: 18px 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-head { grid-template-columns: 1fr; }
  .industries-art img { max-width: 100%; }
  .seo-hub-grid,
  .seo-sub-grid,
  .seo-related-grid,
  .seo-trust-row,
  .seo-takeaway-grid { grid-template-columns: 1fr; }
}

/* Blog */
.blog-meta { margin-top: 18px; font-size: 14px; color: var(--muted); }
.blog-layout { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) 240px; gap: 40px; padding: 0 5%; }
.blog-hero-img { width: 100%; height: auto; border-radius: 16px; margin-bottom: 28px; }
.blog-main p, .blog-main li { font-size: 16px; line-height: 1.75; color: var(--muted); }
.blog-main h2 { font-size: 26px; margin: 36px 0 12px; color: var(--dark); scroll-margin-top: 96px; }
.blog-main h3 { font-size: 18px; margin: 22px 0 8px; color: var(--dark); scroll-margin-top: 96px; }
.blog-main ul, .blog-main ol { padding-left: 22px; margin: 12px 0 20px; }
.blog-main a { color: var(--blue); }
.blog-note { background: #eef4ff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin: 16px 0; }
.blog-table-wrap { overflow-x: auto; margin: 18px 0 28px; border: 1px solid var(--border); border-radius: 12px; }
.blog-table-cap { font-size: 13px; color: var(--muted); padding: 10px 14px; background: #f7f9fc; border-bottom: 1px solid var(--border); margin: 0; }
.blog-table-wrap table { width: 100%; border-collapse: collapse; min-width: 520px; }
.blog-table-wrap th { text-align: left; background: #0b1b36; color: #fff; padding: 10px 12px; font-size: 13px; }
.blog-table-wrap td { padding: 10px 12px; font-size: 14px; border-top: 1px solid var(--border); vertical-align: top; }
.blog-toc { position: sticky; top: 96px; align-self: start; }
.blog-toc ol { padding-left: 18px; font-size: 13px; line-height: 1.6; }
.blog-toc a { color: var(--muted); }
.blog-cta { margin-top: 40px; }
.blog-related-svc { margin-top: 28px; }
.blog-faq dt { font-weight: 700; color: var(--dark); margin-top: 16px; }
.blog-faq dd { margin: 8px 0 0; color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(46,53,67,0.05);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(51,91,244,0.12);
}
.blog-card img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; background: #0b1b36; }
.blog-card > div { padding: 0 0 8px; flex: 1; display: flex; flex-direction: column; }
.blog-card > div p:not(.blog-cat):not(.blog-meta) { padding: 0 16px; flex: 1; }
.blog-card h3, .blog-card p { padding: 0 16px; }
.blog-card h2, .blog-card h3 { font-size: 18px; margin: 8px 16px; }
.blog-card h2 a, .blog-card h3 a { color: var(--dark); text-decoration: none; }
.blog-card .blog-cat { padding: 16px 16px 0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.blog-card .blog-meta { padding: 0 16px 16px; }
.blog-card-featured { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: stretch; margin-bottom: 8px; }
.blog-card-featured > div { justify-content: center; padding: 28px 8px 20px 0; }
.blog-card-featured h2 { font-size: 28px; line-height: 1.25; }
.blog-read { display: inline-block; margin: 8px 16px 16px; font-size: 14px; font-weight: 700; color: #335bf4; text-decoration: none; }
.blog-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.blog-chip { border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: 13px; color: var(--dark); text-decoration: none; background: #fff; }
.blog-chip:hover { border-color: #335bf4; color: #335bf4; }
.blog-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 40px; }
.blog-pillar {
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
}
.blog-pillar h3 { font-size: 16px; margin: 0 0 8px; color: var(--dark); }
.blog-pillar p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
.work-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px auto 0; max-width: 900px; }
.work-stat { background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; }
.work-stat strong { display: block; font-size: 26px; color: var(--dark); }
.work-stat span { font-size: 13px; color: var(--muted); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(46,53,67,0.06);
  display: flex;
  flex-direction: column;
}
.work-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #1a1f2e; }
.work-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tags span { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #335bf4; background: #eef4ff; border-radius: 999px; padding: 5px 10px; }
.work-card h3 { font-size: 22px; margin: 4px 0 0; color: var(--dark); }
.work-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin: 0; }
.work-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.work-meta div { background: #f7f9fc; border-radius: 12px; padding: 10px 12px; }
.work-meta strong { display: block; font-size: 13px; color: var(--dark); }
.work-meta span { font-size: 12px; color: var(--muted); }
.work-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.work-step { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px 18px; }
.work-step em { display: block; font-style: normal; font-weight: 800; color: #335bf4; font-size: 13px; margin-bottom: 8px; }
.work-step h3 { font-size: 16px; margin: 0 0 8px; }
.work-step p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }
.page-hero-wide .page-hero-inner { max-width: 920px; }
.page-hero-art { max-width: 920px; margin: 28px auto 0; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(11,27,54,0.18); }
.page-hero-art img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.portfolio-jump { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 22px auto 0; max-width: 920px; }
.case-list { display: flex; flex-direction: column; gap: 40px; margin-top: 36px; }
.case-study {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: start;
  scroll-margin-top: 100px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(46,53,67,0.05);
}
.case-study:nth-child(even) { grid-template-columns: 1.08fr 0.92fr; }
.case-study:nth-child(even) .case-media { order: 2; }
.case-media img { width: 100%; border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; background: #1a1f2e; display: block; }
.case-study h2 { font-size: clamp(22px, 3vw, 30px); margin: 8px 0 12px; color: var(--dark); }
.case-study .tagline { font-weight: 600; color: #335bf4; margin: 0 0 12px; }
.case-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin: 16px 0 8px; padding: 0; list-style: none; }
.case-feats li { font-size: 14px; color: var(--muted); line-height: 1.5; padding-left: 14px; position: relative; }
.case-feats li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: #335bf4; }
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; margin: 16px 0 0; padding: 0; list-style: none; }
.biz-grid li { font-size: 14px; color: var(--dark); background: #f7f9fc; border-radius: 10px; padding: 10px 12px; }
.seo-faq { margin-top: 48px; }
.seo-faq h2 { margin-bottom: 8px; }
@media (max-width: 900px) {
  .case-study, .case-study:nth-child(even) { grid-template-columns: 1fr; }
  .case-study:nth-child(even) .case-media { order: 0; }
  .case-feats, .biz-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .blog-pillars, .work-stats, .work-grid, .work-process { grid-template-columns: 1fr; }
  .work-stats { grid-template-columns: 1fr 1fr; }
}
.blog-cat-section { margin-top: 48px; scroll-margin-top: 96px; }
.blog-svc-list { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 12px 0 18px; padding: 0; list-style: none; }
@media (max-width: 900px) {
  .blog-layout, .blog-card-featured, .blog-grid { grid-template-columns: 1fr; }
  .blog-toc { position: static; }
}

/* Global SEO landing pages */
@media (max-width: 1320px) {
  .nav-links-ul { gap: 0; }
  .nav-links-ul > li > a,
  .nav-links-ul > li > .drop-trigger { padding: 8px 8px; font-size: 13px; }
}
@media (max-width: 1180px) {
  .nav-links-ul { gap: 0; }
  .nav-links-ul > li > a,
  .nav-links-ul > li > .drop-trigger { padding: 8px 7px; font-size: 12.5px; }
}
.process-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cs-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.cs-kpi { background: #f7f9fc; border: 1px solid var(--border); border-radius: 14px; padding: 16px 14px; }
.cs-kpi strong { display: block; font-size: 13px; color: var(--dark); }
.cs-kpi span { font-size: 13px; color: var(--muted); }
.seo-prose a { color: #335bf4; font-weight: 600; }
.hub-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hub-mini-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 20px; box-shadow: 0 8px 24px rgba(46,53,67,0.05);
}
.hub-mini-card:hover { border-color: #c9d8ff; }
.hub-mini-card h3 { font-size: 18px; margin: 0 0 8px; }
.hub-mini-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
.mvp-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 28px; }
.mvp-step { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; text-align: center; }
.mvp-step em { display: block; font-style: normal; font-weight: 800; color: #335bf4; font-size: 12px; margin-bottom: 6px; }
.mvp-step h3 { font-size: 14px; margin: 0 0 6px; }
.mvp-step p { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.cs-stack { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }
.cs-stack span { font-size: 12px; font-weight: 600; background: #eef4ff; color: #335bf4; border-radius: 999px; padding: 6px 10px; }
@media (max-width: 1100px) {
  .process-grid-6, .mvp-track { grid-template-columns: repeat(3, 1fr); }
  .hub-mini-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .process-grid-6, .mvp-track, .cs-kpis, .hub-mini-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TEAM PAGE
   ========================================================= */
.team-people { max-width: 1100px; margin-left: auto; margin-right: auto; }
.team-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(46,53,67,0.05);
  margin: 8px 0 48px;
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, #335bf4, #4484e4);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.team-founder h2 { font-size: clamp(22px, 3vw, 28px); margin: 0 0 6px; color: var(--dark); }
.team-founder .team-role { font-size: 14px; font-weight: 600; color: #335bf4; margin: 0 0 10px; }
.team-founder p { font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0; max-width: 640px; }
.team-founder a { color: #335bf4; font-weight: 600; }
.team-grid-intro { max-width: 720px; margin: 0 0 28px; }
.team-grid-intro h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 10px; color: var(--dark); }
.team-grid-intro p { font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(46,53,67,0.05);
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: #c9d8ff; transform: translateY(-3px); }
.team-card h3 { font-size: 16px; margin: 0; color: var(--dark); }
.team-years { font-size: 12px; font-weight: 700; color: #335bf4; letter-spacing: 0.02em; margin: 0; }
.team-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }
.team-card span { font-size: 13px; font-weight: 600; color: var(--blue); }
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .team-founder { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .team-avatar { margin: 0 auto; }
  .team-founder p { margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; }
}

.footer-cols-4 { grid-template-columns: repeat(4, 1fr); }
.faq-item.open .faq-a { max-height: 900px; }
.industry-card { display:block; padding:22px 20px; text-decoration:none; color:inherit; }
.industry-card h3 { font-size:18px; margin:0 0 8px; }
.industry-card p { font-size:14px; color:var(--muted); line-height:1.65; margin:0; }
.industries-more { margin: 28px 0 0; text-align: center; }
.industries-more a { font-size: 15px; font-weight: 700; color: var(--blue); text-decoration: none; }
.industries-more a:hover { text-decoration: underline; }
.form-note { font-size:13px; color:var(--muted); margin-top:12px; line-height:1.6; }
.gc-banner { display: none !important; }
@media (max-width: 1200px) {
  .nav-links-ul > li > a, .nav-links-ul > li > .drop-trigger { padding: 8px 8px; font-size: 13px; }
}
@media (max-width: 1100px) {
  .footer-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   SITE SEARCH + PREMIUM HOMEPAGE CHROME
   ========================================================= */
.nav-search-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--dark);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.nav-search-btn svg { width: 20px; height: 20px; display: block; }
.nav-search-btn:hover,
.nav-search-btn:focus-visible {
  background: #eef4ff; color: var(--blue); outline: none;
}
.aa-search {
  position: fixed; inset: 0; z-index: 1400;
  display: none;
}
.aa-search.is-open { display: block; }
.aa-search-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 27, 54, 0.52);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.aa-search-panel {
  position: relative;
  width: min(640px, calc(100% - 32px));
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(11, 27, 54, 0.28);
  overflow: hidden;
  max-height: min(74vh, 640px);
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.4);
}
.aa-search-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.aa-search-bar svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.aa-search-bar input {
  flex: 1; min-width: 0;
  height: 44px; border: 0; background: transparent;
  font-family: Poppins, sans-serif; font-size: 16px; color: var(--dark);
  outline: none;
}
.aa-search-esc {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--muted); background: #f4f6f9;
  border-radius: 6px; padding: 6px 9px; min-height: 32px;
}
.aa-search-esc:hover { color: var(--dark); background: #e8edf4; }
.aa-search-results {
  list-style: none; margin: 0; padding: 8px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.aa-search-results a {
  display: block; padding: 12px 14px; border-radius: 10px;
  min-height: 44px;
}
.aa-search-results a:hover,
.aa-search-results a.is-active { background: #eef4ff; }
.aa-search-cat {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 3px;
}
.aa-search-title { display: block; font-size: 14.5px; font-weight: 600; color: var(--dark); line-height: 1.35; }
.aa-search-url { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.aa-search-empty {
  padding: 28px 20px 32px; text-align: center;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.aa-search-empty a { color: var(--blue); font-weight: 600; }
.aa-search-hint {
  padding: 8px 16px 12px; font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--border);
}
body.aa-search-lock { overflow: hidden; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px; list-style: none; padding: 0;
}
.hero-trust li {
  font-size: 12.5px; font-weight: 500; color: #2e3543;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(46,53,67,0.10);
  border-radius: 999px; padding: 6px 12px;
  line-height: 1.4;
}

.ai-strip {
  background: linear-gradient(180deg, #0b1f3a 0%, #122a4d 100%);
  color: #fff;
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}
.ai-strip::before {
  content: "";
  position: absolute; width: 420px; height: 420px;
  right: -80px; top: -120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(68,132,228,0.35), transparent 68%);
  pointer-events: none;
}
.ai-strip-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.ai-strip .eyebrow { color: #8eb6ff; }
.ai-strip .sec-h1 { color: #fff; }
.ai-strip .sec-p { color: rgba(255,255,255,0.68); max-width: 560px; }
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ai-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 168px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.ai-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(93,158,255,0.45);
  transform: translateY(-2px);
}
.ai-card h3 { font-size: 16px; font-weight: 600; color: #fff; margin: 0; }
.ai-card p { font-size: 13.5px; color: rgba(255,255,255,0.64); line-height: 1.6; margin: 0; flex: 1; }
.ai-card .ai-more { font-size: 13px; color: #8eb6ff; font-weight: 600; }

@media (max-width: 1024px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .aa-search-panel {
    width: 100%; margin: 0; height: 100%; max-height: none;
    border-radius: 0;
  }
  .aa-search-bar { padding: 10px 12px; padding-top: max(10px, env(safe-area-inset-top)); }
  .ai-strip { padding: 52px 5%; }
  .ai-grid { grid-template-columns: 1fr; }
  .hero-trust { margin-top: 16px; }
  .hero-actions { margin-top: 22px; }
  .nav-contact-btn { padding: 8px 12px; }
}
@media (max-width: 390px) {
  .hero-title { font-size: 28px; }
  .hero-trust li { font-size: 12px; }
}

/* =========================================================
   PRODUCT-ENGINEERING CHROME + HOMEPAGE
   ========================================================= */
#navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
#navbar.scrolled { box-shadow: none; border-bottom-color: #eee; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  max-width: none;
  width: 100%;
  padding: 0 28px 0 36px;
  gap: 16px;
}
#navbar .nav-logo-word::before {
  content: "/";
  color: #ff4d7d;
  font-weight: 700;
  margin-right: 1px;
}
.nav-logo-apps, .nav-logo-aura { color: #163c4d; }
.nav-logo-word {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
}
#navbar .nav-logo-icon,
.nav-logo-area img.nav-logo-icon {
  height: 36px !important;
  width: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
}
.nav-links-ul {
  flex: 1;
  justify-content: center;
  gap: 0;
}
.nav-links-ul > li > a,
.nav-links-ul > li > .drop-trigger {
  color: #111;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 11px;
  border-radius: 0;
}
.nav-links-ul > li > a:hover,
.nav-links-ul > li > .drop-trigger:hover,
.nav-links-ul > li:hover > .drop-trigger {
  color: #ff4d7d;
  background: transparent;
}
.nav-links-ul > li > a.active { color: #ff4d7d; }
.nav-links-ul > li > a.active::after {
  display: block;
  background: #ff4d7d;
  height: 2px;
  bottom: 2px;
  left: 11px;
  right: 11px;
  border-radius: 2px;
}
.drop-arrow { display: none; }
.dropdown { border-radius: 12px; border-color: #eee; box-shadow: 0 12px 32px rgba(0,0,0,0.08); top: 100%; }
.dropdown a:hover { background: #f6f6f6; color: #ff4d7d; }
.nav-right { gap: 10px; }
#navbar .nav-contact-btn {
  background: #ff4d7d;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 0 18px;
  min-height: 40px;
  border-radius: 999px;
  gap: 6px;
}
#navbar .nav-contact-btn:hover {
  background: #e63e6c;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 77, 125, 0.28);
}
.nav-search-btn {
  color: #111;
  border-radius: 999px;
  height: 40px;
  width: 40px;
}
.nav-search-btn::after { content: none; }
.nav-search-btn:hover,
.nav-search-btn:focus-visible { background: #f6f6f6; color: #ff4d7d; }
.hamburger-btn span { background: #111; }

.page-hero {
  margin-top: 72px;
  background: #fff;
  padding: 72px 5% 56px;
  text-align: left;
}
.page-hero::before, .page-hero::after { display: none; }
.page-hero .sec-h1 { font-family: var(--serif); font-weight: 900; color: #000; }
.page-hero .eyebrow { color: var(--tw-pink); }

.tw-home .hero-container {
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  padding: 36px 5% 72px;
  background: linear-gradient(180deg, #e7f3fb 0%, #f4f9fd 42%, #ffffff 100%);
  justify-content: center;
  align-items: stretch;
}
.tw-home .hexBackground,
.tw-home .hexBackground2,
.tw-home .hexagon { display: none; }
.tw-hero-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.tw-fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.tw-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  will-change: transform;
  animation: tw-float 16s ease-in-out infinite;
}
.tw-orb-a {
  width: 280px; height: 280px; right: 18%; top: 12%;
  background: radial-gradient(circle, rgba(242,97,122,0.32), transparent 68%);
  animation-duration: 18s;
}
.tw-orb-b {
  width: 420px; height: 420px; right: -6%; bottom: -10%;
  background: radial-gradient(circle, rgba(255,160,90,0.26), transparent 70%);
  animation-duration: 22s;
  animation-delay: -6s;
}
.tw-orb-c {
  width: 180px; height: 180px; left: 8%; top: 22%;
  background: radial-gradient(circle, rgba(180,220,255,0.55), transparent 70%);
  animation-duration: 14s;
  animation-delay: -3s;
}
.tw-cube {
  position: absolute;
  width: 88px; height: 88px;
  border: 1px solid rgba(22,60,77,0.18);
  background: rgba(255,255,255,0.28);
  transform: rotate(18deg) skewY(-8deg);
  will-change: transform;
  animation: tw-spin 28s linear infinite;
}
.tw-cube-a { right: 22%; top: 22%; width: 120px; height: 120px; animation-duration: 32s; }
.tw-cube-b { right: 10%; top: 48%; width: 70px; height: 70px; border-color: rgba(242,97,122,0.35); animation-duration: 24s; animation-direction: reverse; }
.tw-cube-c { right: 30%; bottom: 14%; width: 54px; height: 54px; animation-duration: 36s; }
.tw-flake {
  position: absolute;
  width: 18px; height: 18px;
  background: rgba(242,97,122,0.45);
  border-radius: 40% 60% 55% 45%;
  filter: blur(0.2px);
  animation: tw-drift 20s linear infinite;
  opacity: 0.7;
}
.tw-flake-a { left: 22%; top: 18%; animation-duration: 18s; }
.tw-flake-b { left: 48%; top: 8%; width: 12px; height: 12px; background: rgba(22,60,77,0.18); animation-duration: 26s; animation-delay: -8s; }
.tw-flake-c { right: 28%; bottom: 28%; width: 22px; height: 14px; background: rgba(255,140,70,0.4); animation-duration: 22s; animation-delay: -4s; }
.tw-flake-d { left: 62%; bottom: 18%; width: 10px; height: 10px; background: rgba(255,255,255,0.8); animation-duration: 16s; }
@keyframes tw-float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-22px,0) scale(1.06); }
}
@keyframes tw-spin {
  from { transform: rotate(18deg) skewY(-8deg); }
  to { transform: rotate(378deg) skewY(-8deg); }
}
@keyframes tw-drift {
  0% { transform: translate3d(0, 40px, 0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.75; }
  88% { opacity: 0.6; }
  100% { transform: translate3d(40px, -220px, 0) rotate(180deg); opacity: 0; }
}
@keyframes tw-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes tw-ken {
  from { transform: scale(1) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(-1.5%, 0, 0); }
}
@keyframes tw-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.tw-scroll {
  position: absolute; left: 50%; bottom: 22px; z-index: 3;
  color: #163c4d; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-left: -22px;
  animation: tw-bounce 2s ease-in-out infinite;
}
.tw-pause {
  position: absolute;
  right: 5%;
  bottom: 22px;
  z-index: 4;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(22,60,77,0.12);
  color: #163c4d;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tw-pause:hover { background: #fff; color: #ff4d7d; }
.tw-home.is-fx-paused .tw-orb,
.tw-home.is-fx-paused .tw-cube,
.tw-home.is-fx-paused .tw-flake,
.tw-home.is-fx-paused .tw-scroll,
.tw-home.is-fx-paused .pe-hero-visual img {
  animation-play-state: paused;
}
.tw-home .hero-content {
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.tw-home .hero-content-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: center;
}
.tw-home .hero-copy {
  max-width: 540px;
  animation: tw-rise 0.9s ease both;
  position: relative;
  z-index: 2;
}
.tw-home .hero-title {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #111;
  display: flex; flex-direction: column; gap: 4px;
}
.tw-home .hero-title .tw-accent { color: #ff4d7d; }
.tw-home .hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: #555;
  padding-top: 18px;
  max-width: 460px;
}
.pe-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3b6fd4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pe-btn-primary,
.pe-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.pe-btn-primary {
  background: #ff4d7d;
  color: #fff;
}
.pe-btn-primary:hover { background: #e63e6c; color: #fff; }
.pe-btn-ghost {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}
.pe-btn-ghost:hover { border-color: #ff4d7d; color: #ff4d7d; }
.tw-home .hero-actions { margin-top: 26px; gap: 12px; }
.pe-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}
.pe-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
}
.pe-checks li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff4d7d url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.2l2.4 2.4L12 5.4'/></svg>") center / 12px 12px no-repeat;
  flex-shrink: 0;
}
.pe-hero-visual {
  position: relative;
  min-width: 0;
  animation: tw-rise 1.05s ease 0.12s both;
  overflow: hidden;
  border-radius: 18px;
}
.pe-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  animation: tw-ken 18s ease-in-out infinite alternate;
  will-change: transform;
}
.pe-note {
  position: absolute;
  font-family: Caveat, cursive;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  color: #163c4d;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  pointer-events: none;
}
.pe-note-a { top: 8%; left: 38%; transform: rotate(-8deg); }
.pe-note-b { top: 10%; right: 6%; transform: rotate(8deg); }

.pe-stats {
  padding: 8px 5% 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.pe-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 28px 0 32px;
}
.pe-stats-inner > div {
  text-align: center;
  padding: 4px 12px;
  position: relative;
}
.pe-stats-inner > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: #eee;
}
.pe-stats-inner strong {
  display: block;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1.1;
}
.pe-stats-inner span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #777;
  font-weight: 500;
}

.pe-logos {
  padding: 22px 5% 10px;
  text-align: center;
  background: #fff;
}
.pe-logos p {
  margin: 0 0 14px;
  font-size: 13px;
  color: #888;
  font-weight: 500;
}
.pe-logos ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 36px;
  max-width: 1240px;
  margin: 0 auto;
}
.pe-logos li {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #b0b4ba;
}

.pe-what {
  padding: 72px 5% 28px;
  background: #fff;
}
.pe-what-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}
.pe-what-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff4d7d;
}
.pe-what h2 {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #111;
  margin: 0;
}
.pe-what h2 em { font-style: normal; color: #ff4d7d; }
.pe-what p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 16px;
}
.tw-editorial { padding: 88px 6% 40px; text-align: center; background: #fff; }
.tw-editorial-mute { background: #f6f7f8; padding-bottom: 72px; }
.tw-editorial-inner { max-width: 760px; margin: 0 auto; }
.tw-editorial h2,
.tw-work-head h2,
.tw-insights h2,
.tw-why h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25; color: #000; margin: 0 0 16px;
}
.tw-editorial h2 em,
.tw-insights h2 em { font-style: italic; color: var(--tw-pink); font-weight: 900; }
.tw-editorial p,
.tw-insights .tw-editorial-inner p {
  font-size: 16px; line-height: 1.7; color: #333; margin: 0 auto 22px; max-width: 640px;
}
.tw-text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px; color: #000;
}
.tw-text-link span { color: var(--tw-rose); font-weight: 700; }
.tw-text-link:hover { color: var(--tw-pink); }
.tw-ai-links {
  max-width: 1100px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.tw-ai-links a {
  background: #fff; padding: 28px 22px; text-align: left;
  min-height: 140px; display: flex; flex-direction: column; gap: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 22px; color: #000;
}
.tw-ai-links a span { font-family: var(--sans); font-weight: 400; font-size: 14px; color: #555; line-height: 1.5; }
.tw-ai-links a:hover { color: var(--tw-pink); background: #fafafa; }

.tw-work, .tw-insights, .tw-why { padding: 72px 6%; background: #fff; }
.tw-work-head {
  max-width: 1200px; margin: 0 auto 36px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.tw-card-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.tw-card-grid-overlap {
  gap: 48px 56px;
  padding-bottom: 72px;
  align-items: start;
}
.tw-card-grid-overlap .tw-card:nth-child(even) {
  margin-top: 72px;
}
.tw-card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tw-card {
  position: relative; display: block; background: #eef2f4; min-height: 280px; overflow: hidden;
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), box-shadow 0.45s;
}
.tw-card img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.22,1,.36,1);
}
.tw-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(22,60,77,0.12); }
.tw-card:hover img { transform: scale(1.07); }
.tw-card-body {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: #fff; padding: 22px 22px 18px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.tw-card:hover .tw-card-body { transform: translateY(0); }
.tw-card-plain { background: #f6f7f8; min-height: 0; }
.tw-card-plain .tw-card-body { position: static; }
.tw-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tw-rose); margin: 0 0 8px; }
.tw-card h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1.3; margin: 0 0 14px; color: #000; }
.tw-card-body > span { font-weight: 600; font-size: 15px; color: #000; }
.tw-card-body > span span { color: var(--tw-rose); }
.tw-card:hover h3 { color: var(--tw-pink); }
.tw-note { max-width: 1200px; margin: 20px auto 0; font-size: 13px; color: #666; }
.tw-card-plain:hover { transform: none; box-shadow: none; }
.tw-card-plain:hover img { transform: none; }

.tw-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.22,1,.36,1);
}
.tw-reveal.is-in { opacity: 1; transform: none; }

.tw-why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  text-align: left;
}
.tw-why .tw-editorial-inner { text-align: center; margin-bottom: 40px; }
.tw-why-grid h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 8px; }
.tw-why-grid p { font-size: 15px; color: #444; line-height: 1.65; margin: 0; }
.tw-mvp { max-width: 1100px; margin: 40px auto 0; font-size: 15px; color: #333; line-height: 1.7; }

.tw-cta-banner {
  background: var(--tw-navy); color: #fff;
  padding: 64px 6%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  max-width: none;
}
.tw-cta-banner h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.25;
  margin: 0; max-width: 720px; color: #fff;
}
.tw-cta-btn {
  background: var(--tw-rose); color: #fff;
  padding: 20px 32px; font-size: 18px; font-weight: 600;
  white-space: nowrap; border-radius: 0;
}
.tw-cta-btn:hover { background: #a8384c; color: #fff; }

.site-footer {
  background: #fff; color: #222; padding: 56px 5% 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-logo-wrap .nav-logo-apps,
.footer-logo-wrap .nav-logo-aura { color: #000; }
.footer-brand p { color: #555; }
.footer-col h5 {
  color: #000; text-transform: none; letter-spacing: 0;
  font-size: 15px; font-weight: 700; margin-bottom: 14px;
}
.footer-col a { color: #444; min-height: 32px; padding: 4px 0; }
.footer-col a:hover { color: var(--tw-pink); }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); }
.footer-bottom p { color: #777; }
.footer-soc-btn { background: transparent; border: 0; color: var(--tw-rose); font-weight: 700; }
.footer-soc-btn:hover { background: transparent; color: var(--tw-pink); }

.tw-home .faq-section { background: #fff; padding: 72px 5%; }
.tw-home .faq-inner { max-width: 800px; }
.tw-home .faq-section .sec-h1,
.tw-home .faq-section h2.sec-h1 {
  font-family: var(--serif); font-weight: 900; color: #000;
}
.tw-home .eyebrow { color: var(--tw-rose); font-weight: 700; letter-spacing: 0.04em; }
#btt { background: var(--tw-navy); color: #fff; border-radius: 0; }

.aa-search-panel { border-radius: 0; }
.aa-search-cat { color: var(--tw-rose); }
.aa-search-results a:hover, .aa-search-results a.is-active { background: #f6f6f6; }

@media (prefers-reduced-motion: reduce) {
  .tw-orb, .tw-cube, .tw-flake, .tw-scroll, .pe-hero-visual img,
  .tw-home .hero-copy, .pe-hero-visual { animation: none; }
  .tw-reveal { opacity: 1; transform: none; transition: none; }
  .tw-card img, .tw-card, .tw-card-body { transition: none; }
}

@media (max-width: 1180px) {
  .nav-links-ul, #navbar .nav-contact-btn { display: none; }
  .hamburger-btn { display: flex; }
  .nav-wrap { padding: 0 16px 0 20px; height: 70px; min-height: 70px; }
  .pe-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .pe-stats-inner > div:nth-child(3)::after { display: none; }
  .pe-what-inner { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}
@media (max-width: 1024px) {
  .tw-ai-links { grid-template-columns: repeat(2, 1fr); }
  .tw-card-grid-3 { grid-template-columns: 1fr 1fr; }
  .tw-cta-banner { flex-direction: column; align-items: flex-start; }
  .tw-home .hero-content-split { grid-template-columns: 1fr; gap: 28px; }
  .pe-note-a { left: 28%; }
}
@media (max-width: 768px) {
  .nav-wrap { height: 70px; }
  .tw-home .hero-container { margin-top: 70px; min-height: 0; padding: 20px 6% 64px; }
  .page-hero { margin-top: 70px; }
  .tw-home .hero-title { font-size: 32px; }
  .pe-stats-inner { grid-template-columns: 1fr 1fr; padding: 12px 0 20px; }
  .pe-stats-inner > div:nth-child(even)::after { display: none; }
  .pe-checks { gap: 10px 12px; }
  .pe-btn-primary, .pe-btn-ghost { width: 100%; }
  .pe-note { display: none; }
  .tw-cube, .tw-flake, .tw-pause { display: none; }
  .tw-card-grid-overlap .tw-card:nth-child(even) { margin-top: 0; }
  .tw-card-grid-overlap { padding-bottom: 0; gap: 28px; }
  .tw-ai-links, .tw-card-grid, .tw-card-grid-3, .tw-why-grid { grid-template-columns: 1fr; }
  .tw-editorial, .tw-work, .tw-insights, .tw-why, .pe-what { padding: 56px 6%; }
  .tw-cta-btn { width: 100%; text-align: center; }
  .tw-card img { height: 200px; }
}

