/* =========================================================================
   Estimy — main.css
   Design system: The Precision Architect
   Display: Manrope · Body: Inter
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  /* ── Canvas & surfaces (tonal layering — no hard borders for structure) ── */
  --bg: #f7f9fb; /* surface          — page canvas                */
  --surface: #ffffff; /* surface_container_lowest — cards / widgets    */
  --surface-2: #f2f4f6; /* surface_container_low    — alt sections       */
  --surface-high: #e8eaed; /* surface_container_high   — secondary buttons  */

  /* ── Text ── */
  --ink: #191c1e; /* on_surface  — never pure black                */
  --ink-muted: #44546f; /* on_surface_variant                            */
  --ink-soft: #6b7fa0; /* tertiary / placeholder text                   */

  /* ── Primary signal (used sparingly to maintain calm) ── */
  --accent: #004ac6; /* primary                                       */
  --accent-container: #2563eb; /* primary_container                            */
  --accent-hover: #003a9e; /* primary dark                                  */
  --accent-soft: #dbeafe; /* primary_fixed — tint                          */
  --accent-on: #ffffff; /* on_primary                                    */

  /* ── Secondary warm accent ── */
  --highlight: #d97706; /* kept for status signals, badges               */

  /* ── Borders  (ghost borders — never 100 % opaque strokes) ── */
  --border: rgba(25, 28, 30, 0.12);
  --border-subtle: rgba(25, 28, 30, 0.06);

  /* ── Ambient shadows ── */
  --shadow-xs: 0 1px 2px rgba(25, 28, 30, 0.04);
  --shadow-sm:
    0 2px 6px rgba(25, 28, 30, 0.04), 0 1px 2px rgba(25, 28, 30, 0.04);
  --shadow-md:
    0 8px 24px -8px rgba(25, 28, 30, 0.08),
    0 4px 8px -4px rgba(25, 28, 30, 0.04);
  --shadow-lg:
    0 24px 56px -16px rgba(25, 28, 30, 0.12),
    0 8px 16px -8px rgba(25, 28, 30, 0.06);

  /* ── Radii — md (12 px / 0.75 rem) for all cards ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;

  --container: 1200px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* ── Fonts ── */
  --font-display:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--accent);
  color: var(--accent-on);
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--ink);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
}

/* -------------------------------------------------------------------------
   3. Layout primitives
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 40px);
  padding-right: clamp(16px, 5vw, 40px);
}

.section {
  padding: clamp(64px, 9vw, 80px) 0;
  position: relative;
}
.section--alt {
  background: var(--surface-2);
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

/* -------------------------------------------------------------------------
   4. Typography
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}
.eyebrow--soft {
  background: transparent;
  color: var(--ink-muted);
  padding: 0;
}
.eyebrow--onDark {
  background: rgba(255, 255, 255, 0.08);
  color: #a8c4f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 74, 198, 0.35);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 74, 198, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 74, 198, 0);
  }
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 em,
h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.section__title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 18px;
}
.section__lede {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  max-width: 56ch;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: none;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn--lg {
  padding: 15px 24px;
  font-size: 16px;
  border-radius: 12px;
}
.btn--sm {
  padding: 9px 14px;
  font-size: 14px;
  border-radius: 9px;
}

/* Primary: lithographic gradient fill (135°) */
.btn--primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-container) 100%
  );
  color: var(--accent-on);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn--primary:hover {
  background: linear-gradient(
    135deg,
    var(--accent-hover) 0%,
    var(--accent) 100%
  );
  transform: translateY(-1px);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Secondary: surface_container_high — no border */
.btn--ghost {
  background: var(--surface-high);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition:
    gap 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.link-arrow:hover {
  gap: 10px;
  border-bottom-color: var(--accent);
}

/* -------------------------------------------------------------------------
   6. Header & navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 249, 251, 0.8);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(247, 249, 251, 0.95);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(12px, 2vw, 24px);
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.site-nav {
  display: none;
}
.site-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0px, 0.5vw, 4px);
}
.site-nav__list a {
  display: inline-block;
  padding: 8px clamp(8px, 1vw, 14px);
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 8px;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.site-nav__list a:hover {
  color: var(--ink);
  background: var(--surface-2);
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Keep the language switcher from being squeezed by the nav. */
.lang-switcher {
  flex-shrink: 0;
}

/* Mobile: dock the language switcher next to the hamburger (right edge)
   instead of letting space-between float it into the middle of the bar. */
@media (max-width: 1139px) {
  .lang-switcher {
    margin-left: auto;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 9px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.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(-6.5px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 16px 24px 24px;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mobile-nav__list a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
}
.mobile-nav__list a:hover {
  background: var(--surface-2);
}
.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav__cta .btn {
  width: 100%;
}

@media (min-width: 1140px) {
  .site-nav {
    display: block;
  }
  .site-header__cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(72px, 10vw, 140px);
  overflow: hidden;
}
.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    closest-side,
    rgba(0, 74, 198, 0.12),
    transparent 70%
  );
  filter: blur(40px);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(
    rgba(25, 28, 30, 0.04) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 65%);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5),
    transparent 65%
  );
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 600px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.25rem);
  margin: 22px 0 22px;
  letter-spacing: -0.025em;
}

