:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-input: #ffffff;

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  --border-subtle: #e2e8f0;
  --border-hover: #93c5fd;
  --border-focus: #2563eb;

  --blue: #2563eb;
  --blue2: #1d4ed8;
  --cyan: #0284c7;
  --purple: #7c3aed;
  --green: #059669;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --navy: #0f172a;
  --navy2: #1e293b;
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-main: 0 20px 45px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 12px 32px -4px rgba(37, 99, 235, 0.15);

  --gradient-btn-primary: linear-gradient(135deg, #2563eb, #7c3aed);
  --gradient-text: linear-gradient(105deg, #0284c7 0%, #2563eb 45%, #7c3aed 100%);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #1e293b;
  color: #fff;
  padding: 10px 14px;
  z-index: 999;
  border-radius: 8px;
  border: 1px solid var(--border-hover);
}
.skip-link:focus { left: 10px; }

.nav-links a:focus-visible,
.btn:focus-visible,
.btn-ghost:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.28s, box-shadow 0.28s, transform 0.28s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 245px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  font-size: 1.34rem;
  letter-spacing: -0.035em;
  color: #0f172a;
}
.brand-copy strong span {
  color: var(--blue);
}
.brand-copy small {
  color: var(--text-muted);
  font-size: 0.68rem;
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}
.nav-links > a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links > a:not(.btn):hover {
  color: var(--blue);
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: 0.25s;
}
.nav-links > a:not(.btn):hover::after { right: 0; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: #f8fafc;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.25s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* BUTTONS */
.btn {
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-small { min-height: 42px; padding-inline: 15px; }
.btn-large { min-height: 56px; padding-inline: 23px; }
.btn-primary {
  color: #fff;
  background: var(--gradient-btn-primary);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.38);
}
.btn-ghost, .btn-outline {
  background: #ffffff;
  border-color: var(--border-subtle);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.btn-ghost:hover, .btn-outline:hover {
  background: #f1f5f9;
  border-color: var(--border-hover);
  color: var(--blue);
}
.btn-light {
  background: #fff;
  color: #070b14;
}
.btn-transparent {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.btn-transparent:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* HERO SECTION */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.mesh { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.mesh-a {
  width: 650px;
  height: 650px;
  right: -240px;
  top: -300px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.09), transparent 68%);
}
.mesh-b {
  width: 520px;
  height: 520px;
  left: -250px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07), transparent 70%);
}
.grid-fade {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(2, 132, 199, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 132, 199, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to left, #000, transparent);
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
}
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow i {
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.eyebrow.center { justify-content: center; }
.eyebrow.pale { color: #64748b; }

.hero h1 {
  font-size: clamp(3.2rem, 6.1vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 19px 0 25px;
  color: #0f172a;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headlineGradient 4.2s linear infinite;
}
.hero-text {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 670px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 26px;
}
.hero-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.87rem;
  font-weight: 700;
}
.hero-points span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.12);
  color: var(--green);
  font-size: 0.7rem;
}

/* HERO VISUAL & PROJECT BOARD */
.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  z-index: 10;
}
.project-board-shell {
  position: relative;
  z-index: 20;
  width: min(100%, 520px);
}
.project-board {
  position: relative;
  width: 100%;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(155deg, #ffffff, #f8fafc);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #0f172a;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.1), 0 0 1px rgba(15, 23, 42, 0.15);
}
.board-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.board-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--cyan);
  font-weight: 900;
}
.board-top h2 {
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 7px 0 0;
  color: #0f172a;
}
.guided {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  font-size: 0.68rem;
  color: #059669;
  font-weight: 900;
}
.guided b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(5, 150, 105, 0.15);
}
.progress {
  height: 5px;
  background: #e2e8f0;
  border-radius: 99px;
  margin: 26px 0 20px;
  overflow: hidden;
}
.progress span {
  display: block;
  width: 73%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.journey { display: grid; gap: 10px; }
.journey-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: #f8fafc;
}
.journey-row.active {
  background: linear-gradient(90deg, #eff6ff, #ffffff);
  border-color: rgba(37, 99, 235, 0.3);
}
.journey-row > b {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 0.7rem;
}
.journey-row strong, .journey-row small { display: block; }
.journey-row strong { font-size: 0.83rem; color: #0f172a; }
.journey-row small { font-size: 0.69rem; color: var(--text-muted); margin-top: 2px; }
.journey-row > span {
  font-size: 0.63rem;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue);
  background: rgba(37, 99, 235, 0.05);
}
.board-tech {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.board-tech span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 0.65rem;
  color: var(--text-secondary);
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(2, 132, 199, 0.18);
}
.orbit-a { width: 460px; height: 460px; animation: spin 28s linear infinite; }
.orbit-b { width: 340px; height: 340px; border-style: dashed; animation: spinBack 22s linear infinite; }

.float-card {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.12);
  color: var(--text-primary);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.float-card small, .float-card strong { display: block; }
.float-card small { font-size: 0.65rem; color: var(--text-muted); }
.float-card strong { font-size: 0.74rem; color: #0f172a; }
.float-card > span:not(.live-dot) {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-weight: 900;
}
.float-right { right: -12px; top: 75px; animation: floatY 5.7s 0.8s ease-in-out infinite; }
.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.15);
}

