/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ TOKENS ============ */
:root {
  --navy-900: #0a1428;
  --navy-800: #0f1e3d;
  --navy-700: #152a52;
  --navy-600: #1e3a6f;
  --navy-500: #2d5aa0;
  --coral: #ff6b4a;
  --coral-light: #ff8b6e;
  --coral-dark: #e54a28;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --gray-100: #eef1f6;
  --gray-200: #e2e7f0;
  --gray-300: #c7cdd9;
  --gray-500: #6b7488;
  --green: #2ecc71;
  --text: #1a2238;
  --text-muted: #5a6378;
  --bg: #ffffff;
  --shadow-xs: 0 1px 3px rgba(10, 20, 40, 0.05);
  --shadow-sm: 0 2px 8px rgba(10, 20, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 20, 40, 0.1);
  --shadow-lg: 0 20px 50px rgba(10, 20, 40, 0.18);
  --shadow-xl: 0 30px 70px rgba(10, 20, 40, 0.22);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --gradient-hero: linear-gradient(135deg, #0a1428 0%, #152a52 60%, #1e3a6f 100%);
  --gradient-hero-soft: linear-gradient(135deg, #0f1e3d 0%, #152a52 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b4a 0%, #ff8b6e 100%);
  --gradient-accent-vivid: linear-gradient(135deg, #e54a28 0%, #ff6b4a 50%, #ff8b6e 100%);
  --gradient-mesh: radial-gradient(circle at 20% 20%, rgba(255,107,74,.18), transparent 40%), radial-gradient(circle at 80% 60%, rgba(45,90,160,.18), transparent 50%);
  --container: 1200px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-muted); }
.accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 5.5rem 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.9rem;
}
.section-head p { margin-top: 1rem; font-size: 1.06rem; }
.bg-soft { background: var(--off-white); }
.bg-mesh {
  position: relative;
  overflow: hidden;
}
.bg-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}
.bg-mesh > * { position: relative; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(255, 107, 74, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 107, 74, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.btn-ghost {
  color: var(--coral);
  padding: 0.6rem 0;
  font-weight: 600;
}
.btn-ghost::after { content: " →"; transition: transform 0.25s ease; display: inline-block; margin-left: 4px; }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.88rem; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10, 20, 40, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-900);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-accent);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.4);
  font-size: 0.95rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s ease;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--coral); }
.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--navy-900);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.4) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(30, 58, 111, 0.65), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.page-hero .container { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--coral-light); }
.page-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.page-hero-meta strong {
  display: block;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

/* ============ HOME HERO ============ */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.45) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 58, 111, 0.7) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.25rem;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.4rem;
}
.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 107, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.hero-trust .stack {
  display: flex;
}
.hero-trust .stack span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
}
.hero-trust .stack span:first-child { margin-left: 0; }
.hero-trust .stack .s1 { background: linear-gradient(135deg, #ff6b4a, #ff8b6e); }
.hero-trust .stack .s2 { background: linear-gradient(135deg, #2d5aa0, #1e3a6f); }
.hero-trust .stack .s3 { background: linear-gradient(135deg, #152a52, #ff6b4a); }
.hero-trust .stack .s4 { background: linear-gradient(135deg, #6b7488, #2d5aa0); }

.hero-visual {
  position: relative;
  height: 440px;
}
.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1.5s; }
.hero-card:nth-child(3) { animation-delay: 3s; }
.hero-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.hero-card .metric {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
}
.hero-card .trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #4ade80;
  margin-top: 0.4rem;
}
.hero-card-1 { top: 10px; left: 0; width: 220px; --rot: -4deg; transform: rotate(-4deg); }
.hero-card-2 { top: 120px; right: 20px; width: 240px; --rot: 3deg; transform: rotate(3deg); }
.hero-card-3 { bottom: 30px; left: 60px; width: 270px; --rot: -2deg; transform: rotate(-2deg); }
.hero-card-3 .bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 0.6rem;
}
.hero-card-3 .bars span {
  flex: 1;
  background: var(--gradient-accent);
  border-radius: 3px;
  opacity: 0.85;
}

/* ============ LOGO STRIP ============ */
.logos {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}
.logo-pill {
  display: grid;
  place-items: center;
  height: 56px;
  padding: 0 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  font-size: 1.05rem;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
  text-align: center;
}
.logo-pill:hover { opacity: 1; color: var(--navy-700); }

/* ============ STATS ============ */
.stats {
  background: var(--off-white);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .label {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============ VALUE PROPS ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 107, 74, 0.1);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: var(--white);
}
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; }
.service-card .features {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}
.service-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text);
}
.service-card .features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: left;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
}
.process-step .step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(255, 107, 74, 0.35);
}
.process-step h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.process-step p { font-size: 0.92rem; }