.hero__lead {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 32px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-muted);
  font-size: 14px;
}
.hero__signals li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 1000px) {
  .hero {
    overflow: clip;
  }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  }
  .hero__visual {
    margin-right: clamp(-64px, -5vw, -24px);
  }
}

/* -------------------------------------------------------------------------
   8. Dashboard mockup
   ------------------------------------------------------------------------- */
.mockup {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(2000px) rotateY(-2deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.mockup:hover {
  transform: perspective(2000px) rotateY(0) rotateX(0);
}

.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup__dot--r {
  background: #e8b7ab;
}
.mockup__dot--y {
  background: #e8d5a1;
}
.mockup__dot--g {
  background: #b7d4c2;
}
.mockup__url {
  margin-left: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 6px;
}

.mockup__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 520px;
}

.mockup__sidebar {
  background: var(--surface-2);
  padding: 18px 14px;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}
.mockup__brandrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 18px;
}
.mockup__brandmark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--accent);
  position: relative;
}
.mockup__brandmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.5px;
  height: 6px;
  background: var(--accent-on);
  transform: translate(-50%, -100%);
  border-radius: 1px;
}
.mockup__brandtext {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.mockup__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mockup__nav li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--ink-muted);
  border-radius: 7px;
  font-weight: 500;
}
.mockup__nav .ico {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--border);
}
.mockup__nav li.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.mockup__nav li.is-active .ico {
  background: var(--accent);
}

.mockup__sidebar-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.mockup__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-on);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup__me {
  font-size: 13px;
  font-weight: 600;
}
.mockup__meSub {
  font-size: 11px;
  color: var(--ink-soft);
}

