/* =====================================================
   RntLink — Marketing site stylesheet
   Vanilla CSS, mobile-first, premium SaaS feel
   ===================================================== */

:root {
  /* Brand colors */
  --ink: #111827;
  --ink-soft: #1f2937;
  --blue: #2563EB;
  --blue-600: #1d4ed8;
  --coral: #F97363;
  --warm: #F7F5F2;
  --border: #E2E8F0;
  --success: #059669;
  --warning: #D97706;
  --danger: #E11D48;
  --muted: #64748B;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --white: #FFFFFF;

  /* Tints */
  --soft-blue: #eff6ff;
  --soft-coral: #fff1ed;
  --soft-green: #ecfdf5;
  --soft-amber: #fef3c7;

  /* Layout */
  --max: 1200px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(17,24,39,0.04), 0 1px 1px rgba(17,24,39,0.03);
  --shadow: 0 8px 24px rgba(17,24,39,0.06), 0 2px 8px rgba(17,24,39,0.04);
  --shadow-lg: 0 24px 60px rgba(17,24,39,0.10), 0 8px 20px rgba(17,24,39,0.06);
  --shadow-glass: 0 30px 80px rgba(17,24,39,0.18), 0 8px 24px rgba(17,24,39,0.08);

  /* Type */
  --ff: "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--ff);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; }

::selection { background: rgba(37,99,235,0.18); color: var(--ink); }

/* =========== Buttons =========== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, #2f6df0, var(--blue));
  box-shadow: 0 12px 30px rgba(37,99,235,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(37,99,235,0.38), inset 0 1px 0 rgba(255,255,255,0.22);
}
.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.button.secondary:hover { border-color: #cbd5e1; transform: translateY(-1px); }

.button.ghost {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.button.ghost:hover { background: rgba(255,255,255,0.12); }

.button.ghost-dark {
  color: var(--ink);
  background: rgba(255,255,255,0.96);
  border-color: rgba(17,24,39,0.08);
}
.button.ghost-sm {
  min-height: 40px; padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--border);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37,99,235,0.32);
  outline-offset: 3px;
}

/* =========== Header =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 14px rgba(17,24,39,0.04);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
}
.brand-logo-only img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}
.site-header .brand-logo-only img { height: 38px; }
.site-footer .brand-logo-only img { height: 44px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--blue); background: var(--soft-blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-login {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s ease;
}
.header-login:hover { color: var(--blue); }

.header-cta { min-height: 42px; padding: 0 18px; font-size: 0.94rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-only nav extras (hidden on desktop) */
.nav-login-mobile,
.nav-cta-mobile { display: none; }

/* =========== Eyebrow =========== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}
.eyebrow.on-dark {
  background: rgba(37,99,235,0.2);
  color: #93c5fd;
}
.eyebrow.on-dark .dot { background: #93c5fd; box-shadow: 0 0 0 4px rgba(147,197,253,0.22); }

/* =========== Hero =========== */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(37,99,235,0.35), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(249,115,99,0.22), transparent 55%),
    linear-gradient(180deg, #0b1224 0%, #0e1730 40%, #111827 100%);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  will-change: transform;
}
.orb-blue {
  width: 540px; height: 540px;
  background: radial-gradient(circle, #3b82f6, transparent 60%);
  top: -120px; right: -120px;
}
.orb-coral {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #f97363, transparent 60%);
  bottom: -120px; left: -120px;
  opacity: 0.55;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 100px);
  gap: clamp(36px, 6vw, 84px);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.hero-content .eyebrow {
  background: rgba(147,197,253,0.14);
  color: #bfdbfe;
}
.hero-content .eyebrow .dot { background: #bfdbfe; box-shadow: 0 0 0 4px rgba(191,219,254,0.18); }

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.grad-text {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #fda4af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-de-claim {
  margin: 14px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-copy {
  max-width: 540px;
  margin: 16px 0 0;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.hero-module-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
}
.new-module-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(5,150,105,0.28);
  border: 1px solid rgba(110,231,183,0.38);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-bullets svg {
  width: 18px; height: 18px;
  color: #6ee7b7;
  background: rgba(110,231,183,0.14);
  border-radius: 999px;
  padding: 3px;
}

.hero-footnote {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 40px;
}
.hero-footnote p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  max-width: 720px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 480px;
}
.visual-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  will-change: transform;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.86));
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(20px);
  color: var(--ink);
  padding: 22px;
  transform: rotate(-1.2deg);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.dash-title {
  display: flex; align-items: center; gap: 10px;
}
.dash-dot {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  flex-shrink: 0;
}
.dash-title strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}
.dash-title small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-ok { background: var(--soft-green); color: var(--success); }
.badge-warn { background: var(--soft-amber); color: var(--warning); }