/* TRUST STRIP */
.trust-strip {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}
.trust-strip > div {
  padding: 24px 26px;
  border-right: 1px solid var(--border-subtle);
}
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong {
  font-size: 1.34rem;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.trust-strip span {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* SECTIONS & HEADING */
.section { padding: 96px 0; }
.section-soft {
  background: var(--bg-secondary);
  border-block: 1px solid var(--border-subtle);
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-heading h2, .intro-copy h2, .sticky-copy h2, .faq-intro h2, .why-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 12px 0 17px;
  color: #0f172a;
}
.section-heading p, .intro-copy p, .sticky-copy p, .faq-intro p {
  color: var(--text-secondary);
}
.section-heading.light p { color: #e2e8f0; }
.section-heading.light h2 { color: #fff; }

/* SPLIT & CARDS */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.mini-list { display: grid; gap: 10px; margin-top: 28px; }
.mini-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  font-weight: 750;
  color: var(--text-primary);
}
.mini-list b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  font-size: 0.67rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.value-grid article {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.value-grid article:hover {
  background: #ffffff;
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}
.value-grid h3 { font-size: 1rem; margin: 15px 0 8px; color: #0f172a; }
.value-grid p { font-size: 0.84rem; color: var(--text-secondary); margin: 0; }
.box-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
  color: var(--cyan);
  font-weight: 900;
}
.value-accent {
  background: linear-gradient(145deg, #2563eb, #7c3aed) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.value-accent h3 { color: #fff !important; }
.value-accent .box-icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.value-accent p { color: #e2e8f0; }
.value-accent a { display: inline-block; margin-top: 16px; font-size: 0.8rem; font-weight: 900; color: #fff; }

/* SERVICES SECTION */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-hover);
  background: #ffffff;
}
.big-no {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.05);
  line-height: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--cyan);
  font-weight: 900;
}
.service-card h3 { font-size: 1.06rem; margin: 18px 0 9px; color: #0f172a; }
.service-card p { color: var(--text-secondary); font-size: 0.85rem; }
.service-card ul {
  list-style: none;
  margin: 17px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  gap: 6px;
}
.service-card li { font-size: 0.75rem; color: var(--text-secondary); }
.service-card li::before { content: "•"; color: var(--cyan); margin-right: 8px; }

/* DOMAIN SECTION */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.domain-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.domain-card:hover {
  border-color: var(--border-hover);
  background: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.domain-card > b {
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}
.domain-card > b img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.domain-card h3 { font-size: 0.98rem; margin-bottom: 5px; color: #0f172a; }
.domain-card p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }
.course-band {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: #f8fafc;
}
.course-band > strong { font-size: 0.78rem; white-space: nowrap; color: #0f172a; }
.course-band > div { display: flex; gap: 8px; flex-wrap: wrap; }
.course-band span {
  padding: 7px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 700;
}

/* PROCESS SECTION */
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
}
.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.05), rgba(2, 132, 199, 0.4), rgba(2, 132, 199, 0.05));
}
.process-step { text-align: center; padding: 0 18px; }
.process-step > span { font-size: 0.66rem; color: var(--cyan); font-weight: 900; }
.process-step > i {
  position: relative;
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  margin: 15px auto 26px;
  border-radius: 50%;
  background: var(--cyan);
  border: 4px solid var(--bg-secondary);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.4);
}
.process-step h3 { font-size: 0.95rem; margin-bottom: 8px; color: #0f172a; }
.process-step p { font-size: 0.76rem; color: var(--text-secondary); margin: 0; }

/* DELIVERABLES SECTION */
.deliverable-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}
.sticky-copy { position: sticky; top: 130px; }
.sticky-copy > a { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 900; }
.deliverable-list { display: grid; gap: 10px; }
.deliverable-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, border-color 0.25s, background-color 0.25s;
}
.deliverable-list > div:hover {
  transform: translateX(5px);
  border-color: var(--border-hover);
  background: #ffffff;
}
.deliverable-list > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
}
.deliverable-list p { margin: 0; }
.deliverable-list strong, .deliverable-list small { display: block; }
.deliverable-list strong { font-size: 0.88rem; color: #0f172a; }
.deliverable-list small { font-size: 0.74rem; color: var(--text-secondary); margin-top: 4px; }

/* TECHNOLOGIES SECTION */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tech-grid article {
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
}
.tech-grid article > strong {
  display: block;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-subtle);
  color: #0f172a;
  font-size: 0.82rem;
}
.tech-grid article > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.tech-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 600;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s, color 0.2s;
}
.tech-grid span img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.tech-grid span:hover {
  background: #eff6ff;
  border-color: var(--border-hover);
  color: var(--blue);
}