.mockup__main {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.mockup__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.mockup__breadcrumb {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mockup__h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mockup__livechip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.mockup__live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}

.mockup__statgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup__stat {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.mockup__statLabel {
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.mockup__statValue {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mockup__statValue span {
  color: var(--ink-soft);
  font-weight: 500;
}
.mockup__statTrend {
  font-size: 11px;
  color: var(--accent);
  margin-top: 3px;
  font-weight: 500;
}
.mockup__spark {
  width: 100%;
  height: 22px;
  margin-top: 6px;
}

.mockup__list {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 6px;
  overflow: hidden;
}
.mockup__listHead,
.mockup__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  font-size: 12px;
  align-items: center;
}
.mockup__listHead {
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.mockup__row {
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  font-size: 12.5px;
}
.mockup__row:last-child {
  margin-bottom: 0;
}
.mockup__cellPerson {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.mockup__avatar--a {
  background: #004ac6;
}
.mockup__avatar--b {
  background: #1d5cde;
}
.mockup__avatar--c {
  background: #d97706;
}
.mockup__avatar--d {
  background: #3b6fe8;
}
.mockup__avatar--e {
  background: #6b7fa0;
}
.mockup__avatar {
  width: 22px;
  height: 22px;
  font-size: 9px;
}
.mockup__muted {
  color: var(--ink-muted);
}
.mockup__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.mockup__pill--animating {
  opacity: 0;
  transform: scale(0.88) translateY(-3px);
}
.mockup__pill--in {
  background: var(--accent-soft);
  color: var(--accent);
}
.mockup__pill--break {
  background: #fceddc;
  color: #b86415;
}
.mockup__pill--out {
  background: var(--surface-2);
  color: var(--ink-soft);
}

.mockup__floatcard {
  position: absolute;
  bottom: -22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 220px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.mockup__floatTitle {
  font-size: 14px;
  font-weight: 600;
}
.mockup__floatSub {
  font-size: 12px;
  color: var(--ink-muted);
}

@keyframes row-flash {
  0% {
    background: rgba(0, 74, 198, 0.08);
  }
  60% {
    background: rgba(0, 74, 198, 0.04);
  }
  100% {
    background: transparent;
  }
}
.mockup__row--flash {
  animation: row-flash 1.2s ease-out forwards;
}

@keyframes count-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.4);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.mockup__livechip--pop .mockup__live-count {
  display: inline-block;
  animation: count-pop 0.38s ease forwards;
}

@media (max-width: 720px) {
  .mockup {
    transform: none;
  }
  .mockup__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .mockup__sidebar {
    display: none;
  }
  .mockup__statgrid {
    grid-template-columns: 1fr 1fr;
  }
  .mockup__stat:nth-child(3) {
    grid-column: span 2;
  }
  .mockup__listHead,
  .mockup__row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .mockup__listHead span:nth-child(3),
  .mockup__row span:nth-child(3) {
    display: none;
  }
  .mockup__floatcard {
    left: 16px;
    bottom: -16px;
  }
}

/* -------------------------------------------------------------------------
   9. Compare (problem/solution)
   ------------------------------------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.compare__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.compare__col--before {
  background: var(--surface);
}
.compare__col--after {
  background: linear-gradient(180deg, #ffffff, #f4f7ff);
  border-color: var(--accent-soft);
  box-shadow:
    0 0 0 1px var(--accent-soft),
    var(--shadow-md);
}
.compare__label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.compare__label--good {
  color: var(--accent);
}
.compare__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.45;
}
.compare__col--before li {
  color: var(--ink-muted);
}
.compare__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.compare__divider svg {
  transform: rotate(90deg);
}

@media (min-width: 880px) {
  .compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .compare__divider svg {
    transform: none;
  }
}

/* -------------------------------------------------------------------------
   10. Features grid (asymmetric)
   ------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 0%),
    rgba(0, 74, 198, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease);
}
.feature-card:hover .feature-card__icon {
  transform: rotate(-4deg) scale(1.05);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature-card__desc {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
  }
  .feature-card--wide {
    grid-column: span 2;
  }
}

/* -------------------------------------------------------------------------
   11. Steps
   ------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  counter-reset: step;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.step__desc {
  color: var(--ink-muted);
  font-size: 15.5px;
  margin-bottom: 12px;
}
.step__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

@media (min-width: 880px) {
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 28px;
  }
  .step__num {
    font-size: 44px;
    min-width: 0;
  }
}

/* -------------------------------------------------------------------------
   12. Trust section (dark)
   ------------------------------------------------------------------------- */
.section--trust {
  background: var(--ink);
  color: #c8d4e8;
  overflow: hidden;
  position: relative;
}
.trust__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      800px circle at 80% 20%,
      rgba(0, 74, 198, 0.2),
      transparent 50%
    ),
    radial-gradient(
      600px circle at 10% 90%,
      rgba(37, 99, 235, 0.1),
      transparent 60%
    );
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.trust__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  margin: 18px 0 22px;
}
.trust__title em {
  color: #a8c4f0;
  font-weight: 600;
}
.trust__lede {
  color: #8fa3bf;
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 28px;
}
.section--trust .link-arrow {
  color: #a8c4f0;
}
.section--trust .link-arrow:hover {
  border-bottom-color: #a8c4f0;
}

.principles {
  display: grid;
  gap: 4px;
}
.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.principle:last-child {
  border-bottom: none;
}
.principle__check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 74, 198, 0.35);
  color: #a8c4f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.principle__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.principle__desc {
  color: #8fa3bf;
  font-size: 15px;
  line-height: 1.5;
}

@media (min-width: 980px) {
  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* -------------------------------------------------------------------------
   13. Final CTA
   ------------------------------------------------------------------------- */
.section--cta {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px circle at 100% 0%,
      rgba(0, 74, 198, 0.07),
      transparent 50%
    ),
    radial-gradient(
      600px circle at 0% 100%,
      rgba(37, 99, 235, 0.05),
      transparent 50%
    );
  pointer-events: none;
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-card__visual {
  width: clamp(140px, 20vw, 220px);
  margin: 0 auto;
}
.cta-card__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
.cta-card__title em {
  color: var(--accent);
  font-weight: 600;
}
.cta-card__lede {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  max-width: 56ch;
  margin: 0 0 28px;
}
.cta-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.cta-card__small {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

@media (min-width: 880px) {
  .cta-card {
    grid-template-columns: auto 1fr;
    gap: 56px;
    padding: clamp(48px, 6vw, 80px) clamp(48px, 6vw, 80px);
  }
}

/* -------------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 24px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer__brand {
  max-width: 280px;
}
.brand--footer {
  margin-bottom: 16px;
}
.site-footer__tagline {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.footer-col__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  color: var(--ink-muted);
  font-size: 14.5px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--ink);
}
.footer-col__email {
  display: inline-block;
  color: var(--ink) !important;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}
.footer-col__email:hover {
  border-bottom-color: var(--ink);
}
.footer-col__hours {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 8px 0 0;
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.site-footer__copy {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0;
}
.site-footer__legal {
  display: flex;
  gap: 18px;
}
.site-footer__legal a {
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 0.2s var(--ease);
}
.site-footer__legal a:hover {
  color: var(--ink);
}

@media (min-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr 2.2fr;
    gap: 64px;
  }
  .site-footer__cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* -------------------------------------------------------------------------
   15. Reveal animations
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay {
  transition-delay: 200ms;
}

@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;
  }
  .eyebrow__dot,
  .mockup__live {
    animation: none;
  }
}

/* -------------------------------------------------------------------------
   16. Language switcher
   ------------------------------------------------------------------------- */

/* Custom logo ------------------------------------------------------------- */
.brand--logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.brand--logo .custom-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
}
.brand--footer.brand--logo .custom-logo {
  height: 32px;
}

/* Desktop dropdown -------------------------------------------------------- */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.lang-switcher__btn:hover,
.lang-switcher__btn[aria-expanded="true"] {
  background: var(--surface-2);
  color: var(--ink);
  border-color: transparent;
}

.lang-switcher__flag {
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-switcher__chevron {
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  min-width: 148px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s var(--ease);
  z-index: 50;
}
.lang-switcher__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  transition:
    background 0.15s var(--ease),
    color 0.15s var(--ease);
}
.lang-switcher__option:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.lang-switcher__option--current {
  color: var(--accent);
  font-weight: 600;
}
.lang-switcher__option--current:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

/* Mobile flat row --------------------------------------------------------- */
.mobile-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.mobile-lang__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--surface-2);
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.mobile-lang__item:hover {
  background: var(--surface-high);
  color: var(--ink);
}
.mobile-lang__item.is-current {
  background: var(--accent-soft);
  color: var(--accent);
}
.mobile-lang__item img {
  border-radius: 2px;
  object-fit: cover;
}

/* -------------------------------------------------------------------------
   18. Contact page
   ------------------------------------------------------------------------- */

/* Page layout */
.contact-page__header {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.contact-page__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}
.contact-page__lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 60ch;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

/* Form card */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
}
.contact-card__notice {
  color: var(--ink-muted);
  font-size: 14px;
  padding: 24px 0;
  text-align: center;
}

