/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bs-body-font-family: "Inter", sans-serif;
  --mono: "DM Mono", monospace;
  --accent: #1A8CA0;
  --accent-dark: #136F80;
  --accent-light: #E0F5F8;
  --success: #10b981;
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --g1: #f8fafc;
  --g2: #e2e8f0;
  --g3: #94a3b8;
  --g4: #64748b;
  --g5: #334155;
  --scroll-offset: 72px;
}

/* ── BASE ────────────────────────────────────────────────── */
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  overflow-x: clip;
}
.page-wrap { overflow-x: clip; position: relative; }
[id] { scroll-margin-top: var(--scroll-offset); }

/* ── NAV ─────────────────────────────────────────────────── */
.navbar {
  /* backdrop-filter: blur(20px); */
  /* background: rgba(255,255,255,0.95) !important; */
  /* border-bottom: 1px solid var(--g2); */
  padding: 0.875rem 0;
}
.navbar-scrolled {
  /* background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08); */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  /* border-radius: 20px; */
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}
/* backdrop-filter lives on a pseudo-element, not the .navbar itself, so it
   doesn't create a CSS containing block for the fixed-position offcanvas
   nested inside the nav (that was breaking the drawer's positioning). */
.navbar-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar-brand,
.navbar-brand:focus,
.navbar-brand:focus-visible,
.navbar-brand:active {
  outline: none !important;
  box-shadow: none !important;
}
.navbar-brand {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-contact-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--bs-body-font-family);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-contact-link:hover {
  color: var(--ink);
}
.nav-contact-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.brand-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.nav-links { align-items: center; }
.nav-link-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link-item:hover { color: var(--ink); }
.btn-nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--accent-dark); color: #fff; }
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.4rem;
}
.navbar-toggler:focus { box-shadow: none; }
.nav-links {
  gap: 1.5rem;
}
.offcanvas-body .nav-meta {
  margin-left: 2rem;
}
.dropdown-menu {
  border: 1px solid var(--g2);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 0.5rem;
}
.dropdown-item {
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.offcanvas-title {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.offcanvas-header .btn-close {
  box-shadow: none;
}
@media (max-width: 991px) {
  #mainNavOffcanvas {
    width: 78%;
    max-width: 340px;
  }
  .offcanvas-header {
    padding: 1.25rem 1.25rem 0.5rem;
  }
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.25rem 2rem;
  }
  .offcanvas .btn-close {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--g1);
    background-size: 0.9rem;
    opacity: 1;
    transition: background-color 0.15s;
  }
  .offcanvas .btn-close:hover {
    background-color: var(--accent-light);
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav-links-mobile {
    gap: 0.2rem;
  }
  .nav-links-mobile .nav-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    transition: background-color 0.15s, color 0.15s;
  }
  .nav-links-mobile .nav-link-item:hover,
  .nav-links-mobile .nav-link-item:active {
    background: var(--accent-light);
    color: var(--accent-dark);
  }
  .offcanvas-body .nav-meta {
    margin-top: 1.5rem;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .offcanvas-body .nav-meta .btn-nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }
  .nav-links .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0 0.75rem;
    width: 100%;
  }
  .nav-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--g2);
  }
  .nav-contact-heading {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-contact-block .nav-contact-link {
    padding: 0.35rem 0;
  }
  .nav-contact-block .nav-contact-link svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
  }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: var(--scroll-offset);
  overflow: hidden;
  /* background: linear-gradient(180deg, #FFFFFF 0%, #F0F3FF 60%, #E4EAFF 100%); */
}
.hero-section::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 500px;
    background-color: #dfdffb;
    border-radius: 50%;
    top: -400px;
     filter: blur(100px);
}
.hero-section::after {
    position: absolute;
    content: '';
    width: 100vw;
    height: 200px;
    background-color: #e2fff3;
    border-radius: 50%;
    bottom: -200px;
     filter: blur(200px);
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(26,140,160,0.2) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, black 0%, transparent 70%);
  opacity: 0.45;
}
.hero-center {
  text-align: center;
  padding: 4rem 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(26,140,160,0.2);
  border-radius: 999px;
  padding: 0.3rem 0.3rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(26,140,160,0.08);
}
.hero-pill-tag {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.hero-pill-text {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0 0.9rem 0 0.7rem;
  letter-spacing: 0.01em;
}
.hero-h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-h1-accent {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 80%;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hstat-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hstat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
}
.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: var(--g2);
  flex-shrink: 0;
}
.btn-primary-lg {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-left: -8px;
  letter-spacing: 0.03em;
}
.proof-avatar:first-child { margin-left: 0; background: var(--accent-dark); }
.proof-avatar:nth-child(2) { background: #136F80; }
.proof-avatar:nth-child(3) { background: #1A8CA0; }
.hero-proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.proof-stars {
  font-size: 0.75rem;
  color: #f59e0b;
  letter-spacing: 0.05em;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--g2);
  border-radius: 999px;
  padding: 0.82rem 1.6rem;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  backdrop-filter: blur(8px);
}
.btn-outline-hero i { font-size: 0.88rem; color: var(--accent); }
.btn-outline-hero:hover { border-color: var(--accent); background: #fff; color: var(--ink); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-accent {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}
.btn-ghost {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--g2);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--g4); }