/* ============ FEATURE / SPLIT ============ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid h2 { margin-bottom: 1.25rem; }
.split-grid > div > p { font-size: 1.05rem; margin-bottom: 1rem; }
.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.feature-list li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  background: var(--gradient-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.split-art {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  background: var(--gradient-hero);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 74, 0.35), transparent 60%);
}
.split-art-overlay {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.split-art-overlay .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
}
.split-art-overlay .row:last-child { margin-bottom: 0; }
.split-art-overlay .row span:first-child { font-size: 0.88rem; color: var(--text-muted); }
.split-art-overlay .row span:last-child { font-weight: 700; color: var(--text); font-family: 'Poppins', sans-serif; }

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--white);
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--gray-100);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(10, 20, 40, 0.15);
}
.avatar.a1 { background: linear-gradient(135deg, #ff6b4a, #ff8b6e); }
.avatar.a2 { background: linear-gradient(135deg, #1e3a6f, #2d5aa0); }
.avatar.a3 { background: linear-gradient(135deg, #152a52, #ff6b4a); }
.avatar.a4 { background: linear-gradient(135deg, #ff8b6e, #2d5aa0); }
.avatar.a5 { background: linear-gradient(135deg, #2d5aa0, #ff6b4a); }
.avatar.a6 { background: linear-gradient(135deg, #0a1428, #ff8b6e); }
.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role {
  color: var(--coral);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.team-card .bio { font-size: 0.92rem; margin-bottom: 1.25rem; }
.socials {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.socials a:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ============ MISSION/VALUES CARDS ============ */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvv-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--coral);
  box-shadow: var(--shadow-sm);
}
.mvv-card .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.mvv-card h3 { margin-bottom: 0.75rem; }
.mvv-card p { font-size: 0.95rem; }