/* CF7 field layout */
.wpcf7 .cf7-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .wpcf7 .cf7-row {
    grid-template-columns: 1fr 1fr;
  }
}
.wpcf7 .cf7-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.wpcf7 .cf7-row .cf7-field {
  margin-bottom: 0;
}
.wpcf7 .cf7-field--full {
  margin-bottom: 20px;
}

/* Labels */
.cf7-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  display: block;
}

/* CF7 inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--ink);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 74, 198, 0.1);
}
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--ink-soft);
}
.wpcf7 textarea {
  resize: vertical;
  min-height: 130px;
}
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2344546f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Submit button — reuses .btn--primary styles */
.wpcf7 input[type="submit"] {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-container) 100%
  );
  color: var(--accent-on);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* CF7 validation + response */
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-response-output {
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 13.5px;
  border: 1px solid;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: rgba(34, 197, 94, 0.3);
  background: #f0fdf4;
  color: #15803d;
}
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked {
  border-color: rgba(220, 38, 38, 0.25);
  background: #fef2f2;
  color: #dc2626;
}
.wpcf7 .wpcf7-validation-errors {
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--ink-muted);
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Contact info card */
.contact-info-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
}
.contact-info-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-card__item + .contact-info-card__item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.contact-info-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-info-card__value {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.contact-info-card__link {
  font-size: 13.5px;
  color: var(--accent);
  text-decoration: none;
}
.contact-info-card__link:hover {
  text-decoration: underline;
}

/* Alternative paths card */
.contact-alt-card {
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
}
.contact-alt-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-alt-card__body {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}
.contact-alt-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-alt-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
.contact-alt-card__btn--outline {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
}
.contact-alt-card__btn--outline:hover {
  background: var(--surface-2);
}
.contact-alt-card__btn--text {
  background: transparent;
  border: none;
  color: var(--accent);
}
.contact-alt-card__btn--text:hover {
  background: var(--surface-2);
}

/* Trust signal */
.contact-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 74, 198, 0.15);
  border-radius: var(--radius-md);
}
.contact-trust__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-trust__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-trust__body {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   19. Features page
   ------------------------------------------------------------------------- */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.feat-hero {
  text-align: center;
}
.feat-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.feat-hero .eyebrow {
  margin-bottom: 20px;
}
.feat-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3rem);
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.feat-hero__lead {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 32px;
}
.feat-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.feat-hero__signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 13.5px;
}

/* ── Feature tag pill ─────────────────────────────────────────────────────── */
.feat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.feat-tag--blue {
  background: var(--accent-soft);
  color: var(--accent);
}
.feat-tag--amber {
  background: #fef3c7;
  color: #92400e;
}
.feat-tag--green {
  background: #dcfce7;
  color: #166534;
}
.feat-tag--violet {
  background: #ede9fe;
  color: #5b21b6;
}

/* ── Alternating showcase ─────────────────────────────────────────────────── */
.feat-showcase__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .feat-showcase__inner {
    grid-template-columns: 1fr 1fr;
  }
  .feat-showcase--rev .feat-showcase__copy {
    order: 2;
  }
  .feat-showcase--rev .feat-showcase__visual {
    order: 1;
  }
}
.feat-showcase__h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.feat-showcase__body {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 46ch;
}