/* ── DEPLOY TERMINAL (removed - no longer used) ─────────── */
.hero-deploy {
  background: #0f172a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(79,70,229,0.2),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
  font-family: var(--mono);
}
.deploy-header {
  background: #1e293b;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.deploy-dots { display: flex; gap: 0.4rem; }
.log-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.log-dot-red    { background: #ff5f57; }
.log-dot-yellow { background: #febc2e; }
.log-dot-green  { background: #28c840; }
.deploy-title {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: center;
}
.deploy-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
}
.deploy-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}
.deploy-body { padding: 1.5rem 1.5rem; }
.deploy-cmd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}
.deploy-prompt {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
}
.deploy-command {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.deploy-spacer { height: 0.75rem; }
.deploy-step {
  display: grid;
  grid-template-columns: 1.25rem 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.76rem;
}
.deploy-step:last-of-type { border-bottom: none; }
.dstep-icon {
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}
.dstep-label {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.dstep-val {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}
.deploy-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.deploy-result {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.deploy-arrow {
  font-size: 0.75rem;
  color: #4ade80;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.deploy-result-title {
  font-size: 0.82rem;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.deploy-result-meta {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--g2);
  border-bottom: 1px solid var(--g2);
  background: #fff;
  padding: 2.5rem 0;
}
.stats-strip-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid var(--g2);
}
.stats-strip-item:last-child { border-right: none; }
.ss-val {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ss-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

/* ── STICKY STACK SECTION ────────────────────────────────── */
.stack-section {
  position: relative;
  background: var(--g1);
}
.stack-pin {
  position: sticky;
  top: var(--scroll-offset);
  height: calc(100vh - var(--scroll-offset));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 2rem;
}
.stack-header {
  text-align: center;
}
.stack-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.stack-title {
  margin: 0;
}
.stack-cards-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.stack-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.stack-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.stack-visual-item--risk {
  color: #e05c5c;
  border-color: rgba(224,92,92,0.15);
}
.stack-card-visual--dark .stack-visual-item--risk {
  color: #ff8a8a;
}
.stack-card--1 {
  position: relative;
  z-index: 1;
  will-change: transform;
}
.stack-card--2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 2;
  will-change: transform;
}
.stack-card {
  width: min(960px, 90vw);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
}
.stack-card--1 {
  background: #f0fafa;
  border: 1px solid rgba(26,140,160,0.15);
}
.stack-card--2 {
  background: #fff;
  border: 1px solid var(--g2);
}
.stack-card-inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.stack-card-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stack-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.stack-card-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.stack-card-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.stack-card-cta {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.85rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.stack-card-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.stack-card-right {
  flex: 0 1 35%;
  min-width: 0;
}
.stack-card-visual {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.stack-card-visual--dark {
  background: var(--ink);
  border-color: transparent;
}
.stack-card-visual--dark .stack-visual-label {
  color: rgba(255,255,255,0.7);
}
.stack-card-visual--dark .stack-visual-item {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.08);
}
.stack-visual-icon {
  font-size: 2rem;
}
.stack-visual-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.stack-visual-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stack-visual-item {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--g2);
  font-weight: 500;
}
.stack-visual-item:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .stack-section { height: auto !important; }
  .stack-pin { position: relative; top: 0; height: auto; }
  .stack-card--2 { position: relative; top: 0; left: 0; transform: none !important; margin-top: 1.5rem; }
  .stack-cards-wrap { flex-direction: column; }
  .stack-card-inner { flex-direction: column; padding: 1rem; gap: 1rem; }
  .section-heading,
  .title-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  }
  .stack-card-visual {
    padding: 1rem 0rem; 
    background: transparent;
    border: none;
    box-shadow: none;
    color: #000;
  }
  .stack-card-visual--dark .stack-visual-label {
    color: #000;
  }
  .stack-card-visual--dark .stack-visual-item {
   color: #000;
    border-color: rgba(0, 0, 0, 0.08);
}
  

  .stack-card-right { flex: none; width: 100%; }
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: #111315;
  border-top: 1px solid #1f2329;
  border-bottom: 1px solid #1f2329;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.trust-strip span { color: rgba(255,255,255,0.95); }
.strip-icon { font-size: 1.1rem; color: rgba(255,255,255,0.4); }
.trust-strip-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.trust-strip-link:hover {
  opacity: 0.7;
}
.trust-strip-link:hover .strip-icon {
  color: rgba(255,255,255,0.75);
}

/* ── SECTION SHARED ──────────────────────────────────────── */
.section-pad { padding: 6rem 0; }
.section-header { max-width: 680px; margin-bottom: 3.5rem; }
.sec-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sec-label::before { content: "//"; color: var(--g3); }
.section-heading,
.title-h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}
.section-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
}

