/* ==========================================================================
   Universal Builders Group Corp — design system
   ========================================================================== */

:root {
  --brand-blue: #1a73e8;
  --brand-blue-deep: #0d47a1;
  --brand-blue-bright: #3a8ef6;
  --brand-green: #34a853;
  --brand-amber: #fbbc04;
  --brand-red: #ea4335;
  --brand-indigo: #4f46e5;

  --ink: #0f1115;
  --ink-2: #1c2027;
  --muted: #5b6470;
  --cream: #f6f7fb;
  --stroke: rgba(15, 17, 21, 0.08);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 4px 16px -4px rgba(0, 0, 0, 0.08);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.022em;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; }

/* An author `display` rule outranks the UA sheet's [hidden] rule, so restate it. */
[hidden] { display: none !important; }

a { color: var(--brand-blue); text-decoration: none; }

::selection { background: rgba(26, 115, 232, 0.18); }

:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.85rem 1.35rem;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 0.75rem 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--stroke);
  box-shadow: 0 6px 24px rgba(15, 17, 21, 0.06);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  flex-shrink: 0;
}
.nav-brand img { height: 38px; width: auto; display: block; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-brand-sub {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a:hover { background: rgba(15, 17, 21, 0.05); color: var(--ink); }
.nav-links a.is-active { color: var(--brand-blue); background: rgba(26, 115, 232, 0.09); }
.nav-links > li:last-child { display: none; }

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 1.25rem;
  border-radius: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-bright));
  box-shadow: 0 10px 22px rgba(26, 115, 232, 0.32);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26, 115, 232, 0.42); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 0.7rem;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: grid; }
  .nav-links,
  .nav > .nav-cta { display: none; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.85rem 1.25rem 1.35rem;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 20px 40px rgba(15, 17, 21, 0.1);
  }
  .nav-links.is-open a { padding: 0.8rem 0.85rem; font-size: 0.98rem; }
  .nav-links.is-open > li:last-child { display: block; margin-top: 0.6rem; }
  .nav-links.is-open .nav-cta { display: flex; justify-content: center; color: #fff; }
}

/* --------------------------------------------------------------------------
   Shared section furniture
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(26, 115, 232, 0.18);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.eyebrow--red { color: #dc2626; background: rgba(220, 38, 38, 0.08); border-color: rgba(220, 38, 38, 0.18); }
.eyebrow--amber { color: #b45309; background: rgba(251, 188, 4, 0.14); border-color: rgba(251, 188, 4, 0.3); }
.eyebrow--white { color: #fff; background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.65; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.85rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: 0;
  border-radius: 0.95rem;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out),
    background 0.22s var(--ease-out), color 0.22s var(--ease-out), border-color 0.22s var(--ease-out);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-bright) 100%);
  box-shadow: 0 12px 28px rgba(26, 115, 232, 0.32), inset 0 1px rgba(255, 255, 255, 0.2);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(26, 115, 232, 0.45); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--stroke);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: #fff; border-color: var(--brand-blue); color: var(--brand-blue); transform: translateY(-2px); }
.btn--white { color: var(--ink); background: #fff; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35); }

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), #16a34a);
  color: #fff;
  box-shadow: 0 4px 10px -3px rgba(52, 168, 83, 0.45);
}
.check svg { width: 12px; height: 12px; }

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--brand-green);
  opacity: 0.5;
  animation: pulseRing 1.6s ease-out infinite;
}

/* --------------------------------------------------------------------------
   Decorative layers
   -------------------------------------------------------------------------- */

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: meshFloat 22s ease-in-out infinite;
  pointer-events: none;
}
.mesh--blue { width: 540px; height: 540px; background: radial-gradient(circle, rgba(26, 115, 232, 0.5), transparent 70%); top: -120px; left: -80px; }
.mesh--green { width: 460px; height: 460px; background: radial-gradient(circle, rgba(52, 168, 83, 0.42), transparent 70%); bottom: -120px; right: -60px; animation-delay: -7s; }
.mesh--amber { width: 360px; height: 360px; background: radial-gradient(circle, rgba(251, 188, 4, 0.42), transparent 70%); top: 35%; left: 50%; transform: translateX(-50%); animation-delay: -14s; opacity: 0.3; }

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 17, 21, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 17, 21, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at center, black, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 60% at center, black, transparent 75%);
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobDrift 22s ease-in-out infinite;
  pointer-events: none;
}
.bg-blob--blue { width: 460px; height: 460px; background: radial-gradient(circle, rgba(26, 115, 232, 0.5) 0%, transparent 70%); top: -120px; left: -120px; }
.bg-blob--amber { width: 380px; height: 380px; background: radial-gradient(circle, rgba(251, 188, 4, 0.42) 0%, transparent 70%); bottom: -100px; right: -80px; animation-delay: -7s; }
.bg-blob--green { width: 420px; height: 420px; background: radial-gradient(circle, rgba(52, 168, 83, 0.42) 0%, transparent 70%); top: 30%; right: -120px; animation-delay: -11s; }