.dash-cals {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.cal-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--slate-50);
  border-radius: 12px;
}
.cal-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--c) 14%, white);
  color: var(--c);
  font-weight: 800;
  font-size: 0.85rem;
}
.cal-meta strong { display: block; font-size: 0.86rem; font-weight: 700; }
.cal-meta small { display: block; font-size: 0.75rem; color: var(--muted); }

.dash-mini { padding: 4px 0 0; }
.mini-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.mini-cal .day {
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--slate-100);
  transition:
    background-color 900ms ease,
    border-color 900ms ease,
    opacity 900ms ease;
  will-change: background-color, border-color, opacity;
}
.mini-cal .day.h { background: transparent; border-radius: 0; height: 0; aspect-ratio: auto; padding-top: 4px; }
.mini-cal .day.ok { background: rgba(5,150,105,0.28); }
.mini-cal .day.warn { background: rgba(217,119,6,0.28); }
.mini-cal .day.block { background: rgba(249,115,99,0.35); }
.mini-cal .day.ok,
.mini-cal .day.block,
.mini-cal .day.warn {
  animation-name: rntlink-calendar-state-shift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  transition: background-color 900ms ease, border-color 900ms ease, opacity 900ms ease;
  transform: none;
  box-shadow: none;
}
.mini-cal .day.ok {
  animation-duration: 9.5s;
  animation-delay: -1.7s;
}
.mini-cal .day.block {
  animation-duration: 12.5s;
  animation-delay: -4.3s;
}
.mini-cal .day.warn {
  animation-duration: 10.8s;
  animation-delay: -6.1s;
}
.mini-cal .day.ok:nth-child(9),
.mini-cal .day.block:nth-child(14),
.mini-cal .day.warn:nth-child(17) {
  animation-duration: 11.7s;
  animation-delay: -2.8s;
}
.mini-cal .day.ok:nth-child(10),
.mini-cal .day.block:nth-child(15),
.mini-cal .day.warn:nth-child(18) {
  animation-name: rntlink-calendar-state-shift-alt;
  animation-duration: 14.2s;
  animation-delay: -7.4s;
}
.mini-cal .day.ok:nth-child(25),
.mini-cal .day.block:nth-child(13),
.mini-cal .day.warn:nth-child(19) {
  animation-duration: 8.9s;
  animation-delay: -5.2s;
}
.mini-cal .day.ok:nth-child(26),
.mini-cal .day.ok:nth-child(27) {
  animation-name: rntlink-calendar-state-shift-alt;
}
.mini-cal .day.ok:nth-child(26) {
  animation-duration: 13.4s;
  animation-delay: -9.1s;
}
.mini-cal .day.ok:nth-child(27) {
  animation-duration: 10.2s;
  animation-delay: -3.6s;
}