/* ============ TIMELINE ============ */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 0 4px var(--off-white);
}
.timeline-item .year {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--coral);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.timeline-item h3 { margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.95rem; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--coral);
  opacity: 0.4;
  font-weight: 800;
}
.testimonial blockquote {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.25rem;
}
.testimonial .author .avatar {
  width: 44px;
  height: 44px;
  margin: 0;
  font-size: 0.95rem;
  box-shadow: none;
}
.testimonial .author .name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.testimonial .author .role-line {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3, .price-card.featured .price, .price-card.featured .price-list li { color: var(--white); }
.price-card.featured .price-list li::before { background: var(--coral-light); }
.price-card.featured p { color: rgba(255, 255, 255, 0.78); }
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 107, 74, 0.4);
}
.price-card h3 { margin-bottom: 0.35rem; }
.price-card .desc { font-size: 0.92rem; margin-bottom: 1.25rem; }
.price-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.price-card .price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.25rem;
}
.price-card.featured .price small { color: rgba(255, 255, 255, 0.7); }
.price-card .price-list {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.7rem;
  flex: 1;
}
.price-card .price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}
.price-card .price-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: rgba(255, 107, 74, 0.12);
  color: var(--coral);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.price-card.featured .price-list li::before {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ============ FAQ ============ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary { color: var(--coral); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.4rem; font-size: 0.98rem; }

/* ============ JOBS ============ */
.jobs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.job-card {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.job-card h3 { margin-bottom: 0.35rem; }
.job-card .dept { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.job-card .desc { font-size: 0.92rem; color: var(--text-muted); }
.job-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(30, 58, 111, 0.08);
  color: var(--navy-700);
  letter-spacing: 0.02em;
}
.tag.remote { background: rgba(255, 107, 74, 0.12); color: var(--coral-dark); }
.tag.hybrid { background: rgba(46, 204, 113, 0.12); color: #1e8e4a; }

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.perk {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.perk:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.perk .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 74, 0.1);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.perk h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.perk p { font-size: 0.92rem; }

/* ============ PORTFOLIO ============ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
}
.filter-btn:hover { color: var(--coral); border-color: var(--coral); }
.filter-btn.active {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(255, 107, 74, 0.35);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
}
.portfolio-card.hidden { display: none; }
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-thumb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}
.portfolio-thumb.p1 { background: linear-gradient(135deg, #0a1428, #1e3a6f); }
.portfolio-thumb.p2 { background: linear-gradient(135deg, #ff6b4a, #e54a28); }
.portfolio-thumb.p3 { background: linear-gradient(135deg, #152a52, #ff8b6e); }
.portfolio-thumb.p4 { background: linear-gradient(135deg, #1e3a6f, #ff6b4a); }
.portfolio-thumb.p5 { background: linear-gradient(135deg, #0f1e3d, #2d5aa0); }
.portfolio-thumb.p6 { background: linear-gradient(135deg, #e54a28, #0a1428); }
.portfolio-thumb.p7 { background: linear-gradient(135deg, #ff8b6e, #1e3a6f); }
.portfolio-thumb.p8 { background: linear-gradient(135deg, #2d5aa0, #ff8b6e); }
.portfolio-thumb.p9 { background: linear-gradient(135deg, #ff6b4a, #2d5aa0); }
.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.92), transparent);
  color: var(--white);
}
.portfolio-info .platform {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 0.35rem;
}
.portfolio-info h3 { color: var(--white); margin-bottom: 0.2rem; font-size: 1.1rem; }
.portfolio-info .result {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover .portfolio-overlay span { transform: translateY(0); }

/* ============ FEATURED CASE STUDY ============ */
.case-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.case-art {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ff6b4a 0%, #e54a28 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  letter-spacing: -0.02em;
}
.case-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 60%);
}
.case-body .platform-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.case-body h2 { margin-bottom: 1rem; }
.case-body p { margin-bottom: 1.5rem; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.case-metrics .metric {
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.case-metrics .metric .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case-metrics .metric .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.3), transparent 65%);
  border-radius: 50%;
}
.cta-banner-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.75); margin: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; max-width: 320px; margin-bottom: 1.25rem; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer ul a:hover { color: var(--coral-light); }
.footer .socials a {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}
.footer .socials a:hover {
  background: var(--gradient-accent);
  color: var(--white);
}
.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  min-width: 0;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.45); }
.newsletter input:focus { outline: none; border-color: var(--coral); }
.newsletter button {
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s ease;
}
.newsletter button:hover { transform: translateY(-1px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--coral-light); }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow .pulse { animation: none; }
  .hero-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
}
@media (max-width: 960px) {
  section { padding: 4.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-art { max-width: 100%; margin: 0 auto; }
  .team-grid, .services-grid, .testimonials-grid, .perks-grid, .mvv-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 2rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .case-feature { grid-template-columns: 1fr; padding: 2rem; }
  .case-art { max-width: 320px; margin: 0 auto; aspect-ratio: 1/1; }
  .job-card { grid-template-columns: 1fr; text-align: left; }
  .job-card .btn { justify-self: start; }
}
@media (max-width: 720px) {
  section { padding: 4rem 0; }
  .hero, .page-hero { padding: 7rem 0 4rem; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); }
  .nav-links li:last-child { border-bottom: none; padding-top: 1rem; }
  .nav-links .nav-cta { display: inline-flex; align-self: flex-start; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { max-height: 520px; padding: 1rem 1.25rem 1.5rem; }
  .team-grid, .services-grid, .testimonials-grid, .perks-grid, .mvv-grid, .values-grid, .portfolio-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-meta { gap: 1.5rem; }
}