.sparkle-field, .star-field, .pin-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  font-family: Arial, sans-serif;
  line-height: 1;
  opacity: 0.6;
  animation: sparkleTwinkle ease-in-out infinite;
  will-change: transform, opacity;
  user-select: none;
}
.pin-sparkle {
  position: absolute;
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(135, 196, 255, 0.85)) drop-shadow(0 0 14px rgba(26, 115, 232, 0.55));
  animation: pinFloat 6s ease-in-out infinite;
  will-change: transform, opacity;
}
.pin-sparkle:nth-child(3n) { color: var(--brand-amber); filter: drop-shadow(0 0 6px rgba(255, 215, 100, 0.9)) drop-shadow(0 0 14px rgba(251, 188, 4, 0.55)); }
.pin-sparkle:nth-child(5n + 2) { color: #6ee7a0; filter: drop-shadow(0 0 6px rgba(150, 240, 180, 0.9)) drop-shadow(0 0 14px rgba(52, 168, 83, 0.55)); }
.pin-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(135, 196, 255, 0.6) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.75);
  animation: dotTwinkle 3s ease-in-out infinite;
}
.twinkle-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.85), 0 0 14px rgba(186, 220, 255, 0.55);
  animation: starTwinkle ease-in-out infinite;
  font-family: Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 6.5rem 1.25rem 5.5rem;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 30% -10%, rgba(26, 115, 232, 0.12), transparent 60%),
    radial-gradient(900px 600px at 100% 30%, rgba(52, 168, 83, 0.1), transparent 65%),
    linear-gradient(180deg, #fff, #f5f8ff);
}
.hero-inner { position: relative; max-width: 900px; margin: 0 auto; }

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.05rem;
  background: rgba(26, 115, 232, 0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(26, 115, 232, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.hero-logo {
  height: clamp(84px, 10vw, 118px);
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 22px 44px rgba(26, 115, 232, 0.24));
  animation: heroLogoFloat 5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.15rem, 6vw, 3.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.word-rotator {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.word-rotator .word { display: inline-block; animation: wordSwap 0.55s var(--ease-out); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 2.2rem;
  line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-bottom: 2rem; }
.hero-mini-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-mini-bar > div { display: inline-flex; align-items: center; gap: 0.45rem; }

.floater {
  position: absolute;
  z-index: -1;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 17, 21, 0.12);
  animation: floaterFloat 8s ease-in-out infinite;
  background: #fff;
  border: 1px solid var(--stroke);
  padding: 0.9rem 1.05rem;
  text-align: center;
}
.floater-a { top: 12%; left: 5%; animation-delay: -1s; }
.floater-b { top: 17%; right: 5%; animation-delay: -3s; }
.floater-c { bottom: 12%; left: 8%; animation-delay: -5s; }
.floater-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}
.floater-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; margin-top: 0.1rem; }
@media (max-width: 1180px) { .floater { display: none; } }

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 2px solid var(--stroke);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 4px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* Compact hero for inner pages */
.page-hero {
  position: relative;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg { z-index: -2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.026em;
  max-width: 900px;
  margin: 0 auto 1.1rem;
}
.page-hero p { font-size: 1.08rem; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.65; }
.page-hero .hero-cta { margin-top: 2rem; margin-bottom: 0; }

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--brand-blue); }

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */

.stats-strip {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem;
  color: #fff;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(52, 168, 83, 0.22), transparent 65%),
    radial-gradient(700px 300px at 85% 100%, rgba(251, 188, 4, 0.18), transparent 65%),
    radial-gradient(900px 400px at 50% 50%, rgba(26, 115, 232, 0.45), transparent 70%),
    linear-gradient(135deg, #0b2755, #102a52 35%, #0f1c3a);
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #c9dfff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); margin-top: 0.5rem; font-weight: 500; }
@media (max-width: 720px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }

/* --------------------------------------------------------------------------
   Pain cards
   -------------------------------------------------------------------------- */

.pain-section {
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(239, 68, 68, 0.07), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(249, 115, 22, 0.05), transparent 60%),
    var(--cream);
}
.pain-section > .container { position: relative; z-index: 1; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  --accent: #ef4444;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 2.25rem 1.5rem 1.85rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #f97316);
  opacity: 0;
  transition: opacity 0.25s;
}
.pain-card::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 26%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pain-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px rgba(15, 17, 21, 0.1); border-color: color-mix(in srgb, var(--accent) 25%, transparent); }
.pain-card:hover::before, .pain-card:hover::after { opacity: 1; }

.pain-icon {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 1.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #000));
  box-shadow:
    0 18px 36px -10px color-mix(in srgb, var(--accent) 55%, transparent),
    inset 0 1px rgba(255, 255, 255, 0.35), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
  animation: iconBob 4.5s ease-in-out infinite;
}
.pain-icon::before {
  content: "";
  position: absolute;
  top: 6px; left: 8px; right: 8px;
  height: 28%;
  border-radius: 0.85rem 0.85rem 60% 60% / 0.85rem 0.85rem 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
  z-index: 1;
}
.pain-icon svg { position: relative; z-index: 2; width: 34px; height: 34px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25)); }
.pain-pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid color-mix(in srgb, var(--accent) 40%, transparent);
  animation: iconRing 2.4s ease-out infinite;
  pointer-events: none;
}
.pain-pulse--2 { animation-delay: 1.2s; }
.pain-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--ink); }
.pain-card p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Feature ("why") cards
   -------------------------------------------------------------------------- */

.why-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(26, 115, 232, 0.09), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(52, 168, 83, 0.07), transparent 60%),
    var(--cream);
}
.why-section > .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .why-grid, .why-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid, .why-grid--3 { grid-template-columns: 1fr; } }

.why-card {
  --accent: #1a73e8;
  position: relative;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 2rem 1.4rem 1.85rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-10px); box-shadow: 0 28px 56px rgba(15, 17, 21, 0.12); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.why-card:hover::before { opacity: 1; }

.why-icon-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  animation: iconFloat 4.5s ease-in-out infinite;
}
.why-halo {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 42%, transparent), transparent 65%);
  filter: blur(14px);
  z-index: 0;
  opacity: 0.55;
  animation: haloPulse 3.5s ease-in-out infinite alternate;
  pointer-events: none;
}
.why-glass {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1.4rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #000));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -3px 10px rgba(0, 0, 0, 0.18),
    0 18px 36px -10px color-mix(in srgb, var(--accent) 55%, transparent);
}
.why-glass::before {
  content: "";
  position: absolute;
  top: 6px; left: 8px; right: 8px;
  height: 32%;
  border-radius: 0.85rem 0.85rem 60% 60% / 0.85rem 0.85rem 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}
.why-glass svg { position: relative; z-index: 2; width: 36px; height: 36px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25)); }
.why-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.45rem; }
.why-card p { color: var(--muted); line-height: 1.58; font-size: 0.93rem; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */

.how-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(26, 115, 232, 0.06), transparent 65%),
    radial-gradient(800px 500px at 100% 100%, rgba(251, 188, 4, 0.05), transparent 65%),
    #fff;
}
.how-section > .container { position: relative; z-index: 1; }
.how-steps { display: flex; flex-direction: column; gap: 1.6rem; }
.how-steps--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 2.5rem; }
@media (max-width: 860px) { .how-steps--grid { grid-template-columns: 1fr; } }