@keyframes rntlink-calendar-state-shift {
  0% {
    background-color: rgba(5, 150, 105, 0.34);
    border-color: rgba(5, 150, 105, 0.22);
    opacity: 0.9;
  }
  22% {
    background-color: rgba(5, 150, 105, 0.34);
    border-color: rgba(5, 150, 105, 0.22);
    opacity: 0.9;
  }
  34% {
    background-color: rgba(37, 99, 235, 0.32);
    border-color: rgba(37, 99, 235, 0.22);
    opacity: 0.95;
  }
  57% {
    background-color: rgba(37, 99, 235, 0.32);
    border-color: rgba(37, 99, 235, 0.22);
    opacity: 0.95;
  }
  69% {
    background-color: rgba(249, 115, 99, 0.34);
    border-color: rgba(249, 115, 99, 0.24);
    opacity: 0.92;
  }
  88% {
    background-color: rgba(249, 115, 99, 0.34);
    border-color: rgba(249, 115, 99, 0.24);
    opacity: 0.92;
  }
  100% {
    background-color: rgba(5, 150, 105, 0.34);
    border-color: rgba(5, 150, 105, 0.22);
    opacity: 0.9;
  }
}

@keyframes rntlink-calendar-state-shift-alt {
  0% {
    background-color: rgba(37, 99, 235, 0.32);
    border-color: rgba(37, 99, 235, 0.22);
    opacity: 0.94;
  }
  28% {
    background-color: rgba(37, 99, 235, 0.32);
    border-color: rgba(37, 99, 235, 0.22);
    opacity: 0.94;
  }
  42% {
    background-color: rgba(249, 115, 99, 0.34);
    border-color: rgba(249, 115, 99, 0.24);
    opacity: 0.92;
  }
  66% {
    background-color: rgba(249, 115, 99, 0.34);
    border-color: rgba(249, 115, 99, 0.24);
    opacity: 0.92;
  }
  78% {
    background-color: rgba(5, 150, 105, 0.34);
    border-color: rgba(5, 150, 105, 0.22);
    opacity: 0.9;
  }
  100% {
    background-color: rgba(37, 99, 235, 0.32);
    border-color: rgba(37, 99, 235, 0.22);
    opacity: 0.94;
  }
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  font-size: 0.85rem;
  animation: floaty 6s ease-in-out infinite;
}
.float-chip svg { color: var(--blue); flex-shrink: 0; }
.float-chip strong { display: block; font-weight: 800; font-size: 0.86rem; }
.float-chip small { display: block; font-size: 0.74rem; color: var(--muted); font-weight: 600; }

.chip-sync {
  top: -10px; left: -28px;
  animation-delay: 0s;
}
.chip-sync svg {
  animation: rntlink-sync-spin 5s linear infinite;
  transform-origin: center;
}

@keyframes rntlink-sync-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.chip-block {
  bottom: 8%; right: -20px;
  animation-delay: -3s;
}
.chip-block svg { color: var(--coral); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =========== Trust strip =========== */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}
.trust-strip-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.ts-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}
.ts-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* =========== Sections =========== */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section > .section-heading,
.section > .problem-grid,
.section > .solution-grid,
.section > .cleaning-grid,
.section > .feature-grid,
.section > .benefit-grid,
.section > .trust-grid,
.section > .trust-note,
.section > .audience-grid,
.section > .audience-slider,
.section > .steps,
.section > .contact-grid,
.section > .limitations-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-heading.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-heading.center .eyebrow { margin-left: auto; margin-right: auto; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-heading p {
  margin: 18px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}
.section-heading.center p { margin-left: auto; margin-right: auto; }

/* =========== Problem =========== */
.problem { background: var(--warm); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.info-card {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #cbd5e1;
}
.info-card.light { background: var(--white); }

.card-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.card-num.c-blue { background: var(--soft-blue); color: var(--blue); }
.card-num.c-coral { background: var(--soft-coral); color: var(--coral); }
.card-num.c-green { background: var(--soft-green); color: var(--success); }

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========== Solution =========== */
.solution { background: var(--white); }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.check-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--soft-green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center/12px no-repeat;
}

.solution-visual { position: relative; }
.vis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}
.vis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.placeholder-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--slate-100);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-list { display: grid; gap: 10px; margin-bottom: 22px; }
.status-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--slate-50);
  border-radius: 12px;
}
.status-row strong { display: block; font-weight: 700; font-size: 0.95rem; }
.status-row small { display: block; font-size: 0.82rem; color: var(--muted); }
.status-time { font-size: 0.78rem; color: var(--muted); font-weight: 700; }
.status-dot { width: 12px; height: 12px; border-radius: 999px; }
.status-dot.ok { background: var(--success); box-shadow: 0 0 0 4px rgba(5,150,105,0.18); }
.status-dot.warn { background: var(--warning); box-shadow: 0 0 0 4px rgba(217,119,6,0.18); }
.status-dot.danger { background: var(--danger); box-shadow: 0 0 0 4px rgba(225,29,72,0.18); }