/* Feature checklist */
.feat-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.feat-checks li svg {
  flex-shrink: 0;
  color: var(--accent);
}
.feat-checks--sm li {
  font-size: 13.5px;
  gap: 8px;
}

/* ── Phone mockup ─────────────────────────────────────────────────────────── */
.feat-phone {
  display: flex;
  justify-content: center;
}
.feat-phone__frame {
  width: 234px;
  background: #0f1114;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.feat-phone__frame:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
.feat-phone__notch {
  width: 68px;
  height: 6px;
  background: #242424;
  border-radius: 3px;
  margin: 0 auto 14px;
}
.feat-phone__screen {
  background: var(--bg);
  border-radius: 30px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 390px;
}
.feat-phone__loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--surface-2);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.feat-phone__greet {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Clock-in button + pulse rings */
.feat-phone__btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin-bottom: 20px;
}
.feat-phone__pulse {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: fp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.feat-phone__pulse--1 {
  width: 96px;
  height: 96px;
}
.feat-phone__pulse--2 {
  width: 124px;
  height: 124px;
  animation-delay: 0.6s;
}
@keyframes fp-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.88);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}
.feat-phone__clockin-btn {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-container) 100%
  );
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 74, 198, 0.45);
  cursor: default;
}

/* Stats below button */
.feat-phone__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 10px 0;
  margin-bottom: 14px;
}
.feat-phone__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.feat-phone__stat-div {
  width: 1px;
  height: 24px;
  background: var(--border);
}
.feat-phone__stat-lbl {
  font-size: 9.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feat-phone__stat-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* Recent entries */
.feat-phone__recent {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat-phone__recent-lbl {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.feat-phone__recent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-muted);
  padding: 5px 8px;
  background: var(--surface-2);
  border-radius: 6px;
}

/* ── Schedule (shift) mockup ──────────────────────────────────────────────── */
.feat-sched-wrap {
  transform: perspective(2000px) rotateY(2deg) rotateX(2deg);
}
.feat-sched-wrap:hover {
  transform: perspective(2000px) rotateY(0) rotateX(0);
}
.feat-sched {
  padding: 16px;
}
.feat-sched__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.feat-sched__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.feat-sched__week-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 999px;
}
.feat-sched__grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feat-sched__days,
.feat-sched__row {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  gap: 4px;
  align-items: center;
}
.feat-sched__name-col {
  display: block;
}
.feat-sched__day {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
}
.feat-sched__employee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink);
  overflow: hidden;
}
.feat-sched__employee span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feat-sched__block {
  border-radius: 4px;
  height: 28px;
  font-size: 9.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-sched__block--on {
  background: var(--accent-soft);
  color: var(--accent);
}
.feat-sched__block--off {
  background: var(--surface-2);
}
.feat-sched__footer {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}
.feat-sched__footer-lbl {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feat-sched__footer-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.feat-sched__footer-stats span {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  text-align: center;
}

/* ── Bento grid ───────────────────────────────────────────────────────────── */
.feat-bento-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.feat-bento-header__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.feat-bento-header__lead {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
}

.feat-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .feat-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .feat-bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .feat-bento__card--wide {
    grid-column: span 2;
  }
  .feat-bento__card--full {
    grid-column: span 3;
  }
}

.feat-bento__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.feat-bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    160px circle at var(--mx) var(--my),
    rgba(0, 74, 198, 0.05),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feat-bento__card:hover::before {
  opacity: 1;
}

.feat-bento__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feat-bento__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-bento__icon--blue {
  background: var(--accent-soft);
  color: var(--accent);
}
.feat-bento__icon--green {
  background: #dcfce7;
  color: #15803d;
}
.feat-bento__icon--amber {
  background: #fef3c7;
  color: #92400e;
}
.feat-bento__icon--violet {
  background: #ede9fe;
  color: #6d28d9;
}
.feat-bento__icon--teal {
  background: #ccfbf1;
  color: #0f766e;
}

.feat-bento__card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.feat-bento__card-body {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Mini attendance table inside wide card */
.feat-bento__mini-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.feat-bento__mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink);
}
.feat-bento__mini-row span:nth-child(2) {
  flex: 1;
}

/* Export chips */
.feat-bento__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.feat-bento__chip {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* QR full-width card inner layout */
.feat-bento__card--full .feat-bento__card-body {
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .feat-bento__card--full {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .feat-bento__qr-copy {
    flex: 1;
  }
  .feat-bento__qr-visual {
    flex-shrink: 0;
  }
}
.feat-bento__qr-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 640px) {
  .feat-bento__qr-visual {
    margin-top: 0;
  }
}
.feat-bento__qr-code {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 100px;
  height: 100px;
}
.feat-bento__qr-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
}