.how-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.how-step-num {
  flex-shrink: 0;
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 1.15rem;
  display: grid;
  place-items: center;
  --c1: #1a73e8;
  --c2: #4f46e5;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow:
    0 14px 30px -8px rgba(26, 115, 232, 0.5), inset 0 1px rgba(255, 255, 255, 0.3),
    inset 0 -2px 8px rgba(0, 0, 0, 0.18);
  animation: iconBob 4.5s ease-in-out infinite;
}
.how-step:nth-child(2) .how-step-num { --c1: #10b981; --c2: #1a73e8; }
.how-step:nth-child(3) .how-step-num { --c1: #f59e0b; --c2: #dc2626; }
.how-step:nth-child(4) .how-step-num { --c1: #7c3aed; --c2: #1a73e8; }
.how-step-num::before {
  content: "";
  position: absolute;
  top: 6px; left: 8px; right: 8px;
  height: 28%;
  border-radius: 0.7rem 0.7rem 60% 60% / 0.7rem 0.7rem 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
}
.step-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c1) 55%, transparent), transparent 60%);
  filter: blur(18px);
  z-index: -1;
  opacity: 0.55;
  animation: haloPulse 3s ease-in-out infinite alternate;
  pointer-events: none;
}
.step-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0%, var(--brand-amber) 40%, transparent 75%);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(251, 188, 4, 0.9));
  animation: sparkBlink 2.2s ease-in-out infinite;
  pointer-events: none;
  top: -5px;
  right: -5px;
}
.step-spark--b { bottom: -4px; left: -4px; top: auto; right: auto; width: 7px; height: 7px; animation-delay: 1.1s; }
.step-num-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.how-step-text { flex: 1; padding-top: 0.35rem; }
.how-step-text h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.35rem; }
.how-step-text p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Client showcase
   -------------------------------------------------------------------------- */

.clients-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(1000px 400px at 100% 0%, rgba(26, 115, 232, 0.05), transparent 65%), #fff;
}
.clients-section > .container { position: relative; z-index: 1; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.filter-chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.filter-chip:hover { border-color: rgba(26, 115, 232, 0.4); color: var(--brand-blue); }
.filter-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.32);
}
.filter-chip span { opacity: 0.65; font-weight: 600; margin-left: 0.3rem; }
.filter-chip.is-active span { opacity: 0.85; }

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}
.client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.35rem 1.15rem;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
  animation: cardEnter 0.5s var(--ease-out) both;
}
.client-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(15, 17, 21, 0.12); border-color: rgba(26, 115, 232, 0.3); }
.client-card.is-hidden { display: none; }

.client-top { display: flex; align-items: flex-start; gap: 0.85rem; }
.client-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 8px 18px -6px rgba(15, 17, 21, 0.3);
}
.client-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; line-height: 1.3; color: var(--ink); }
.client-meta { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-top: 0.15rem; }

.client-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.badge svg { width: 12px; height: 12px; }
.badge--rating { background: rgba(251, 188, 4, 0.16); color: #b45309; }
.badge--trade { background: rgba(26, 115, 232, 0.1); color: var(--brand-blue); }
.badge--guaranteed {
  background: linear-gradient(135deg, var(--brand-green), #16a34a);
  color: #fff;
  box-shadow: 0 5px 12px -3px rgba(52, 168, 83, 0.5);
}
.badge--site { background: rgba(79, 70, 229, 0.1); color: var(--brand-indigo); }

.client-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--stroke);
}
.client-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--ink-2);
  padding: 0.35rem 0.6rem;
  border-radius: 0.55rem;
  background: rgba(15, 17, 21, 0.04);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.client-link:hover { background: rgba(26, 115, 232, 0.1); color: var(--brand-blue); transform: translateY(-1px); }
.client-link svg { width: 13px; height: 13px; }

.clients-more { text-align: center; margin-top: 2.25rem; }
.clients-empty { text-align: center; color: var(--muted); padding: 2.5rem 0; }

/* Logo marquee */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track { display: flex; width: max-content; gap: 0.85rem; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-2);
  white-space: nowrap;
}
.marquee-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Packages
   -------------------------------------------------------------------------- */

.packages-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(251, 188, 4, 0.06), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(26, 115, 232, 0.07), transparent 60%),
    linear-gradient(180deg, #fff, #f7f9fd);
}
.packages-section > .container { position: relative; z-index: 1; }