.sync-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(249,115,99,0.04));
  border: 1px dashed var(--border);
  border-radius: 14px;
}
.sf-node {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
}
.sf-core { color: var(--blue); border-color: rgba(37,99,235,0.4); }
.sf-out { color: var(--coral); border-color: rgba(249,115,99,0.4); }
.sf-arrow { width: 32px; height: 18px; color: var(--muted); flex-shrink: 0; }

/* =========== Cleaning section =========== */
.cleaning { background: var(--white); }
.cleaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.eyebrow-green {
  background: var(--soft-green);
  color: var(--success);
}
.eyebrow-green .dot { background: var(--success); box-shadow: 0 0 0 4px rgba(5,150,105,0.18); }

.cleaning-cta { margin-top: 28px; }

.cleaning-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}
.cleaning-orb {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.12), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Phone mockup */
.phone-mockup { position: relative; }
.pm-frame {
  width: 252px;
  background: #0f172a;
  border-radius: 38px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.05),
    0 40px 100px rgba(17,24,39,0.32),
    0 16px 40px rgba(17,24,39,0.18);
}
.pm-notch {
  width: 78px;
  height: 20px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
}
.pm-screen {
  background: var(--slate-50);
  border-radius: 28px;
  overflow: hidden;
}
.pm-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.pm-app-title { font-size: 0.86rem; font-weight: 800; color: var(--ink); }
.pm-avatar {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  display: grid; place-items: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
}
.pm-task-list {
  padding: 10px;
  display: grid;
  gap: 8px;
}
.pm-task {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.pm-task.pm-task-active {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 4px 14px rgba(37,99,235,0.1);
}
.pm-task.pm-task-done { opacity: 0.72; }
.pm-task-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}
.pm-task-addr {
  font-size: 0.71rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.pm-task-meta {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.pm-ci, .pm-co {
  font-size: 0.61rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.pm-ci { background: var(--soft-green); color: var(--success); }
.pm-co { background: var(--soft-coral); color: var(--coral); }
.pm-task-actions {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.pm-btn {
  flex: 1;
  padding: 5px 6px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font: inherit;
  font-size: 0.61rem;
  font-weight: 700;
  text-align: center;
  background: var(--white);
  color: var(--ink);
}
.pm-btn-done { background: var(--soft-green); border-color: rgba(5,150,105,0.25); color: var(--success); }
.pm-btn-problem { background: var(--soft-coral); border-color: rgba(249,115,99,0.25); color: var(--coral); }

/* Cleaning floating chip */
.chip-cleaning {
  bottom: 4%; right: -20px;
  animation-delay: -2s;
}
.chip-cleaning svg { color: var(--success); }

/* Cleaning task status badges */
.badge-open { background: var(--soft-amber); color: var(--warning); }
.badge-inprogress { background: var(--soft-blue); color: var(--blue); }
.badge-problem { background: var(--soft-coral); color: var(--coral); }

/* =========== How it works =========== */
.how { background: var(--warm); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #4f8af4);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(37,99,235,0.28);
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========== Features =========== */
.features { background: var(--white); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,0.28);
}
.feat-icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 12%, white);
}
.feat-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* =========== For whom =========== */
.use-cases { background: var(--warm); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.aud-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.aud-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.aud-visual {
  position: relative;
  height: 140px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08), rgba(249,115,99,0.06)),
    radial-gradient(circle at 20% 30%, rgba(37,99,235,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(249,115,99,0.16), transparent 40%),
    var(--slate-50);
  display: grid;
  place-items: center;
}
.aud-visual .placeholder-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}

/* Audience illustrations (CSS only) */
.illu-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 80px; height: 70px;
}
.illu-room span {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 6px;
}
.illu-room span:first-child { grid-row: span 2; }