/* ── Stats strip ──────────────────────────────────────────────────────────── */
.feat-stats-strip {
  background: var(--ink);
  padding: clamp(40px, 6vw, 64px) 0;
}
.feat-stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 0px);
  text-align: center;
}
@media (min-width: 720px) {
  .feat-stats-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feat-stats-strip_why__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 0px);
  text-align: center;
}
@media (min-width: 720px) {
  .feat-stats-strip_why__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feat-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.feat-stat__num span {
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.5);
}
.feat-stat__lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ── Reveal delay variant (used in showcases) ─────────────────────────────── */
.feat-showcase__inner .reveal--delay {
  transition-delay: 0.12s;
}

/* -------------------------------------------------------------------------
   20. Principles & About pages
   ------------------------------------------------------------------------- */

/* ── Principles: Dark hero ──────────────────────────────────────────────── */
.princi-hero {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: clamp(72px, 10vw, 128px) 0;
}
.princi-hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #a8c4f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.princi-hero .eyebrow__dot {
  background: #a8c4f0;
  box-shadow: none;
  animation: none;
}
.princi-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.1;
}
.princi-hero__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 36px;
}
.princi-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Ghost button variant on dark background */
.btn--ghost-dark {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ── Principles: Cards grid ─────────────────────────────────────────────── */
.princi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .princi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .princi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.princi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px);
  transition:
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.princi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.princi-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.princi-card__icon--blue {
  background: var(--accent-soft);
  color: var(--accent);
}
.princi-card__icon--amber {
  background: #fef3c7;
  color: #92400e;
}
.princi-card__icon--green {
  background: #dcfce7;
  color: #15803d;
}
.princi-card__icon--violet {
  background: #ede9fe;
  color: #6d28d9;
}
.princi-card__icon--teal {
  background: #ccfbf1;
  color: #0f766e;
}
.princi-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  font-family: var(--font-display);
}
.princi-card__body {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Principles: Never-build strip ─────────────────────────────────────── */
.princi-never {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.princi-never__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 36px;
}
.princi-never__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: left;
}
@media (min-width: 560px) {
  .princi-never__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.princi-never__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.princi-never__x {
  color: #dc2626;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
}
.princi-never__body {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Principles: Manifesto quote ────────────────────────────────────────── */
.princi-manifesto {
  text-align: center;
}
.princi-manifesto__inner {
  max-width: 720px;
  margin: 0 auto;
}
.princi-manifesto__quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 16px;
  font-family: var(--font-display);
}
.princi-manifesto__attr {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ── About: Hero ────────────────────────────────────────────────────────── */
.about-hero {
  text-align: center;
}
.about-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.about-hero .eyebrow {
  margin-bottom: 20px;
}
.about-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3rem);
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.about-hero__lead {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 32px;
}
.about-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── About: Story section ───────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
  }
}
.about-story__h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.about-story__p {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 46ch;
}
.about-story__p:last-child {
  margin-bottom: 0;
}
.about-story__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.about-stat-card__num {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.about-stat-card__lbl {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

/* ── About: Mission + Vision grid ──────────────────────────────────────── */
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .about-mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-mv-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-mv-card--mission {
  background: var(--accent-soft);
  border: 1px solid rgba(0, 74, 198, 0.15);
}
.about-mv-card--vision {
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.about-mv-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-mv-card--mission .about-mv-card__icon {
  background: rgba(0, 74, 198, 0.1);
  color: var(--accent);
}
.about-mv-card--vision .about-mv-card__icon {
  background: var(--surface-high);
  color: var(--ink-muted);
}
.about-mv-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 8px;
}
.about-mv-card__body {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.about-mv-card--mission .about-mv-card__body {
  color: #1e3a7a;
}
.about-mv-card--vision .about-mv-card__body {
  color: var(--ink-muted);
}

/* ── About: Values grid ─────────────────────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) {
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
}
.about-val-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px);
  transition:
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.about-val-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-val-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.about-val-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  font-family: var(--font-display);
}
.about-val-card__body {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── About: EU trust strip ──────────────────────────────────────────────── */
.about-eu-strip {
  background: var(--accent-soft);
  border-top: 1px solid rgba(0, 74, 198, 0.15);
  border-bottom: 1px solid rgba(0, 74, 198, 0.15);
  padding: 40px 0;
}
.about-eu-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .about-eu-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.about-eu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-eu-item__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.about-eu-item__text {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* -------------------------------------------------------------------------
   21. FAQ page
   ------------------------------------------------------------------------- */

/* ── Hero ── */
.faq-hero {
  background: var(--surface-2);
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.faq-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 16px;
  line-height: 1.1;
}
.faq-hero__lead {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.faq-hero__lead a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.faq-hero__lead a:hover {
  text-decoration: underline;
}

/* ── Body wrapper ── */
.faq-body {
  padding: clamp(56px, 9vw, 100px) 0 clamp(64px, 10vw, 120px);
}
.faq-empty {
  color: var(--ink-2);
  font-size: 16px;
  text-align: center;
  padding: 48px 0;
}

/* ── Category group ── */
.faq-group {
  margin-bottom: 56px;
}
.faq-group:last-child {
  margin-bottom: 0;
}
.faq-group__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

/* ── FAQ list ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ── Single FAQ item ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

/* ── Question button ── */
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: clamp(15px, 2vw, 16px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: background 0.15s;
}
.faq-item__q:hover {
  background: var(--surface-2);
}
.faq-item--open .faq-item__q {
  background: var(--surface-2);
  color: var(--accent);
}

/* ── Chevron ── */
.faq-item__chevron {
  flex-shrink: 0;
  color: var(--ink-2);
  transition:
    transform 0.25s ease,
    color 0.15s;
}
.faq-item--open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

/* ── Answer panel ── */
.faq-item__a {
  overflow: hidden;
}
.faq-item__a[hidden] {
  display: none;
}

.faq-item__a-inner {
  padding: 4px 24px 24px;
  background: var(--surface-2);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
}

/* Gutenberg content inside answer */
.faq-item__a-inner p {
  margin: 0 0 12px;
}
.faq-item__a-inner p:last-child {
  margin-bottom: 0;
}
.faq-item__a-inner ul,
.faq-item__a-inner ol {
  padding-left: 20px;
  margin: 0 0 12px;
}
.faq-item__a-inner li {
  margin-bottom: 6px;
}
.faq-item__a-inner strong {
  color: var(--ink);
  font-weight: 600;
}
.faq-item__a-inner a {
  color: var(--accent);
}
.faq-item__a-inner img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 12px;
}
.faq-item__a-inner h3,
.faq-item__a-inner h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 6px;
}

/* ── Wider layout: cap content width ── */
@media (min-width: 900px) {
  .faq-body .container {
    max-width: 780px;
  }
}

/* -------------------------------------------------------------------------
   22. Privacy Policy page
   ------------------------------------------------------------------------- */

/* ── Hero ── */
.priv-hero {
  background: var(--surface-2);
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.priv-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 12px;
  line-height: 1.1;
}
.priv-hero__meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 14px;
  margin-bottom: 20px;
}
.priv-hero__lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--ink-2);
  line-height: 1.7;
}