/* WHY US SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.why-panel {
  min-height: 480px;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid #334155;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}
.why-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -160px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25), transparent 70%);
}
.why-panel h2 {
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 70px 0 0;
  color: #fff;
}
.why-panel h2 em { font-style: normal; color: var(--cyan); }
.accent-line {
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  margin: 32px 0 20px;
}
.why-panel p {
  max-width: 360px;
  color: #cbd5e1;
  font-size: 0.86rem;
  position: relative;
  z-index: 2;
}
.why-list { display: grid; gap: 20px; margin-top: 28px; }
.why-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}
.why-list > div > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--cyan);
  font-weight: 900;
}
.why-list p { margin: 0; }
.why-list strong, .why-list small { display: block; }
.why-list strong { font-size: 0.93rem; color: #0f172a; }
.why-list small { font-size: 0.8rem; color: var(--text-secondary); margin-top: 5px; }

/* LEAD / CONTACT SECTION & FORM */
.lead-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  color: #0f172a;
}
.lead-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  left: -300px;
  top: -250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 68%);
}
.lead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}
.lead-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 14px 0 18px;
  color: #0f172a;
}
.lead-copy > p { color: var(--text-secondary); }
.contact-list { display: grid; gap: 10px; margin-top: 30px; }
.contact-list a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, background-color 0.2s, border-color 0.2s;
}
.contact-list a:hover {
  transform: translateX(4px);
  background: #ffffff;
  border-color: var(--border-hover);
}
.contact-list > a > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(2, 132, 199, 0.08);
  color: var(--cyan);
}
.contact-list p { margin: 0; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--text-muted); font-size: 0.66rem; }
.contact-list strong { font-size: 0.84rem; color: #0f172a; }
.contact-list b { color: var(--blue); }
.tip {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.tip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.12);
}
.tip p { margin: 0; font-size: 0.74rem; color: var(--text-secondary); }