.illu-serviced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 88px; height: 80px;
}
.illu-serviced span {
  background: var(--white);
  border: 2px solid var(--coral);
  border-radius: 6px;
}

.illu-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 80px; height: 70px;
}
.illu-small span {
  background: var(--white);
  border: 2px solid var(--success);
  border-radius: 8px;
}

.illu-hotel {
  display: grid;
  grid-template-columns: repeat(5, 12px);
  gap: 4px;
  align-items: end;
}
.illu-hotel span {
  width: 12px;
  background: var(--white);
  border: 2px solid var(--warning);
  border-radius: 3px 3px 0 0;
}
.illu-hotel span:nth-child(1) { height: 50px; }
.illu-hotel span:nth-child(2) { height: 64px; }
.illu-hotel span:nth-child(3) { height: 72px; }
.illu-hotel span:nth-child(4) { height: 58px; }
.illu-hotel span:nth-child(5) { height: 44px; }

.illu-pm {
  display: grid;
  grid-template-columns: repeat(4, 14px);
  gap: 4px;
  align-items: end;
}
.illu-pm span {
  width: 14px;
  background: var(--white);
  border: 2px solid var(--muted);
  border-radius: 3px 3px 0 0;
}
.illu-pm span:nth-child(1) { height: 44px; }
.illu-pm span:nth-child(2) { height: 62px; }
.illu-pm span:nth-child(3) { height: 52px; }
.illu-pm span:nth-child(4) { height: 36px; }

.illu-cleaning {
  display: grid;
  grid-template-columns: repeat(3, 14px);
  gap: 5px;
  align-items: end;
}
.illu-cleaning span {
  width: 14px;
  background: var(--white);
  border: 2px solid var(--success);
  border-radius: 3px 3px 0 0;
}
.illu-cleaning span:nth-child(1) { height: 46px; }
.illu-cleaning span:nth-child(2) { height: 62px; }
.illu-cleaning span:nth-child(3) { height: 38px; }