/* ── Document body ── */
.priv-doc {
  padding: clamp(56px, 9vw, 100px) 0 clamp(64px, 10vw, 120px);
}

/* ── Each section row ── */
.priv-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.priv-section:last-child {
  border-bottom: none;
}
@media (min-width: 720px) {
  .priv-section {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}

/* ── Left: number + heading ── */
.priv-section__label {
  padding-top: 2px;
}
.priv-section__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.priv-section__title {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ── Right: body text ── */
.priv-section__body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 14px;
}
.priv-section__body p:last-child {
  margin-bottom: 0;
}
.priv-section__body strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── Lists ── */
.priv-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.priv-list li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.priv-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--border-strong, #c8c8d0);
}
.priv-list--check li::before {
  content: "✓";
  color: var(--accent);
  font-size: 12px;
  top: 2px;
}

/* ── Contact block inside section 9 ── */
.priv-contact-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 12px;
}
.priv-contact-block p {
  margin: 0 0 6px !important;
}
.priv-contact-block p:last-child {
  margin-bottom: 0 !important;
  color: var(--ink-3, var(--ink-2));
  font-size: 14px !important;
}
.priv-contact-block a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.priv-contact-block a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   16b. Pricing page + teaser
   ------------------------------------------------------------------------- */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.pricing-hero {
  text-align: center;
  padding-bottom: clamp(24px, 4vw, 40px);
}
.pricing-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-hero .eyebrow {
  margin-bottom: 20px;
}
.pricing-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3rem);
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.pricing-hero__title em {
  font-style: normal;
  color: var(--accent);
}
.pricing-hero__lead {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 54ch;
}

/* ── Free tier callout ────────────────────────────────────────────────────── */
.pricing-free-section {
  padding-top: 0;
  padding-bottom: clamp(20px, 3vw, 32px);
}
.pricing-free {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  max-width: 860px;
  margin: 0 auto;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 74, 198, 0.18);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3.5vw, 34px);
}
.pricing-free__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-on);
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}
.pricing-free__body {
  flex: 1;
}
.pricing-free__title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.pricing-free__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}
.pricing-free__cta {
  flex-shrink: 0;
}

/* ── Calculator card ──────────────────────────────────────────────────────── */
.pricing-calc-section {
  padding-top: 0;
}
.pricing-calc {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}

/* Billing toggle */
.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border-radius: 999px;
  margin-bottom: 28px;
}
.pricing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.pricing-toggle__btn.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.pricing-toggle__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.pricing-toggle__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--highlight);
  background: rgba(217, 119, 6, 0.12);
  padding: 2px 7px;
  border-radius: 999px;
}

