:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --border: #e5e7eb;
  --card: #ffffff;
  --brand: var(--blue-600);
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;

  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.14);

  --container: 1120px;
  --pad: 24px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";

  --font-size: 1.125rem;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

#top {
  font-size: var(--font-size);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.nav a:hover {
  color: var(--blue-700);
  background: rgba(37, 99, 235, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--blue-600),
    var(--blue-700),
    var(--blue-800)
  );
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  color: rgba(15, 23, 42, 0.82);
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(100, 116, 139, 0.35);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-nav {
  display: none;
  padding: 10px 0 16px;
}
.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 650;
}
.mobile-nav a:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue-700);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 420px at 50% 0%,
      rgba(219, 234, 254, 0.9),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      135deg,
      rgba(219, 234, 254, 0.55),
      rgba(255, 255, 255, 1) 35%,
      rgba(239, 246, 255, 0.55)
    );
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.accent {
  color: var(--blue-600);
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: rgba(100, 116, 139, 0.95);
  font-weight: 700;
}
.hero p {
  margin: 0 auto 28px;
  max-width: 760px;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  color: rgba(71, 85, 105, 0.95);
  line-height: 1.7;
  font-weight: 560;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

/* Sections */
.section {
  padding: 92px 0;
}
.section.alt {
  background: linear-gradient(
    135deg,
    rgba(239, 246, 255, 0.7),
    rgba(255, 255, 255, 1),
    rgba(239, 246, 255, 0.55)
  );
  position: relative;
  overflow: hidden;
}
.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(219, 234, 254, 0.35),
    rgba(255, 255, 255, 0) 45%,
    rgba(219, 234, 254, 0.2)
  );
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: rgba(29, 78, 216, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.section-head p {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(71, 85, 105, 0.95);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 560;
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(71, 85, 105, 0.98);
  font-size: 1.1rem;
  line-height: 1.8;
}
.prose p {
  margin: 0 0 14px;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong {
  color: rgba(15, 23, 42, 0.92);
}

/* Verbatims of pains felt */
.problem-verbatims-section {
  margin-top: 34px;
}

.problem-verbatims-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.problem-verbatims-head {
  text-align: center;
  margin-bottom: 18px;
}

.problem-verbatims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.verbatim-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(239, 246, 255, 0.42) 0%,
    rgba(255, 255, 255, 1) 38%
  );
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px 22px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.verbatim-accent {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 170px;
  height: 170px;
  background:
    radial-gradient(circle at center,
      rgba(37, 99, 235, 0.18) 0%,
      rgba(37, 99, 235, 0.10) 28%,
      rgba(37, 99, 235, 0.04) 52%,
      rgba(37, 99, 235, 0) 72%);
  pointer-events: none;
}

.verbatim-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: var(--blue-600);
  margin-bottom: 18px;
}

.verbatim-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.verbatim-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  font-style: italic;
  font-weight: 560;
  color: rgba(15, 23, 42, 0.9);
  letter-spacing: -0.01em;
}

.verbatim-meta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(229, 231, 235, 0.95);
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(71, 85, 105, 0.92);
  font-size: 0.98rem;
}

.verbatim-meta strong {
  color: rgba(15, 23, 42, 0.96);
  font-weight: 800;
}

.problem-text,
.problem-highlight {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .problem-verbatims-grid {
    grid-template-columns: 1fr;
  }

  .verbatim-card {
    min-height: auto;
  }
}


/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: var(--font-size);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.card p {
  margin: 0;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 560;
  line-height: 1.7;
  font-size: 0.98rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: rgba(37, 99, 235, 0.95);
}

.audit-item + .audit-item { margin-top: 18px; }

.audit-item-head {
  display: flex;
  align-items: baseline; /* aligns icon with the title text line */
  gap: 10px;
}

.audit-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  top: 2px; /* tiny optical alignment tweak */
}

.audit-item-title {
  margin: 0;
  font-size: 1.05rem; /* same scale as your card h3 */
  font-weight: 800;
  letter-spacing: -0.015em;
}

.audit-item-desc {
  margin: 8px 0 0;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 560;
  line-height: 1.7;
  font-size: 0.98rem;
  padding-left: 32px; /* lines up with text, not under the icon */
}

/* Real implementations cards */
/* Sliding use cases */
.use-marquee {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.use-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: use-marquee 56s linear infinite;
}

.use-marquee:hover .use-track {
  animation-play-state: paused;
}

@keyframes use-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.use-card {
  position: relative;
  overflow: hidden;
  width: 340px;
  min-height: 260px;
  flex: 0 0 auto;
  background: #fff;
  border: 5px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.use-card-accent {
  position: absolute;
  top: -36px;
  left: -24px;
  width: 150px;
  height: 150px;
  background:
    radial-gradient(circle at center,
      rgba(37, 99, 235, 0.16) 0%,
      rgba(37, 99, 235, 0.08) 34%,
      rgba(37, 99, 235, 0.03) 56%,
      rgba(37, 99, 235, 0) 72%);
  pointer-events: none;
}

.use-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.use-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.14);
  display: grid;
  place-items: center;
  color: rgba(37, 99, 235, 0.95);
  flex: 0 0 auto;
}

.use-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: rgba(29, 78, 216, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.use-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: -0.015em;
  color: rgba(15, 23, 42, 0.94);
  line-height: 1.35;
}

.use-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(71, 85, 105, 0.96);
  font-weight: 560;
  line-height: 1.68;
  font-size: 0.96rem;
}