.pkg-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 auto 2.25rem;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 17, 21, 0.08);
  width: max-content;
  max-width: 100%;
}
.pkg-tab {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border: 0;
  background: transparent;
  border-radius: 0.85rem;
  font-family: inherit;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.22s ease;
  line-height: 1.1;
  min-width: 150px;
}
.pkg-tab-label { font-size: 1rem; font-weight: 800; }
.pkg-tab-hint { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; font-weight: 500; }
.pkg-tab.is-active { color: #fff; }
.pkg-tab.is-active .pkg-tab-hint { color: rgba(255, 255, 255, 0.88); }
.pkg-tab-pill {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0.4rem;
  width: calc(50% - 0.4rem);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  border-radius: 0.85rem;
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.32);
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-tab-pill.is-right { left: 50%; }
@media (max-width: 520px) {
  .pkg-tabs { width: 100%; }
  .pkg-tab { min-width: 0; flex: 1; padding: 0.65rem 0.8rem; }
  .pkg-tab-hint { display: none; }
}

.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
@media (max-width: 1024px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .packages-grid { grid-template-columns: 1fr; } }

.pkg-card {
  --pkg-color: #1a73e8;
  position: relative;
  background: #fff;
  border: 2px solid var(--stroke);
  border-radius: 1.5rem;
  padding: 2rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: cardEnter 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.pkg-card:nth-child(1) { animation-delay: 0.05s; }
.pkg-card:nth-child(2) { animation-delay: 0.15s; }
.pkg-card:nth-child(3) { animation-delay: 0.25s; }
.pkg-card:nth-child(4) { animation-delay: 0.35s; }
.pkg-card:hover { transform: translateY(-8px); border-color: var(--pkg-color); box-shadow: 0 22px 50px rgba(15, 17, 21, 0.12); }
.pkg-card.is-featured {
  border-color: var(--pkg-color);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--pkg-color) 20%, transparent);
  transform: translateY(-6px);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pkg-color);
  color: #fff;
  padding: 0.3rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pkg-header { text-align: center; margin-bottom: 1rem; }
.pkg-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.85rem;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pkg-color), color-mix(in srgb, var(--pkg-color) 65%, #000));
  box-shadow: 0 14px 28px -10px color-mix(in srgb, var(--pkg-color) 60%, transparent), inset 0 1px rgba(255, 255, 255, 0.35);
}
.pkg-icon svg { width: 28px; height: 28px; }
.pkg-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; letter-spacing: -0.015em; }
.pkg-tagline { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.pkg-price-wrap { text-align: center; margin-bottom: 1.25rem; }
.pkg-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.pkg-price-suffix { display: inline-block; margin-left: 0.25rem; font-size: 0.76rem; font-weight: 600; color: var(--muted); vertical-align: middle; }
.pkg-note {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.55rem;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.16), rgba(16, 185, 129, 0.08));
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
}
.pkg-features { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.87rem; color: var(--ink); line-height: 1.45; }
.pkg-features svg { width: 16px; height: 16px; color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.pkg-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--pkg-color);
  border: 0;
  border-radius: 0.95rem;
  cursor: pointer;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
}
.pkg-cta:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16); }
.packages-note { text-align: center; font-size: 0.9rem; color: var(--ink-2); margin-top: 2.5rem; line-height: 1.85; }
.packages-note b { font-weight: 700; }

/* --------------------------------------------------------------------------
   Dark "authority" band
   -------------------------------------------------------------------------- */