/* ── THE SITUATION ───────────────────────────────────────── */
.situation-section { background: #fff; }
.situation-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.situation-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 1rem;
}
.situation-sub:last-of-type { margin-bottom: 0; }
.sit-card {
  border-radius: 16px;
  padding: 2rem 2rem;
}
.sit-card-light {
  background: #fff;
  border: 1px solid var(--g2);
}
.sit-card-grey {
  background: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 24px rgba(26,140,160,0.08);
}
.sit-doodle-arrow {
  display: flex;
  justify-content: center;
  max-height: 70px;
}
.sit-doodle-arrow svg {
  width: 140px;
  height: 65px;
  color: var(--accent);
  opacity: 0.7;
  transform: rotate(5deg);
}
.sit-card-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--g2);
}
.sit-card-light .sit-card-label { color: var(--muted); }
.sit-card-grey  .sit-card-label { color: var(--accent); border-color: rgba(26,140,160,0.15); }
.sit-quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  border: none;
  font-style: italic;
}
.sit-quote::before { content: open-quote; color: var(--accent); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.15em; }
.sit-solution {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.sit-solution strong { color: var(--ink); }

/* ── TOOL PILLS ──────────────────────────────────────────── */
.tool-built-with {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.tool-built-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g3);
  white-space: nowrap;
}
.tool-pill {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.02em;
}
.tool-pill-more { color: var(--muted); background: transparent; border-color: transparent; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-section { background: #fff; }
.analyser-section { background: #fff; }
.svc-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--g2);
  border-radius: 16px;
  overflow: hidden;
}
.svc-grid-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--g2);
  border-bottom: 1px solid var(--g2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fff;
  transition: background 0.15s;
}
.svc-grid-item:hover { background: var(--g1); }
.svc-grid-item:nth-child(3),
.svc-grid-item:nth-child(6) { border-right: none; }
.svc-grid-item:nth-child(4),
.svc-grid-item:nth-child(5),
.svc-grid-item:nth-child(6) { border-bottom: none; }
.svc-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.svc-body {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process-section {
  background: var(--g1);
  padding-bottom: 80px;
}
.process-section .container{
  position: relative;
  padding-bottom: 320px;
}
.process-section .col-lg-5 {
  position: relative;
  z-index: 10;
}
.proc-wave-canvas {
  position: relative;
  width: 100%;
  padding-bottom: 44%;
  overflow: visible;
  position: absolute;
  max-width: 1400px;
  bottom: 0;
}
.proc-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: visible;
}

/* Large faded step numbers behind dots */
.proc-bg-num {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: 900;
  color: #dde3ec;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Zero-size label anchors at dot positions */
.proc-node {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 2;
}
.proc-label {
  position: absolute;
  width: 240px;
  text-align: center;
  padding: 1rem;
}
.proc-label-above {
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}
.proc-label-below {
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}
/* Last node: right-anchor to avoid overflow */
.proc-node-last .proc-label {
  left: auto;
  right: 6px;
  transform: none;
  text-align: right;
}
.proc-step-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.proc-step-live { color: var(--accent); }
.proc-step-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Mobile step list - hidden on desktop */
.proc-steps-mobile { display: none; }
.proc-step-m {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--g2);
}
.proc-step-m:last-child { border-bottom: none; }
.proc-step-m-num {
  font-size: 2rem !important;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 2.5rem;
  opacity: 0.2;
}
.proc-step-m strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.15rem; }
.proc-step-m span { display: block; font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.proc-step-m-live strong { color: var(--accent); }

/* ── PROCESS PRICING NOTE ────────────────────────────────── */
.proc-pricing-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--g3);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ── FAQ PREVIEW ─────────────────────────────────────────── */
.faq-preview-section { background: var(--g1); }
.faq-preview-list { display: flex; flex-direction: column; }
.faqp-item { border-bottom: 1px solid var(--g2); }
.faqp-item:first-child { border-top: 1px solid var(--g2); }
.faqp-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
}
.faqp-answer { display: block; padding-bottom: 1.25rem; }
.faqp-answer p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin: 0; }
.faqp-answer p strong { color: var(--ink); }