@media (max-width: 600px) {
  .use-card {
    width: 280px;
    min-height: 250px;
  }

  .use-track {
    animation-duration: 64s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .use-track { animation: none; }
}

/* Testimonials & customer stories */
.t-marquee {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.t-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: t-marquee 48s linear infinite;
}

.t-marquee:hover .t-track {
  animation-play-state: paused;
}

/* Right-to-left movement */
@keyframes t-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.t-card {
  position: relative;
  overflow: hidden;
  width: 320px;
  min-height: 360px;
  flex: 0 0 auto;
  background: #fff;
  border: 5px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
}

.t-accent {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 170px;
  height: 170px;
  background:
    radial-gradient(circle at center,
      rgba(37, 99, 235, 0.18) 0%,
      rgba(37, 99, 235, 0.10) 28%,
      rgba(37, 99, 235, 0.04) 52%,
      rgba(37, 99, 235, 0) 72%);
  pointer-events: none;
}

.t-quote-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: rgba(37, 99, 235, 0.92);
  margin-bottom: 14px;
}

.t-quote-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.t-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.t-name {
  font-weight: 850;
  letter-spacing: -0.015em;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.2;
}

.t-role {
  font-weight: 650;
  color: rgba(71, 85, 105, 0.85);
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.45;
}

.t-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2px;
  margin: 2px 0 12px;
  line-height: 1;
}

.t-star {
  font-size: 16px;
  color: rgba(251, 191, 36, 0.95);
}

.t-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(15, 23, 42, 0.88);
  font-weight: normal;
  font-style: italic;
  line-height: 1.72;
  font-size: 0.98rem;

  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(229, 231, 235, 0.85);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.t-date {
  font-size: 12px;
  font-weight: 700;
  color: rgba(100, 116, 139, 0.82);
}

/* Mobile */
@media (max-width: 600px) {
  .t-card {
    width: 270px;
    min-height: 330px;
  }

  .t-track {
    animation-duration: 60s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-track { animation: none; }
}

/* WHY us section */
.section.why {
  position: relative;
  background: radial-gradient(1200px 500px at 50% 0%,
    rgba(59, 130, 246, 0.14),
    rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg,
    rgba(59, 130, 246, 0.08),
    rgba(255, 255, 255, 0.75),
    rgba(59, 130, 246, 0.06));
}

.why-list {
  margin-top: 42px;
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* each tile */
.why-item {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* small blue check */
.why-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.why-copy h3 {
  margin: 0 0 6px;
  font-size: var(--font-size);
  font-weight: 850;
  letter-spacing: -0.015em;
  color: rgba(15, 23, 42, 0.92);
}

.why-copy p {
  margin: 0;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 560;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* responsive */
@media (max-width: 600px) {
  .why-item { padding: 16px; }
  .why-list { gap: 14px; }
}

/* Mobile */
@media (max-width: 600px) {
  .t-card { width: 260px; min-height: 300px; }
  .t-track { animation-duration: 60s; }
}

@media (prefers-reduced-motion: reduce) {
  .t-track { animation: none; }
}

/* Before/After */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 560;
  line-height: 1.6;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  margin-top: 2px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.dot.bad {
  color: rgba(239, 68, 68, 0.95);
}
.dot.good {
  color: rgba(22, 163, 74, 0.95);
  line-height: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(229, 231, 235, 0.9);
}
.kicker.bad {
  background: rgba(239, 68, 68, 0.08);
  color: rgba(185, 28, 28, 0.95);
  border-color: rgba(239, 68, 68, 0.18);
}
.kicker.good {
  background: rgba(22, 163, 74, 0.08);
  color: rgba(21, 128, 61, 0.95);
  border-color: rgba(22, 163, 74, 0.18);
}

/* Why different list */
.stack {
  display: grid;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 231, 235, 0.85);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}
.feature p {
  margin: 0;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 560;
  line-height: 1.65;
}

/* FAQ */
details.faq {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

details.faq + details.faq {
  margin-top: 10px;
}

summary.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.92);
}
summary.faq-q::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(15, 23, 42, 0.02);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

details[open] .faq-icon {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.faq-a {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(229, 231, 235, 0.75);
}
.faq-a p {
  margin: 14px 0 0;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 560;
  line-height: 1.75;
}

/* CTA sections */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: linear-gradient(
    135deg,
    rgba(239, 246, 255, 0.9),
    rgba(255, 255, 255, 1),
    rgba(239, 246, 255, 0.75)
  );
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 360px at 50% 0%,
    rgba(37, 99, 235, 0.16),
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}

/* CTA & btns */

.btn-light{
  background:#fff;
  color:var(--brand);
  border:1px solid #fff;
}

.btn-light:hover{
  background:rgba(255,255,255,.92);
  color:var(--brand);
}

.btn-outline-light{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.7);
}

.btn-outline-light:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  line-height:1;
}

.cta-dark-primary {
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid #ffffff;
}

.cta-dark-primary:hover {
  background: #f8fafc;
}

.cta-dark-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
}

.cta-dark-secondary:hover {
  background: rgba(255,255,255,0.08);
}


/* Footer */
.site-footer {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 1),
    rgba(255, 255, 255, 1)
  );
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding: 42px 0 24px;
  color: rgba(15, 23, 42, 0.88);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-summary {
  margin: 14px 0 14px;
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.9);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact p {
  margin: 0;
  color: rgba(71, 85, 105, 0.95);
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 560;
}

.footer-contact a {
  color: inherit;
}

.footer-contact a:hover {
  color: var(--blue-700);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 520px;
  padding-top: 6px;
}

.footer-nav a {
  color: rgba(71, 85, 105, 0.92);
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-nav a:hover {
  color: var(--blue-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  color: rgba(100, 116, 139, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover {
  color: var(--blue-700);
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    justify-content: flex-start;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .nav,
  .header-actions {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .mobile-nav.is-open {
    display: block;
  }
  .hero {
    padding: 76px 0 60px;
  }
  .section {
    padding: 76px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