.lead-form {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08);
}
.form-head { margin-bottom: 24px; }
.form-head > span {
  font-size: 0.68rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.form-head h3 {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  margin: 6px 0 5px;
  color: #0f172a;
}
.form-head p { font-size: 0.76rem; color: var(--text-secondary); margin: 0; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 850;
  color: var(--text-secondary);
}
.wide { grid-column: 1 / -1; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  padding: 13px 14px;
  font-size: 16px; /* Prevents iOS Safari auto-zoom on input focus */
  border: 1px solid #cbd5e1;
  border-radius: 11px;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s, transform 0.2s;
}
.lead-form input::placeholder, .lead-form textarea::placeholder {
  color: var(--text-dim);
}
.lead-form select option {
  background: #ffffff;
  color: #0f172a;
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #ffffff;
  transform: translateY(-1px);
}
.lead-form input:focus-visible, .lead-form textarea:focus-visible, .lead-form select:focus-visible { outline: none; }
.lead-form textarea { resize: vertical; min-height: 120px; }
.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 16px 0 14px;
}
.consent input { width: auto; margin-top: 3px; }
.consent input:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.consent span { font-size: 0.7rem; color: var(--text-muted); }
.submit-btn { width: 100%; min-height: 53px; }
.submit-btn:disabled { cursor: wait; opacity: 0.88; }
.submit-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinnerRotate 0.72s linear infinite;
}
.submit-btn.is-submitting .submit-arrow, .submit-btn.is-success .submit-arrow { display: none; }
.submit-btn.is-submitting .submit-spinner { display: inline-block; }
.submit-btn.is-submitting::after, .submit-btn.is-success::after { animation: none; }
.submit-btn.is-success {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.3);
  cursor: default;
}
.field-error {
  display: block;
  color: #dc2626;
  font-size: 0.74rem;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}
input.invalid,
select.invalid,
textarea.invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}
label.consent.has-error {
  color: #dc2626;
}
.form-status {
  min-height: 22px;
  margin-top: 14px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.form-status.success,
.form-success-message {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 10px 14px;
}
.form-status.error,
.form-error-message {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 10px 14px;
}
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

/* FAQ ACCORDION */
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}
.faq-intro { position: sticky; top: 130px; }
.faq-intro .btn { margin-top: 14px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  padding: 0 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, background-color 0.22s;
}
.faq-list details[open] {
  background: #f8fafc;
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.05);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.86rem;
  font-weight: 850;
  color: #0f172a;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform 0.22s, color 0.22s;
}
.faq-list details[open] summary span { transform: rotate(45deg); color: var(--blue); }
.faq-list p {
  padding: 0 0 17px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
}
.faq-list details[open] p { animation: faqAnswerIn 0.28s ease both; }