/* ── READINESS CHECKER ───────────────────────────────────── */
.analyser-panel {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(15,23,42,0.06);
}
.ap-head {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--g2);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: var(--g1);
}
.ap-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.ap-head p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.ap-form-code {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--g3);
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.ap-group-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--g2);
  padding-bottom: 0.65rem;
  margin-bottom: 0.75rem;
}
.ap-finding {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--g5);
  padding: 0.55rem 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1.5;
}
.ap-finding:last-child { border-bottom: none; }
.ap-finding:hover { color: var(--ink); }
.ap-finding input[type="checkbox"] { margin-top: 4px; accent-color: var(--accent); }
.ap-finding input[type="checkbox"]:checked ~ span {
  text-decoration: line-through;
  color: var(--g3);
}
.ap-risk {
  padding: 1.5rem 2rem;
  background: #fff;
  border-top: 1px solid var(--g2);
}
.ap-risk-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.ap-risk-score {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.ap-risk-bar {
  height: 4px;
  border-radius: 999px;
  background: var(--g2);
  overflow: hidden;
}
.ap-risk-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--success);
  transition: width 0.4s ease;
}
.ap-risk-msg {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.ap-risk-details {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}
.ap-risk-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s;
}
.ap-risk-cta:hover { background: var(--accent-dark); color: #fff; }
.analyser-rows { border-color: var(--g2) !important; }
@media (min-width: 768px) {
  .analyser-mid-col {
    border-left: 1px solid var(--g2);
    border-right: 1px solid var(--g2);
  }
}

/* ── WHY US ───────────────────────────────────────── */
.why-section { background: #fff; }
.founder-quote {
  border: none;
  border-left: 3px solid var(--accent);
  margin: 0 0 2rem 0;
  padding: 0.25rem 0 0.25rem 1.75rem;
}
.founder-quote p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.founder-quote p:last-child { margin-bottom: 0; }
.founder-sig {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.sig-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.sig-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.sig-role {
  font-size: 0.78rem;
  color: var(--muted);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--g2);
  border: 1px solid var(--g2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(15,23,42,0.05);
}
.stat-item {
  background: #fff;
  padding: 2rem 1.75rem;
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}
.stat-item:hover { background: var(--accent-light); }
.stat-val {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SITE FOOTER - BENTO ─────────────────────────────────── */
.site-footer {
  background: #0c0c0e;
  padding: 3rem 0 2rem;
}
.fb-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.6fr 1fr 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.fb-box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.75rem;
}
/* brand - spans row 1 col 1 */
.fb-box--brand {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* cta - spans row 1 col 2, row 2 col 2 */
.fb-box--cta {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--accent);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
/* stats - row 1, cols 3-5 */
.fb-box--stat {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px;
}
.fb-box--tagline {
  grid-column: 3 / 6;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
}
.fb-footer-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.fb-footer-tagline--contact {
  margin-top: auto;
}
.fb-brand-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.fb-brand-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.fb-brand-link:hover { color: #fff; }

/* contact - col 5, row 1 */
.fb-box--contact {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* nav - col 5, row 1 */
.fb-box--nav {
  grid-column: 5;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-start;
  align-self: start;
}

/* Brand box internals */
.fb-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.fb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.fb-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.fb-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* CTA box internals */
.fb-cta-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.fb-cta-heading {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0.75rem 0 1rem;
  flex: 1;
}
.fb-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
  align-self: flex-start;
}
.fb-cta-btn:hover { opacity: 0.9; color: var(--accent); transform: translateY(-1px); }

/* Stat box internals */
.fb-stat-val {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.fb-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* Contact & Nav box internals */
.fb-contact-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.fb-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color 0.15s;
}
.fb-contact-link:hover { color: #fff; }
.fb-contact-link svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0;
}
.fb-nav-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.fb-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.fb-nav-link {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.15s;
}
.fb-nav-link:hover { color: #fff; }

.fb-ai-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.fb-ai-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.fb-ai-logos {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.fb-ai-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.fb-ai-logo:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .fb-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .fb-box--brand   { grid-column: 1 / 3; grid-row: unset; padding: 0.5rem;}
  .fb-box--cta     { grid-column: 1; grid-row: unset; min-height: auto; padding: 1rem;}
  .fb-box--contact { grid-column: 2; grid-row: unset;  padding: 0.5rem;}
  .fb-box--nav     { grid-column: 2; grid-row: unset;  padding: 0.5rem;}
  .fb-box--tagline { grid-column: 1 / 3; grid-row: unset; }
  .fb-box--tagline{
    padding: 0.5rem;
  }
  
}
@media (max-width: 540px) {
  .fb-grid { grid-template-columns: 1fr; }
  .fb-box--brand,
  .fb-box--cta,
  .fb-box--contact,
  .fb-box--nav { grid-column: 1; grid-row: unset; }
  .fb-box--tagline { grid-column: 1; grid-row: unset; order: 10; }
  .fb-box--brand { order: -1; }
}

/* legacy aliases - keep for inner-page footers */
.foot-logo { font-size: 0.88rem; font-weight: 700; color: #fff; text-decoration: none; }
.foot-legal { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.foot-link { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.foot-link:hover { color: rgba(255,255,255,0.85); }
.footer-section { background: #0c0c0e; border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.in { opacity: 1; transform: translateY(0); }

/* ── INNER PAGES ─────────────────────────────────────────── */
.ip-page {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(26,140,160,0.10) 0%, rgba(26,140,160,0.04) 45%, transparent 70%),
    #fff;
  padding: 100px 0 5rem;
}
.ip-back {
  display: inline-block;
  font-size: 0.8rem; color: #999;
  text-decoration: none; letter-spacing: 0.02em;
  margin-bottom: 2rem; transition: color 0.15s;
}
.ip-back:hover { color: var(--ink); }
.ip-header { max-width: 640px; }
.ip-meta { font-size: 0.8rem; color: #999; margin: 0; }
.ip-header .section-sub a { color: var(--ink); text-decoration: underline; }
.ip-divider { height: 0; background: transparent; margin: 2.5rem 0; }
.ip-body h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  margin: 1.25rem 0 0.4rem; padding-top: 0;
}
.ip-body h2:first-child { margin-top: 0; padding-top: 0; }
.ip-body h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin: 1.5rem 0 0.35rem; }
.ip-body p, .ip-body li { font-size: 0.925rem; line-height: 1.8; color: #444; margin-bottom: 0.5rem; }
.ip-body ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.ip-body strong { color: var(--ink); }
.ip-body a { color: var(--ink); text-decoration: underline; }
.ip-body address { font-style: normal; font-size: 0.925rem; line-height: 1.9; color: #444; }
.ip-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 1rem; }
.ip-table th, .ip-table td { text-align: left; padding: 0.6rem 0.85rem; border: 1px solid var(--g2); }
.ip-table thead th { background: var(--g1); color: var(--ink); font-weight: 600; }
.ip-table tbody td { color: #444; line-height: 1.6; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(26,140,160,0.10) 0%, rgba(26,140,160,0.04) 45%, transparent 70%),
    #fff;
  padding: 100px 0 2.5rem;
}
.page-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
  color: var(--ink); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.contact-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 1rem; }
.contact-sub { font-size: 0.975rem; color: #555; line-height: 1.75; }
.cf-label { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #999; }
.contact-features li { font-size: 0.9rem; color: #444; padding-left: 1.25rem; position: relative; line-height: 1.5; margin-bottom: 0.5rem; }
.contact-features li::before { content: "–"; position: absolute; left: 0; color: #bbb; }
.contact-direct-link { font-size: 0.9rem; color: var(--ink); text-decoration: none; transition: opacity 0.15s; }
.contact-direct-link:hover { opacity: 0.6; }
.contact-right { background: #fff; border: 1px solid #e4e4e0; border-radius: 16px; padding: 2.5rem; }
.cf-field-label { font-size: 0.8rem; font-weight: 500; color: #555; display: block; margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.cf-field-label span { color: #e05; }
.cf-input {
  font-family: "Inter", sans-serif; font-size: 0.9rem; color: var(--ink);
  background: #fff; border: 1px solid #ddd; border-radius: 8px;
  padding: 0.7rem 1rem; outline: none; transition: border-color 0.15s; resize: none; display: block;
}
.cf-input::placeholder { color: #bbb; }
.cf-input:focus { border-color: var(--ink); }
.contact-form-title { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.contact-form-sub { font-size: 0.875rem; color: #888; margin-bottom: 1.75rem; line-height: 1.6; }
.cf-submit {
  font-family: "Inter", sans-serif; font-size: 0.9rem; font-weight: 600;
  color: #fff !important; background: var(--ink); border: none;
  border-radius: 8px; padding: 0.75rem 2rem; cursor: pointer; transition: opacity 0.15s; display: inline-block;
}
.cf-submit:hover { opacity: 0.85; }
.cf-submit:disabled { opacity: 0.4; cursor: default; }
.cf-note { font-size: 0.775rem; color: #aaa; line-height: 1.6; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.ab-how-list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.7rem; }
.ab-how-list li { font-size: 0.925rem; color: #444; line-height: 1.6; display: flex; align-items: flex-start; gap: 0.6rem; }
.ab-how-list i { color: var(--accent); font-size: 0.95rem; margin-top: 0.2rem; flex-shrink: 0; }
.about-page {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 85% 10%, rgba(26,140,160,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 0% 20%, rgba(26,140,160,0.08) 0%, transparent 75%),
    #fff;
  padding-bottom: 3rem;
}
.ab-visual {
  background:
    radial-gradient(circle at top right, rgba(26,140,160,0.18) 0%, transparent 38%),
    radial-gradient(circle at bottom left, rgba(26,140,160,0.1) 0%, transparent 32%),
    linear-gradient(180deg, #17181b 0%, #0d0e10 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,23,42,0.16);
}
.ab-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 45%);
  pointer-events: none;
}
.ab-label {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.ab-year {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}
.ab-tagline {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 26rem;
}
.ab-divider {
  position: relative;
  z-index: 1;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 1.75rem;
}
.ab-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.ab-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(10px);
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
}
.ab-stat:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(26,140,160,0.35);
}
.ab-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.ab-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.64);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ab-process {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.ab-process-step { display: flex; align-items: flex-start; gap: 1rem; }
.ab-process-index {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(26,140,160,0.35);
  background: rgba(26,140,160,0.1);
  border-radius: 8px;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-process-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.ab-process-desc { font-size: 0.85rem; color: rgba(255,255,255,0.64); line-height: 1.55; }

.ab-visual-light {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: 16px;
  padding: 2.5rem;
}
.ab-label-light {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.ab-divider-light { border: none; border-top: 1px solid var(--g2); margin: 0 0 1.75rem; }
.ab-process-index-light {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(26,140,160,0.3);
  background: rgba(26,140,160,0.06);
  border-radius: 8px;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-process-title-light { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.ab-process-desc-light { font-size: 0.85rem; color: #666; line-height: 1.55; }

.ab-visual-full { padding: 2.5rem 3rem; }
.ab-process-row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 0;
}
.ab-process-row .ab-process-step {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 220px;
}
@media (max-width: 767px) {
  .ab-process-row .ab-process-step { flex: 1 1 100%; }
}
.ab-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,140,160,0.08);
  border: 1px solid rgba(26,140,160,0.25);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ab-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,140,160,0.14);
  border: 1px solid rgba(26,140,160,0.32);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
  color: #ffd6b7;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ab-pulse {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(26,140,160,0.45);
  animation: ab-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(26,140,160,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(26,140,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,140,160,0); }
}
.ab-team-section {
  background: linear-gradient(180deg, #fff 0%, var(--g1) 100%);
  padding: 5rem 0;
  border-top: 1px solid var(--g2);
  border-bottom: 1px solid var(--g2);
}
.ab-team-intro { max-width: 600px; }
.ab-team-grid-wrap {
  border: 1px solid var(--g2);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 2.5rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15,23,42,0.06);
}
.ab-team-grid-wrap .row > div {
  border-right: 1px solid var(--g2);
  border-bottom: 1px solid var(--g2);
}
.ab-team-grid-wrap .row > div:nth-child(3n) { border-right: none; }
.ab-team-grid-wrap .row > div:nth-last-child(-n+3) { border-bottom: none; }
.ab-team-cell {
  background: rgba(255,255,255,0.88);
  padding: 1.9rem 1.6rem;
  transition: background 0.15s, transform 0.15s;
  height: 100%;
}
.ab-team-cell:hover {
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
  transform: translateY(-1px);
}
.ab-team-cell-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.ab-team-cell-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.ab-team-cell-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--g4);
  line-height: 1.7;
  margin: 0;
}
.ab-why-copy {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}
.ab-why-copy strong { color: var(--ink); font-weight: 700; }
.ab-vision-section {
  background: #fff;
  padding: 5rem 0;
}
.ab-vision-close {
  margin-top: 1.75rem;
}
.ab-vision-close .ab-vision-statement { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 1.1rem; }
.ab-vision-statement {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text);
  margin: 0 0 1.75rem;
}
.ab-vision-statement strong { color: var(--ink); font-weight: 700; }
.ab-vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.ps-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #fff7f1;
  border: 1px solid rgba(26,140,160,0.18);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── SERVICE / CONTENT PAGES ─────────────────────────────── */
.service-page {
  background: #fff;
}
.service-page .navbar-scrolled {
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}
.service-hero {
  isolation: isolate;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background:
    radial-gradient(ellipse 55% 45% at 85% 10%, rgba(26,140,160,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 0% 20%, rgba(26,140,160,0.08) 0%, transparent 75%),
    #fff;
  border-bottom: 0;
}
.service-hero::before {
  content: none;
}
.service-breadcrumb {
  align-items: center;
  gap: 0.45rem;
  color: var(--g4);
  font-weight: 600;
}
.service-breadcrumb i {
  transition: transform 0.18s ease;
}
.service-breadcrumb:hover i {
  transform: translateX(-3px);
}
.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.service-eyebrow span {
  width: 1.8rem;
  height: 1px;
  background: var(--accent);
}
.service-hero .page-title {
  max-width: 920px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.service-hero .contact-sub {
  max-width: 760px;
  color: #555;
  font-size: 0.975rem;
  line-height: 1.75;
}
.service-hero .ab-how-list {
  gap: 0;
  margin: 1.7rem 0 2rem;
}
.service-hero .ab-how-list li {
  padding: 0.85rem 0;
  color: var(--g5);
}
.service-hero .ab-how-list i {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--accent-light);
}
.service-hero .ab-visual-light {
  position: relative;
  border-color: rgba(26, 140, 160, 0.2);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
.service-hero-media {
  overflow: hidden;
  padding: 0.4rem;
  border: 1px solid rgba(26, 140, 160, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}
.service-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
}
.service-hero .ab-visual-full {
  margin-top: 4rem !important;
}
.service-section {
  padding: 4rem 0;
  background: #fff;
  border: 0;
}
.service-section--tint {
  background: #f8fafc;
  border-top: 1px solid var(--g2);
  border-bottom: 1px solid var(--g2);
}
.service-section .sec-label {
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(26, 140, 160, 0.18);
  border-radius: 999px;
  background: rgba(224, 245, 248, 0.5);
  color: var(--accent-dark);
}
.service-section .title-h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.service-section .ab-visual-light {
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.055);
}
.service-section .ab-process {
  gap: 0;
}
.service-section .ab-process-step {
  position: relative;
  padding: 1.75rem 0 0;
}
.service-section .ab-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.08rem;
  top: 2.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: var(--g2);
}
.service-section .ab-process-index-light {
  position: relative;
  z-index: 1;
  background: #fff;
}
.pickup-section {
  background: var(--g1);
}
.pickup-section .ab-process-desc-light {
  max-width: 380px;
}
.pickup-row {
  --bs-gutter-x: 5rem;
}
.pickup-section .ab-process-index-light {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(26, 140, 160, 0.3);
}
@media (max-width: 767px) {
  .pickup-row {
    --bs-gutter-x: 1.5rem;
  }
}
.compare-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-badge i {
  color: var(--accent);
  font-size: 0.85rem;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.hero-trust-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g4);
  margin-right: 0.25rem;
}
.hero-trust-tag {
  padding: 0.32rem 0.75rem;
  border: 1px solid var(--g2);
  border-radius: 999px;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--g5);
}
.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.25rem;
  border-radius: 24px;
  background: #f0fafa;
  border: 1px solid var(--g2);
}
.closing-cta-text h3 { color: var(--ink); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.closing-cta-text p { color: var(--text); font-size: 0.95rem; margin-bottom: 0; }
.closing-cta .btn-primary { flex-shrink: 0; }
.closing-cta--center {
  flex-direction: column;
  text-align: center;
}
.closing-cta--center .closing-cta-text {
  max-width: 560px;
}
@media (max-width: 767px) {
  .closing-cta { flex-direction: column; align-items: flex-start; padding: 2.25rem; }
  .closing-cta--center { align-items: center; }
}
.pickup-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pickup-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--g2);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.pickup-card:hover {
  border-color: rgba(26, 140, 160, 0.3);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}
.pickup-card .ab-process-index-light {
  position: absolute;
  top: 1.75rem;
  right: 1.5rem;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--g3);
}
@media (max-width: 991px) {
  .pickup-grid { grid-template-columns: repeat(2, 1fr); }
  .pickup-card:not(:last-child)::after { content: none; }
}
@media (max-width: 575px) {
  .pickup-grid { grid-template-columns: 1fr; }
}
.service-page .ps-stats-section {
  padding: 1.4rem 0;
  background: var(--ink);
  border: 0;
}
.service-page .ps-stats-grid {
  gap: 0;
}
.service-page .ps-stat {
  min-height: 7.5rem;
  padding: 1.35rem 1.75rem;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.service-page .ps-stat:last-child {
  border-right: 0;
}
.service-page .ps-stat-num {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.service-page .ps-stat-label {
  max-width: 13rem;
  color: rgba(255, 255, 255, 0.58);
}
.service-page .ps-badge {
  background: var(--accent-light);
  border-color: rgba(26, 140, 160, 0.18);
}
.service-page .ps-compare-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--g2);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
}
.service-page .ps-compare-col {
  min-height: 100%;
  padding: 2.6rem;
  border: 0;
  border-radius: 0;
}
.service-page .ps-compare-col--bad {
  background: #fff;
  border-right: 1px solid var(--g2);
}
.service-page .ps-compare-col--good {
  background: linear-gradient(145deg, #f1fbfc 0%, #e8f7f9 100%);
}
.service-page .ps-compare-heading {
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}
.service-page .ps-compare-list {
  gap: 1rem;
}
.service-page .ps-compare-list li {
  font-size: 0.92rem;
}
.service-page .ps-faq-item {
  background: #fff;
  border: 1px solid var(--g2);
  border-bottom: 0;
}
.service-page .ps-faq-item:first-child {
  border-radius: 16px 16px 0 0;
}
.service-page .ps-faq-item:last-child {
  border-bottom: 1px solid var(--g2);
  border-radius: 0 0 16px 16px;
}
.service-page .ps-faq-q {
  padding: 1.3rem 1.4rem;
}
.service-page .ps-faq-a {
  padding: 0 3.5rem 1.4rem 1.4rem;
}
.service-final-cta {
  padding-top: 0;
  padding-bottom: 6.25rem;
}
.service-page .ps-urgency-band {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 3.5rem;
  background:
    radial-gradient(circle at 82% 0%, rgba(26, 140, 160, 0.42), transparent 18rem),
    linear-gradient(125deg, #0f172a 0%, #102e36 100%);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}
.service-page .ps-urgency-text h3 {
  max-width: 720px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
}
/* ─── STATS STRIP ─────────────────────────────────── */
.ps-stats-section { background: var(--g1); border-top: 1px solid var(--g2); border-bottom: 1px solid var(--g2); padding: 3rem 0; }
.ps-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ps-stat { text-align: center; }
.ps-stat-num { font-family: var(--mono); font-size: 2.4rem; font-weight: 700; color: var(--accent); line-height: 1; }
.ps-stat-label { font-size: 0.82rem; color: #666; margin-top: 0.6rem; line-height: 1.4; }
@media (max-width: 767px) {
  .ps-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── COMPARISON TABLE ─────────────────────────────────── */
.ps-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ps-compare-col { border-radius: 16px; padding: 2rem; border: 1px solid var(--g2); }
.ps-compare-col--bad { background: #fff; }
.ps-compare-col--good { background: #fff7f1; border-color: rgba(26,140,160,0.25); }
.ps-compare-heading { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.6rem; }
.ps-compare-heading i { font-size: 1.1rem; }
.ps-compare-col--bad .ps-compare-heading { color: #999; }
.ps-compare-col--good .ps-compare-heading { color: var(--accent-dark); }
.ps-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.ps-compare-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; line-height: 1.5; }
.ps-compare-col--bad .ps-compare-list li { color: #777; }
.ps-compare-col--good .ps-compare-list li { color: var(--ink); font-weight: 500; }
.ps-compare-list i { flex-shrink: 0; margin-top: 0.2rem; }
.ps-compare-col--bad .ps-compare-list i { color: #c96a5b; }
.ps-compare-col--good .ps-compare-list i { color: var(--accent); }
@media (max-width: 767px) {
  .ps-compare-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ACCORDION ─────────────────────────────────── */
.ps-faq-item { border-bottom: 1px solid var(--g2); }
.ps-faq-item:first-child { border-top: 1px solid var(--g2); }
.ps-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.35rem 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.ps-faq-q i { color: var(--accent); transition: transform 0.2s ease; flex-shrink: 0; }
.ps-faq-q[aria-expanded="true"] i { transform: rotate(45deg); }
.ps-faq-a { padding: 0 0.25rem 1.35rem; font-size: 0.9rem; color: #666; line-height: 1.6; max-width: 90%; }

/* ─── URGENCY CTA BANNER ─────────────────────────────────── */
.ps-urgency-band {
  background: linear-gradient(120deg, var(--ink) 0%, #10323b 100%);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ps-urgency-text h3 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.ps-urgency-text p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; }
.ps-urgency-band .btn-primary { flex-shrink: 0; }

.about-hero { background: #fff; padding: 120px 0 5rem; border-bottom: 1px solid var(--g2); }
.about-hero-meta { background: var(--g1); border: 1px solid var(--g2); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.about-meta-item { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--g2); font-size: 0.875rem; }
.about-meta-item:last-child { padding-bottom: 0; border-bottom: none; }
.about-meta-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g4); }
.about-meta-val { font-weight: 600; color: var(--ink); font-size: 0.875rem; }
.about-section { background: #fff; }
.about-founder-card { background: var(--g1); border: 1px solid var(--g2); border-radius: 16px; padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.about-founder-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.8rem; font-weight: 500; margin-bottom: 0.75rem; }
.about-founder-name { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.about-founder-role { font-size: 0.8rem; font-weight: 400; color: var(--g4); line-height: 1.5; }
.about-founder-location { font-size: 0.78rem; color: var(--g4); display: flex; align-items: center; gap: 0.3rem; margin-top: 0.25rem; }
.about-services-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--g2); border-radius: 12px; overflow: hidden; }
.about-service-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; border-bottom: 1px solid var(--g2); background: #fff; transition: background 0.15s; }
.about-service-item:last-child { border-bottom: none; }
.about-service-item:hover { background: var(--g1); }
.about-service-icon { font-size: 1.1rem; color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.about-service-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.about-service-desc { font-size: 0.85rem; font-weight: 300; color: var(--g4); line-height: 1.65; }
.about-legacy-box { background: var(--g1); border: 1px solid var(--g2); border-radius: 12px; padding: 2rem; }
.about-legacy-box p { font-size: 0.95rem; color: #444; line-height: 1.85; margin: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 4rem 0; }
  .svc-grid-wrap { grid-template-columns: repeat(1, 1fr); }
  .svc-grid-item:nth-child(3) { border-right: 1px solid var(--g2); }
  .svc-grid-item:nth-child(6) { border-right: none; }
  .svc-grid-item:nth-child(4),
  .svc-grid-item:nth-child(5) { border-bottom: 1px solid var(--g2); }
  .proc-wave-canvas { display: none; }
  .proc-steps-mobile { display: block; }
  .process-section .container { padding-bottom: 1rem; }
  .ab-team-grid-wrap .row > div:nth-child(3n) { border-right: 1px solid var(--g2); }
  .ab-team-grid-wrap .row > div:nth-child(2n) { border-right: none; }
  .ab-team-grid-wrap .row > div:nth-last-child(-n+3) { border-bottom: 1px solid var(--g2); }
  .ab-team-grid-wrap .row > div:nth-last-child(-n+2) { border-bottom: none; }
  .service-hero { padding: 7.5rem 0 4.5rem; }
  .service-section { padding: 5rem 0; }
  .service-final-cta { padding-top: 0; padding-bottom: 5rem; }
}
@media (max-width: 786px) {
  .hero-section { min-height: auto; }
  .hero-center { padding: 3rem 0 3.5rem; }
  .hero-h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .ap-head { padding: 1.25rem 1rem; }
  .analyser-rows { padding: 1.25rem 1rem !important; }
  .ap-risk { padding: 1.25rem 1rem; }
  .proc-bg-num { font-size: 3.5rem; }
  :root { --scroll-offset: 64px; }
  .navbar .container {
    gap: 0.75rem;
  }
  .nav-meta {
    gap: 0.5rem;
    margin-left: auto;
  }
  .nav-contact-link {
    font-size: 0.78rem;
  }
  .nav-contact-links .nav-contact-link[href^="mailto:"] { display: none; }
  .btn-nav-cta {
    padding: 0.48rem 1rem;
  }
  .ab-visual { padding: 2rem 1.5rem; }
  .ab-stats { grid-template-columns: 1fr; }
  .ab-team-section,
  .ab-vision-section { padding: 3rem 0; }
  .service-hero {
    padding: 6.75rem 0 2rem;
  }
  .service-hero .ab-visual-full {
    margin-top: 2.75rem !important;
    padding: 1.75rem;
  }
  .service-hero-media {
    margin-top: 0;
  }
  .service-hero-media img {
    aspect-ratio: 3 / 2;
  }
  .service-page .ps-stat {
    min-height: 7rem;
    padding: 1.25rem;
  }
  .service-page .ps-stat:nth-child(2n) { border-right: 0; }
  .service-page .ps-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .service-page .ps-compare-col { padding: 2rem 1.5rem; }
  .service-page .ps-compare-col--bad {
    border-right: 0;
    border-bottom: 1px solid var(--g2);
  }
  .service-page .ps-urgency-band {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1rem; }
  .stats-grid { border-radius: 12px; }
  .ab-team-grid-wrap .row > div { border-right: none !important; }
  .ab-team-grid-wrap .row > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--g2); }
  .ab-team-grid-wrap .row > div:last-child { border-bottom: none; }
  .ab-team-cell { padding: 1.5rem 1.25rem; }
  .service-hero .page-title br,
  .service-section .title-h2 br { display: none; }
  .service-page .ps-stat {
    padding: 1.15rem 0.9rem;
  }
  .service-page .ps-stat-label { font-size: 0.75rem; }
  .service-section .ab-visual-light { padding: 1.6rem; }
  .service-page .ps-faq-q { padding: 1.15rem; }
  .service-page .ps-faq-a { padding: 0 1.15rem 1.25rem; }
}