.illu-private {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.illu-private span:first-child {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 22px solid rgba(249,115,99,0.55);
}
.illu-private span:last-child {
  width: 52px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--coral);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.aud-card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.aud-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Marquee slider */
.audience-slider {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.aud-slider-inner { overflow: hidden; }
.aud-slider-track {
  display: flex;
  gap: 18px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.aud-slider-track span {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--slate-50);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========== Benefits =========== */
.benefits { background: var(--white); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--white), var(--slate-50));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* =========== Trust =========== */
.trust { background: var(--warm); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.trust-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-note svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.trust-note p { margin: 0; font-size: 0.94rem; }

/* =========== Limitations =========== */
.limitations {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(249,115,99,0.14), transparent 60%),
    var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.limitations::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.limitations-inner { position: relative; z-index: 1; }
.limitations .section-heading h2 { color: var(--white); }
.limitations .section-heading p { color: rgba(255,255,255,0.7); }

.limits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.limit-card {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease;
}
.limit-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.limit-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.limit-card p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.94rem;
}

.contact-cleaning-hint {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: var(--soft-green);
  border-left: 3px solid var(--success);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

/* =========== Contact =========== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.contact-card:not(.static):hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.cc-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--soft-blue);
  color: var(--blue);
}
.cc-icon-whatsapp {
  background: rgba(5,150,105,0.1);
  color: var(--success);
}
.cc-icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; font-weight: 800; font-size: 0.92rem; }
.contact-card span { display: block; font-size: 0.88rem; color: var(--muted); }
.contact-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-form {
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.form-sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label,
.form-field {
  display: grid;
  gap: 6px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.form-field { margin-bottom: 14px; }
.form-field label { margin-bottom: 0; }
.contact-form label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.14);
}
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
  margin-top: 4px;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; }

.form-submit { width: 100%; margin-top: 4px; }
.form-note {
  margin: 12px 0 0;
  font-size: 0.86rem;
  color: var(--success);
  font-weight: 700;
  min-height: 1em;
}
.form-note.is-error { color: var(--danger); }
.form-note.is-success { color: var(--success); }

/* =========== Final CTA =========== */
.cta-final {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(37,99,235,0.25), transparent 60%),
    linear-gradient(180deg, #0e1730, #111827);
  color: var(--white);
  padding: clamp(64px, 8vw, 100px) 16px;
  text-align: center;
}
.cta-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}
.cta-final h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-final p {
  margin: 16px 0 28px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========== FAQ =========== */
.faq-section {
  background:
    radial-gradient(640px 320px at 8% 0%, rgba(37,99,235,0.1), transparent 62%),
    var(--slate-50);
}
.faq-list {
  width: min(860px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--soft-blue);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform .22s ease;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0deg); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0;
  transition: max-height .28s ease, opacity .22s ease, padding-bottom .28s ease;
}
.faq-panel.is-open {
  max-height: 260px;
  padding-bottom: 18px;
  opacity: 1;
}
.faq-panel p {
  margin: 0;
  max-width: 760px;
}

/* =========== Footer =========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 72px) 0 24px;
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand {
  color: var(--white);
  margin-bottom: 14px;
  background-color: var(--white);
}
.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-cols a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-cols a:hover { color: var(--white); }
.footer-link-button {
  display: block;
  width: fit-content;
  margin: 0;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease;
}
.footer-link-button:hover { color: var(--white); }

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin: 0; }
.footer-note { max-width: 460px; }

/* =========== Cookie banner =========== */
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 60;
  max-width: 560px;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: cookieIn .35s ease-out;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: grid;
  gap: 14px;
  padding: 20px 22px;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-actions .button {
  min-height: 42px;
  padding: 0 16px;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========== Legal pages =========== */
.legal-page { background: var(--white); }
.legal-main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 7vw, 100px);
}
.legal-main h1 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.legal-main > p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 28px;
}
.legal-card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li {
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.legal-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-card code {
  padding: 2px 6px;
  background: var(--slate-100);
  border-radius: 6px;
  font-size: 0.88em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.notice-box {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: var(--soft-amber);
  border: 1px solid rgba(217,119,6,0.32);
  border-radius: 12px;
  color: #92400e;
  font-weight: 600;
  font-size: 0.92rem;
}

/* =========== Nav Dropdown =========== */
.nav-has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown-trigger:hover,
.nav-has-dropdown:hover .nav-dropdown-trigger,
.nav-has-dropdown.is-open .nav-dropdown-trigger {
  color: var(--blue);
  background: var(--soft-blue);
}
.nav-dropdown-caret {
  flex-shrink: 0;
  transition: transform .2s ease;
}
.nav-has-dropdown:hover .nav-dropdown-caret,
.nav-has-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-has-dropdown:hover .nav-dropdown-menu,
.nav-has-dropdown:focus-within .nav-dropdown-menu,
.nav-has-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-menu a:hover { background: var(--soft-blue); color: var(--blue); }

.nav-product-mobile { display: none; }

/* =========== Module Teasers (Homepage) =========== */
.modules-section { background: var(--warm); }
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.module-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,0.28);
}
.module-card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  flex-shrink: 0;
}
.module-card-icon svg { width: 22px; height: 22px; }
.module-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}
.module-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}
.module-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
}
.module-card-link svg { width: 13px; height: 13px; }