/* FINAL CTA */
.final-cta {
  padding: 72px 0;
  background: linear-gradient(120deg, #0f172a, #1e293b 55%, #0f172a);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  color: #fff;
  background-size: 180% 180%;
  animation: finalGradient 16s ease-in-out infinite;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 10px 0;
  color: #fff;
}
.final-cta p { color: #cbd5e1; margin: 0; }
.final-cta-inner > div:last-child { display: flex; gap: 10px; flex-wrap: wrap; }

/* FOOTER */
footer {
  padding: 60px 0 24px;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
}
.footer-about p {
  max-width: 360px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-brand { min-width: 0; margin-bottom: 12px; }
.footer-brand .brand-copy strong { color: #0f172a; }
.footer-grid > div:not(.footer-about) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-grid h3 {
  font-size: 0.8rem;
  color: #0f172a;
  margin-bottom: 8px;
}
.footer-grid a, .footer-grid span {
  font-size: 0.74rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 34px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
  transition: transform 0.22s, box-shadow 0.22s;
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: #fff;
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s, transform 0.28s;
}
.floating-whatsapp.pulse::before {
  animation: whatsappRing 3s ease-out infinite;
  opacity: 1;
  transform: scale(1);
}

/* REVEAL & MOTION LAYER */
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.reveal-delay { transition-delay: 0.12s; }
.reveal-card:nth-child(2) { transition-delay: 0.05s; }
.reveal-card:nth-child(3) { transition-delay: 0.1s; }
.reveal-card:nth-child(4) { transition-delay: 0.15s; }
.reveal-card:nth-child(5) { transition-delay: 0.2s; }
.reveal-card:nth-child(6) { transition-delay: 0.25s; }
.reveal.is-visible, .reveal-card.is-visible { opacity: 1; transform: none; }
.tilt-card { transition: transform 0.16s ease-out; will-change: transform; }

/* KEYFRAME ANIMATIONS */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinBack { to { transform: rotate(-360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { transform: scale(0.85); opacity: 0.8; } 75%, 100% { transform: scale(1.35); opacity: 0; } }
@keyframes buttonShine { 0%, 78% { transform: translateX(-180%) rotate(18deg); } 92%, 100% { transform: translateX(820%) rotate(18deg); } }
@keyframes headlineGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes gridDrift { to { background-position: 32px 20px; } }
@keyframes meshDriftA { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-10px,8px,0); } }
@keyframes meshDriftB { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(10px,-7px,0); } }
@keyframes boardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes floatCardY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes whatsappRing { 0%, 70% { transform: scale(0.9); opacity: 0; } 72% { opacity: 0.55; } 100% { transform: scale(1.38); opacity: 0; } }
@keyframes spinnerRotate { to { transform: rotate(360deg); } }
@keyframes faqAnswerIn { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }
@keyframes finalGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* PROGRESSIVE MOTION ENHANCEMENT */
.body-loaded body { overflow-x: clip; }
.brand-logo { display: block; width: 58px; height: 58px; object-fit: contain; background: transparent; flex-shrink: 0; }
.site-header .brand img { transition: width 0.24s ease, height 0.24s ease, transform 0.24s ease; }
.site-header.scrolled .brand img { width: 47px; height: 47px; }
.scroll-progress {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}
.btn-primary { position: relative; isolation: isolate; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -55%;
  bottom: -55%;
  left: -35%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-180%) rotate(18deg);
  animation: buttonShine 5s 1.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary > svg, .btn-primary > span { position: relative; z-index: 1; }
.magnetic-cta { transition: transform 0.2s ease-out, box-shadow 0.2s ease, border-color 0.2s ease; will-change: transform; }

.magnetic-cta { position: relative; overflow: hidden; }
.magnetic-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-12deg);
  pointer-events: none;
  opacity: 0;
  animation: ctaShimmer 5s linear infinite;
}
@keyframes ctaShimmer { 0% { left: -60%; opacity: 0; } 18% { opacity: 0; } 22% { left: 110%; opacity: 0.22; } 26% { opacity: 0.22; } 28% { opacity: 0; } 100% { left: 110%; opacity: 0; } }

.spotlight { position: relative; overflow: hidden; }
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}
.spotlight.is-active::before { opacity: 1; }
.spotlight:hover { border-color: var(--border-hover); }

/* SPATIAL DEPTH LAYERS FOR LIGHT THEME BOARD */
@media (min-width: 769px) {
  .hero-visual { perspective: 1200px; }
  .project-board-shell { perspective: 1000px; }
  .project-board { transform-style: preserve-3d; }
  .project-board > * { transform-style: preserve-3d; }
  .board-top { transform: translateZ(35px); }
  .progress { transform: translateZ(25px); }
  .journey-row {
    transform: translateZ(20px);
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
  }
  .journey-row.active {
    transform: translateZ(42px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
  }
  .journey-row:hover { transform: translateZ(52px) scale(1.02); }
  .board-tech span { transform: translateZ(30px); display: inline-block; }
  .float-right { transform: translateZ(80px); }
  .board-3d-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.6) 0%, transparent 65%);
    opacity: 0.85;
    z-index: 10;
  }
}

/* MEDIA QUERIES & RESPONSIVENESS ACROSS ALL DEVICE BREAKPOINTS */