/* Per-seat price */
.pricing-calc__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-bottom: 6px;
}
.pricing-calc__was {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-right: 4px;
}
.pricing-calc__currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 0.35em;
}
.pricing-calc__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricing-calc__per {
  width: 100%;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.pricing-calc__vat {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Slider */
.pricing-calc__slider {
  margin: 30px 0 24px;
  text-align: left;
}
.pricing-calc__slider-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.pricing-calc__slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-calc__range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: var(--surface-high);
  outline: none;
  cursor: pointer;
}
.pricing-calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.15s var(--ease);
}
.pricing-calc__range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.pricing-calc__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.pricing-calc__range:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.pricing-calc__count {
  min-width: 3.2ch;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 8px;
}
.pricing-calc__free-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
}
.pricing-calc__free-hint svg {
  flex-shrink: 0;
}

/* Team total */
.pricing-calc__result {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.pricing-calc__result.is-free {
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(0, 74, 198, 0.18);
}
.pricing-calc__result.is-free .pricing-calc__total {
  color: var(--accent);
}
.pricing-calc__result-prefix {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.pricing-calc__result-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pricing-calc__result-amount .pricing-calc__currency {
  font-size: 1.3rem;
  margin-top: 0.25em;
}
.pricing-calc__total {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pricing-calc__total-suffix {
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.pricing-calc__billed {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 6px;
}
.pricing-calc__save {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--highlight);
  background: rgba(217, 119, 6, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
}
/* An author `display` overrides the UA [hidden] rule — restore hiding so the
   JS-driven `hidden` attribute actually works on these elements. */
.pricing-calc__billed[hidden],
.pricing-calc__save[hidden] {
  display: none;
}
.pricing-calc__cta {
  width: 100%;
}
.pricing-calc__note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Large team line */
.pricing-big-team {
  text-align: center;
  margin: 22px auto 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}
.pricing-big-team .link-arrow {
  margin-left: 6px;
}

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.pricing-trust-strip {
  padding: clamp(20px, 3vw, 28px) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
}
.pricing-trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.pricing-trust-strip__item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── What's included ──────────────────────────────────────────────────────── */
.pricing-incl__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-incl__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink);
}
.pricing-incl__item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.pricing-incl__more {
  text-align: center;
  margin: clamp(28px, 4vw, 40px) 0 0;
}

/* ── Pricing FAQ ──────────────────────────────────────────────────────────── */
.pricing-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  transition: box-shadow 0.25s var(--ease);
}
.pricing-faq__item[open] {
  box-shadow: var(--shadow-sm);
}
.pricing-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.pricing-faq__q::-webkit-details-marker {
  display: none;
}
.pricing-faq__chevron {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.25s var(--ease);
}
.pricing-faq__item[open] .pricing-faq__chevron {
  transform: rotate(180deg);
}
.pricing-faq__a {
  margin: 0;
  padding: 0 0 18px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 64ch;
}

/* ── Homepage teaser ──────────────────────────────────────────────────────── */
.pricing-teaser__card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 48px);
}
.pricing-teaser__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.pricing-teaser__lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 48ch;
}
.pricing-teaser__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-teaser__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
}
.pricing-teaser__bullets svg {
  flex-shrink: 0;
  color: var(--accent);
}
.pricing-teaser__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: var(--surface-2);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
}
.pricing-teaser__amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pricing-teaser__currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 0.35em;
}
.pricing-teaser__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricing-teaser__per {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.pricing-teaser__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-on);
  background: var(--accent);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.pricing-teaser__free-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .pricing-incl__grid {
    grid-template-columns: 1fr;
  }
  .pricing-teaser__card {
    grid-template-columns: 1fr;
  }
  .pricing-free {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .pricing-free__cta {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------
   16c. How It Works page — timeline
   ------------------------------------------------------------------------- */
.hiw-timeline {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.hiw-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(16px, 3vw, 28px);
  padding-bottom: clamp(32px, 5vw, 56px);
}
.hiw-step:last-child {
  padding-bottom: 0;
}
/* Connecting line between the step numbers */
.hiw-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.hiw-step__num {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-on);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-container) 100%
  );
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.hiw-step__body {
  padding-top: 2px;
}
.hiw-step__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
}
.hiw-step__title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: -0.015em;
  margin: 0;
}
.hiw-step__desc {
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 60ch;
}

/* -------------------------------------------------------------------------
   16d. Why Estimy page
   ------------------------------------------------------------------------- */

/* The case — narrative prose */
.why-case {
  max-width: 760px;
  margin: 0 auto;
}
.why-case__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 22px;
}
.why-case p {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  margin: 0 0 18px;
}
.why-case p:last-child {
  margin-bottom: 0;
}

/* Reasons / audiences grid (3-up) */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonial */
.why-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.why-quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.why-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.why-quote__cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}
.why-quote__name {
  font-weight: 700;
  color: var(--ink);
}
.why-quote__role {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   17. Misc / WP defaults
   ------------------------------------------------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}