/* =========== Subpage Hero =========== */
.subpage-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(37,99,235,0.35), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(249,115,99,0.16), transparent 55%),
    linear-gradient(180deg, #0b1224 0%, #0e1730 40%, #111827 100%);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.4;
}
.subpage-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  max-width: 800px;
}
.subpage-hero .eyebrow {
  background: rgba(147,197,253,0.14);
  color: #bfdbfe;
}
.subpage-hero .eyebrow .dot {
  background: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(191,219,254,0.18);
}
.subpage-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.subpage-hero .hero-lead {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.6;
}
.subpage-hero .hero-actions { margin-top: 28px; }

/* =========== Product Sections =========== */
.product-problem { background: var(--warm); }
.product-features { background: var(--white); }
.product-for-whom { background: var(--warm); }

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

.product-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.whom-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whom-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.whom-icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
}
.whom-icon svg { width: 22px; height: 22px; }
.whom-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.whom-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* =========== Product CTA =========== */
.product-cta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(37,99,235,0.22), transparent 60%),
    linear-gradient(180deg, #0e1730, #111827);
  color: var(--white);
  padding: clamp(56px, 7vw, 88px) 16px;
  text-align: center;
}
.product-cta-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}
.product-cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.product-cta p {
  margin: 16px 0 28px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* =========== Pricing =========== */
.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  background: rgba(5,150,105,0.2);
  border: 1px solid rgba(110,231,183,0.3);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #6ee7b7;
  letter-spacing: 0.02em;
}
.pricing-hero-badge svg { width: 16px; height: 16px; }

.pricing-pilot {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}
.pilot-card {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.pilot-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pilot-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
}
.pilot-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
}
.pilot-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--soft-green);
  border: 1px solid rgba(5,150,105,0.22);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.pilot-item svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

.pricing-grid-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.pricing-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pricing-card.featured {
  background: linear-gradient(180deg, #0e1730, #1a2640);
  border-color: rgba(37,99,235,0.5);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(37,99,235,0.28);
}
.pricing-card.featured:hover { transform: translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--blue), #4f8af4);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-tier {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.55); }
.pricing-price {
  margin: 0 0 4px;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price em {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  opacity: 0.6;
}
.pricing-units {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}
.pricing-card.featured .pricing-units { color: rgba(255,255,255,0.55); }
.pricing-divider {
  margin: 0 0 18px;
  border: 0;
  border-top: 1px solid var(--border);
}
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.12); }
.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.82); }
.pricing-features svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .pricing-features svg { color: #6ee7b7; }
.pricing-cta { width: 100%; }
.pricing-cta.secondary-dark {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.pricing-cta.secondary-dark:hover { background: rgba(255,255,255,0.18); }

.pricing-note-section { background: var(--warm); }
.pricing-note-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  color: var(--ink-soft);
  text-align: center;
}
.pricing-note-box p { margin: 0; font-size: 0.96rem; line-height: 1.65; }
.pricing-note-box strong { color: var(--ink); }

/* =========== Subpage Hero with Visual (M1a) =========== */
.subpage-hero-inner.has-visual {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--max); /* overrides the 800px cap from base class */
}

.subpage-hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 300px;
}

.sh-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}
.sh-visual-wrap .glass-card {
  transform: rotate(-0.8deg);
}

/* Chip anchor helpers within .sh-visual-wrap */
.sh-chip-tl { top: -14px; left: -16px; bottom: auto; right: auto; }
.sh-chip-tr { top: -14px; right: -16px; bottom: auto; left: auto; }
.sh-chip-bl { bottom: 4%; left: -16px; top: auto; right: auto; }
.sh-chip-br { bottom: 4%; right: -16px; top: auto; left: auto; }