@media (min-width: 1440px) {
  .container { width: min(1260px, calc(100% - 64px)); }
  .hero { padding: 105px 0 56px; }
  .hero-grid { gap: 76px; }
  .section-heading h2, .intro-copy h2, .sticky-copy h2, .faq-intro h2, .why-copy h2 { font-size: 3.5rem; }
}

@media (max-width: 1060px) {
  .nav-links { gap: 16px; }
  .nav-links > a:not(.btn) { font-size: 0.8rem; }
  .hero-grid { gap: 36px; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 12px 14px; min-height: 44px; display: flex; align-items: center; color: #0f172a; }
  .nav-links > a:not(.btn)::after { display: none; }
  .hero { padding: 65px 0 40px; }
  .hero-grid, .split, .deliverable-layout, .why-grid, .lead-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border-subtle); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .process-grid::before { display: none; }
  .sticky-copy, .faq-intro { position: static; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .site-header.scrolled .nav-wrap { min-height: 68px; }
  .site-header.scrolled .brand img { width: 44px; height: 44px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 1.15rem; }
  .nav-links { top: 100%; left: 14px; right: 14px; }
  .hero { padding: 52px 0 32px; }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.8rem); }
  .hero-text { font-size: 0.94rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; margin-top: 18px; }
  .project-board { padding: 18px; }
  .journey-row { grid-template-columns: 34px 1fr; }
  .journey-row > span { display: none; }
  .float-card { display: none; }
  .orbit-a { width: 340px; height: 340px; }
  .orbit-b { width: 250px; height: 250px; }
  .trust-strip { margin-top: 48px; }
  .trust-strip > div { padding: 18px; }
  .section { padding: 72px 0; }
  .section-heading h2, .intro-copy h2, .sticky-copy h2, .faq-intro h2, .why-copy h2 { font-size: 2.15rem; }
  .value-grid, .service-grid, .domain-grid, .tech-grid { grid-template-columns: 1fr; }
  .course-band { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { text-align: left; display: grid; grid-template-columns: 36px 1fr; column-gap: 14px; }
  .process-step > i { display: none; }
  .process-step > span { grid-column: 1; grid-row: 1; }
  .process-step h3 { grid-column: 2; grid-row: 1; }
  .process-step p { grid-column: 2; grid-row: 2; }
  .why-panel { min-height: 380px; padding: 28px; }
  .lead-section { padding: 72px 0; }
  .lead-form { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .scroll-progress { height: 2px; }
}

@media (max-width: 479px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 1.08rem; }
  .hero h1 { font-size: clamp(1.95rem, 9.5vw, 2.55rem); letter-spacing: -0.04em; margin: 14px 0 18px; }
  .hero-text { font-size: 0.88rem; }
  .hero-actions .btn { font-size: 0.85rem; padding: 0 14px; }
  .project-board { padding: 14px 12px; border-radius: 20px; }
  .board-top h2 { font-size: 1.02rem; }
  .journey-row { grid-template-columns: 28px 1fr; gap: 8px; padding: 8px 10px; }
  .journey-row > div strong { font-size: 0.8rem; }
  .journey-row > div small { font-size: 0.68rem; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0 !important; border-bottom: 1px solid var(--border-subtle); padding: 14px 16px; }
  .trust-strip > div:last-child { border-bottom: 0; }
  .why-panel { padding: 22px 16px; min-height: auto; }
  .why-panel h2 { font-size: 2.05rem; }
  .lead-form { padding: 18px 14px; border-radius: 18px; }
  .contact-list a { grid-template-columns: 36px 1fr; padding: 12px; }
  .contact-list a b { display: none; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 24px; height: 24px; }
}

@media (max-width: 359px) {
  .container { width: calc(100% - 16px); }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions .btn { font-size: 0.8rem; padding: 0 10px; }
  .hero-points { grid-template-columns: 1fr; }
  .lead-form { padding: 14px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-card, .spotlight::before, .magnetic-cta::before { opacity: 1 !important; transform: none !important; }
}