.authority-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0b1d4a, #102d6e 38%, #1a73e8);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.auth-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.auth-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; animation: blobDrift 18s ease-in-out infinite; }
.auth-orb--1 { width: 480px; height: 480px; background: radial-gradient(circle, #4f8bff 0%, transparent 70%); top: -120px; left: -120px; }
.auth-orb--2 { width: 380px; height: 380px; background: radial-gradient(circle, #fbbc04 0%, transparent 70%); bottom: -100px; right: -100px; opacity: 0.28; animation-delay: -6s; }
.auth-orb--3 { width: 320px; height: 320px; background: radial-gradient(circle, #34a853 0%, transparent 70%); top: 40%; left: 45%; opacity: 0.25; animation-delay: -12s; }
.auth-container { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.auth-headline { text-align: center; max-width: 900px; margin: 0 auto 3rem; }
.auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.auth-title {
  margin: 1.25rem 0;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.16;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.auth-title-grad {
  background: linear-gradient(135deg, #fbbc04, #fde68a, #fbbc04);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.08em;
}
.auth-lede { margin: 0 auto; max-width: 780px; font-size: 1.06rem; line-height: 1.8; color: rgba(255, 255, 255, 0.88); }
.auth-lede b { color: #fff; font-weight: 700; }
.auth-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1080px) { .auth-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .auth-pillars { grid-template-columns: 1fr; } .authority-section { padding: 4rem 0; } }
.auth-pillar {
  position: relative;
  padding: 1.75rem 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.auth-pillar:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.28); }
.auth-pillar h3 { margin: 1rem 0 0.5rem; font-size: 1.1rem; font-weight: 800; color: #fff; }
.auth-pillar p { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.78); }
.auth-pillar p b { color: #fff; font-weight: 700; }
.auth-pillar-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.25);
}
.auth-pillar-icon svg { width: 26px; height: 26px; }
.auth-pillar-icon--green { background: linear-gradient(135deg, #34a853, #16a34a); }
.auth-pillar-icon--blue { background: linear-gradient(135deg, #4285f4, #1a73e8); }
.auth-pillar-icon--amber { background: linear-gradient(135deg, #fbbc04, #f59e0b); }
.auth-pillar-icon--red { background: linear-gradient(135deg, #ea4335, #be123c); }

.auth-stamp {
  margin-top: 3rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.auth-stamp-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #fbbc04, #f59e0b);
  color: #422a02;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(251, 188, 4, 0.45);
}
.auth-stamp-icon svg { width: 30px; height: 30px; }
.auth-stamp-text { font-size: 0.97rem; line-height: 1.6; color: rgba(255, 255, 255, 0.92); }
.auth-stamp-text b { color: #fff; font-weight: 700; display: block; margin-bottom: 0.15rem; }
@media (max-width: 600px) { .auth-stamp { flex-direction: column; text-align: center; } }

/* --------------------------------------------------------------------------
   Parallax banner
   -------------------------------------------------------------------------- */

.banner-section {
  padding: 7rem 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(26, 115, 232, 0.35), transparent 65%),
    radial-gradient(600px 400px at 85% 80%, rgba(52, 168, 83, 0.28), transparent 65%),
    linear-gradient(135deg, #060b1c, #0d1533 45%, #060b1c);
}
.banner-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.banner-title {
  font-size: clamp(2.2rem, 6vw, 3.9rem);
  font-weight: 800;
  line-height: 1.06;
  margin: 0.85rem 0 1.1rem;
  letter-spacing: -0.028em;
  background: linear-gradient(180deg, #ffe082, #fbbc04 45%, #f59e0b 75%, #fbbc04);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(251, 188, 4, 0.4)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  animation: bannerGlow 3.6s ease-in-out infinite;
}
.banner-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   Content blocks (inner pages)
   -------------------------------------------------------------------------- */

.content-section { padding: 5rem 0; position: relative; overflow: hidden; }
.content-section--tint { background: var(--cream); }
.content-section > .container { position: relative; z-index: 1; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr 1fr; }
@media (max-width: 900px) { .split, .split--wide-left { grid-template-columns: 1fr; gap: 2.5rem; } }

.prose h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.16; margin-bottom: 1rem; }
.prose h3 { font-size: 1.2rem; font-weight: 800; margin: 2rem 0 0.6rem; }
.prose p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; }
.prose p b, .prose li b { color: var(--ink); font-weight: 700; }
.prose ul { padding-left: 1.15rem; margin: 0 0 1.25rem; color: var(--muted); line-height: 1.75; }
.prose ul li { margin-bottom: 0.5rem; }
.prose a { font-weight: 600; border-bottom: 1px solid rgba(26, 115, 232, 0.35); }
.prose a:hover { border-bottom-color: var(--brand-blue); }

.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-doc h2 { font-size: 1.35rem; margin: 2.5rem 0 0.75rem; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-meta {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.98rem; color: var(--ink-2); line-height: 1.55; }

.info-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.35rem;
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-card);
}
.info-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.info-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.65; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.spec-table th, .spec-table td { text-align: left; padding: 0.9rem 1rem; border-bottom: 1px solid var(--stroke); vertical-align: top; }
.spec-table th { font-weight: 700; color: var(--ink); width: 34%; background: rgba(15, 17, 21, 0.02); }
.spec-table td { color: var(--muted); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--stroke); border-radius: 1.1rem; background: #fff; box-shadow: var(--shadow-card); }

.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr; } }
.platform-card {
  position: relative;
  padding: 1.85rem 1.5rem;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.platform-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(15, 17, 21, 0.12); }
.platform-logo {
  width: 54px;
  height: 54px;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 12px 24px -10px rgba(15, 17, 21, 0.4);
}
.platform-logo svg { width: 28px; height: 28px; }
.platform-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.45rem; }
.platform-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: rgba(26, 115, 232, 0.35); box-shadow: 0 14px 32px rgba(15, 17, 21, 0.08); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body { padding: 0 1.35rem 1.3rem; color: var(--muted); line-height: 1.7; font-size: 0.95rem; }
.faq-item .faq-body p + p { margin-top: 0.75rem; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(800px 400px at 15% 15%, rgba(26, 115, 232, 0.5), transparent 60%),
    radial-gradient(700px 400px at 90% 90%, rgba(52, 168, 83, 0.36), transparent 60%),
    radial-gradient(500px 300px at 50% 50%, rgba(124, 58, 237, 0.18), transparent 70%),
    linear-gradient(135deg, #0a1230, #111a4a, #0a1230);
}
.contact-section > .container { position: relative; z-index: 3; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-pitch h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0.85rem 0 1.25rem;
  background: linear-gradient(180deg, #fff, #cce0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-pitch > p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.5rem; }
.contact-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.contact-perks li { font-size: 0.96rem; color: rgba(255, 255, 255, 0.92); display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.perk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 0.3rem 0.65rem;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 800;
  flex-shrink: 0;
}
.perk-badge--green { background: linear-gradient(135deg, #34a853, #16a34a); color: #fff; box-shadow: 0 6px 16px rgba(52, 168, 83, 0.45); position: relative; }
.perk-badge--green::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, #34a853, #16a34a);
  opacity: 0.4;
  z-index: -1;
  filter: blur(8px);
  animation: perkPulse 2.2s ease-in-out infinite;
}
.perk-badge--amber { background: linear-gradient(135deg, #fbbc04, #f59e0b); color: #422a02; box-shadow: 0 6px 16px rgba(251, 188, 4, 0.4); }
.perk-badge--blue { background: linear-gradient(135deg, #1a73e8, #4f46e5); color: #fff; box-shadow: 0 6px 16px rgba(26, 115, 232, 0.45); }

.contact-methods { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 1.1rem 0.65rem 0.65rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.contact-method:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.16); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25); }
.contact-method-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-indigo));
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.45);
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.contact-method-label { font-size: 0.75rem; opacity: 0.75; font-weight: 500; }
.contact-method-value { font-size: 0.98rem; font-weight: 800; }

.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.18);
}
.contact-form-head { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.4rem; }
.contact-form-title { color: #fff; font-size: 1.35rem; font-weight: 800; }
.contact-form-sub { color: rgba(52, 168, 83, 0.95); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.contact-form select option { color: #0f1115; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.2);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-submit {
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-bright));
  border: 0;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 28px rgba(26, 115, 232, 0.42);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(26, 115, 232, 0.55); }
.contact-form-foot {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  justify-content: center;
}
.contact-form-foot svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: #080c18; color: rgba(255, 255, 255, 0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 340px; }
.footer-legal-name { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.35rem; }
.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: color 0.18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.42);
  max-width: 900px;
}

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */

@keyframes meshFloat {
  0%, 100% { transform: translate(0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.06); }
  66% { transform: translate(-20px, 20px) scale(0.96); }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.08); }
}
@keyframes floaterFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes wordSwap {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes iconRing {
  0% { transform: scale(0.85); opacity: 0.9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@keyframes haloPulse {
  0% { opacity: 0.45; transform: scale(0.95); }
  100% { opacity: 0.85; transform: scale(1.1); }
}
@keyframes sparkBlink {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0); }
  35% { opacity: 0.85; transform: scale(1.15) rotate(8deg); }
  65% { opacity: 0.4; transform: scale(0.9) rotate(-6deg); }
}
@keyframes pinFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.4; }
  25% { transform: translateY(-8px) rotate(calc(var(--r, 0deg) + 6deg)); opacity: 0.9; }
  50% { transform: translateY(-3px) rotate(calc(var(--r, 0deg) - 4deg)); opacity: 0.6; }
  75% { transform: translateY(-10px) rotate(calc(var(--r, 0deg) + 8deg)); opacity: 1; }
}
@keyframes dotTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.18; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes bannerGlow {
  0%, 100% { filter: drop-shadow(0 4px 20px rgba(251, 188, 4, 0.4)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)); }
  50% { filter: drop-shadow(0 6px 30px rgba(251, 188, 4, 0.7)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)); }
}
@keyframes cardEnter {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes perkPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.06); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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