/* Mini pricing rows (pricing page hero visual) */
.sh-pricing-rows { display: grid; gap: 6px; }
.sh-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--slate-50);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.sh-pricing-row.featured {
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(249,115,99,0.05));
  border: 1px solid rgba(37,99,235,0.22);
  color: var(--ink);
}
.sh-pricing-price {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* =========== Related Modules Strip (M1a) =========== */
.product-related { background: var(--white); }

/* =========== Product FAQ (M1a) =========== */
.product-faq {
  background:
    radial-gradient(640px 320px at 8% 0%, rgba(37,99,235,0.08), transparent 62%),
    var(--slate-50);
}

/* =========== Reveal animation =========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.no-scroll-effects .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =========== Responsive =========== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 0 auto; min-height: 420px; }
  .visual-stack { margin-left: 0; }
  .solution-grid,
  .cleaning-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .problem-grid,
  .feature-grid,
  .benefit-grid,
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cleaning-visual-wrap { max-width: 360px; margin: 0 auto; }
  .chip-cleaning { right: -8px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
  }
  .header-login { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-block; }

  .nav-login-mobile {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .nav-cta-mobile {
    display: flex;
    margin-top: 4px;
    border-radius: 10px;
    justify-content: center;
  }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-inner { padding: 60px 0 48px; }
  .hero-visual { min-height: auto; }
  .glass-card { transform: rotate(-0.6deg); padding: 18px; }
  .float-chip { font-size: 0.78rem; padding: 8px 12px; }
  .chip-sync { top: -6px; left: 8px; }
  .chip-block { bottom: -10px; right: 8px; }

  .hero-bullets { flex-direction: column; gap: 10px; }

  .hero-actions .button,
  .cta-actions .button { width: 100%; }

  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .problem-grid,
  .feature-grid,
  .benefit-grid,
  .audience-grid,
  .trust-grid,
  .limits-grid,
  .footer-cols { grid-template-columns: 1fr; }
  .chip-cleaning { display: none; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sync-flow { flex-direction: column; }
  .sf-arrow { transform: rotate(90deg); }

  .cookie-banner { inset: auto 12px 12px 12px; max-width: none; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .button { flex: 1 1 100%; }

  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .site-header .brand-logo-only img { height: 34px; }
  .site-footer .brand-logo-only img { height: 38px; }
}

/* Responsive: subpage hero visual */
@media (max-width: 960px) {
  .subpage-hero-inner.has-visual {
    grid-template-columns: 1fr;
  }
  .subpage-hero-visual { display: none; }
}

/* Responsive additions for new components */
@media (max-width: 1080px) {
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .product-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-whom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-has-dropdown { display: none; }
  .nav-product-mobile {
    display: block;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 4px;
  }
  .nav-product-mobile-label {
    display: block;
    padding: 6px 14px 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-product-mobile a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
  }
  .nav-product-mobile a:hover { color: var(--blue); background: var(--soft-blue); }

  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid,
  .product-feature-grid,
  .product-whom-grid { grid-template-columns: 1fr; }
  .subpage-hero { padding: 52px 0 40px; }
}

@media (max-width: 480px) {
  .module-grid { grid-template-columns: 1fr; }
}

/* =========== Reduced motion =========== */
@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 !important; transform: none !important; }
  .orb, .float-chip, .aud-slider-track, .cleaning-orb { animation: none !important; }
  .chip-sync svg,
  .mini-cal .day.ok,
  .mini-cal .day.block,
  .mini-cal .day.warn {
    animation: none !important;
    transition: none !important;
  }
  .faq-icon::before,
  .faq-icon::after,
  .faq-panel {
    transition: none !important;
  }
  .visual-stack { transform: none !important; }
}
