/* DEWII Nanny — standalone landing */

:root {
  --bg: #eef6fc;
  --bg-muted: #e3f0fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: rgba(37, 99, 235, 0.12);
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --forest: #1e3a8a;
  --forest-soft: #3b82f6;
  --cream: #f8fafc;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
  --shadow-sm: 0 8px 24px rgba(30, 58, 138, 0.06);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  /* display: block; */
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(720px, 92vw);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(238, 246, 252, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-mark {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--forest);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: transparent;
}

.btn-ghost:hover {
  background: rgba(30, 64, 175, 0.07);
}

.btn-light {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Hero (~20% shorter than full-viewport strip; copy scaled to match) */
.hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: flex;
  align-items: flex-end;
  /* padding: calc(var(--header-h) + 38px) 0 64px; */
  padding: calc(var(--header-h) - 20px) 0 94px;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  margin: 0 0 12px;
  color: #3e5e98;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(255, 255, 255, 0.35);
}

.hero-title {
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #3e5e98;
  margin: 0 0 14px;
  max-width: 20ch;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.85),
    0 2px 12px rgba(255, 255, 255, 0.45);
}

.hero-lead {
  margin: 0 0 22px;
  max-width: 34rem;
  font-size: clamp(0.94rem, 1.85vw, 1.06rem);
  line-height: 1.55;
  color: #3e5e98;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.8),
    0 2px 10px rgba(255, 255, 255, 0.4);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero .btn-lg {
  padding: 11px 22px;
  font-size: 0.94rem;
}

.hero .btn-light {
  color: #3e5e98;
  border-color: rgba(62, 94, 152, 0.35);
}

.hero .btn-light:hover {
  color: #3e5e98;
}

.hero .btn-outline-light {
  color: #3e5e98;
  border-color: #3e5e98;
}

.hero .btn-outline-light:hover {
  background: rgba(62, 94, 152, 0.08);
  color: #3e5e98;
  border-color: #3e5e98;
}

.justify-center {
  justify-content: center;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(62, 94, 152, 0.35);
  font-size: 0.86rem;
  color: #3e5e98;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.75),
    0 2px 8px rgba(255, 255, 255, 0.35);
}

.hero-metrics strong {
  display: block;
  font-size: 1.03rem;
  font-weight: 700;
  color: #3e5e98;
  margin-bottom: 2px;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.75),
    0 2px 8px rgba(255, 255, 255, 0.35);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

.eyebrow-accent {
  color: var(--accent);
}

.eyebrow-on-dark {
  color: rgba(147, 197, 253, 0.98);
}

/* Reveal animation */
.animate-in {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(15px, 12vw, 15px) 0;
}

.bg-muted {
  background: var(--bg-muted);
}

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  max-width: 560px;
}

.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--forest);
}

.section-desc {
  margin: 0;
  color: var(--ink-soft);
}

.section-desc.subtle {
  margin-top: 12px;
  font-size: 0.98rem;
}

.section-cta {
  margin-top: 40px;
  text-align: center;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(30, 58, 138, 0.09);
  color: var(--forest-soft);
  margin-bottom: 16px;
  font-size: 2.1rem;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.prose {
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.prose.highlight {
  color: var(--ink);
}

.split-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Services */
.service-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--forest);
  font-weight: 700;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.service-card-accent {
  background: linear-gradient(145deg, var(--forest) 0%, #172554 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.92);
}

.service-card-accent h3 {
  color: #fff;
}

.service-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

/* Verify panel */
.section-verify {
  padding-bottom: clamp(56px, 10vw, 88px);
}

.verify-panel {
  background: linear-gradient(155deg, #0f2744 0%, var(--forest) 45%, #1d4ed8 100%);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 64px);
  box-shadow: var(--shadow);
}

.verify-head {
  margin-bottom: 28px;
  max-width: 640px;
}

.verify-title {
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
  color: #fff;
}

.verify-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.verify-subhead {
  font-weight: 700;
  margin: 0 0 14px;
}

.verify-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 28px;
}

.verify-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.99rem;
}

.verify-list i {
  color: #93c5fd;
  margin-top: 3px;
  flex-shrink: 0;
}

.verify-tagline {
  margin: 0 0 22px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

@media (max-width: 960px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ============================================================
   OUR 5-STEP PROCESS — new "How it works" design
   ============================================================ */
.process-section {
  --ps-purple: #8e44ad;
  --ps-purple-bg: #f3eaf8;
  --ps-green: #1f8a5b;
  --ps-green-bg: #e8f3ee;
  --ps-blue: #1e4fa5;
  --ps-blue-bg: #e7eef9;
  --ps-orange: #e07b2c;
  --ps-orange-bg: #fdf0e2;
  --ps-pink: #c2185b;
  --ps-pink-bg: #fbe6ee;
}

.process-section .container {
  width: min(1600px, 98vw);
  padding-inline: 16px;
}

.process-title {
  color: #0b2545;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}

.process-title::before,
.process-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #c2185b;
}

.process-title::before {
  right: calc(100% + 16px);
}

.process-title::after {
  left: calc(100% + 16px);
}

.process-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 36px;
  color: var(--ink);
}

.process-subtitle .ps-trust {
  color: #0b2545;
}

.process-subtitle .ps-verify {
  color: #1f8a5b;
  margin: 0 6px;
}

.process-subtitle .ps-peace {
  color: #c2185b;
}

.process-steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  position: relative;
  align-items: stretch;
  width: 100%;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Numbered circle pinned above each card */
.ps-number-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto -30px;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.ps-number-wrap::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px dashed currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

.ps-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ps-color, #8e44ad);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* The card itself — compact height; width comes from full-width grid columns */
.ps-card {
  width: 100%;
  flex: 1 1 auto;
  background: #fff;
  border-radius: 14px;
  padding: 42px 14px 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Soft colored tint at the very top of the card behind the title */
.ps-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 96px;
  background: var(--ps-tint, #f3eaf8);
  opacity: 0.45;
  z-index: 0;
}

.ps-heading {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: currentColor;
  margin: 6px 0 12px;
  line-height: 1.25;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Fixed-height band so wider cards stay the same vertical size (no 4:3 growth) */
.ps-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 160px;
  min-height: 160px;
  max-height: 160px;
  border-radius: 10px;
  background: var(--ps-tint, #f3eaf8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  /* padding: 6px; */
}

.ps-visual i {
  font-size: 2.8rem;
  color: currentColor;
  opacity: 0.85;
}

/* Make any image inside the visual band fit fully without cropping */
.ps-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.ps-icon-circle {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ps-tint, #f3eaf8);
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 10px;
  font-size: 0.95rem;
}

.ps-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Checks list inside step 4 */
.ps-checks {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 12px;
  padding: 10px 10px;
  width: 100%;
  background: var(--ps-tint, #fdf0e2);
  border-radius: 10px;
  text-align: left;
}

.ps-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
  /* padding: 3px 2px; */
}

.ps-checks li > i:first-child {
  color: var(--ps-color, #8e44ad);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.ps-checks .ps-check {
  margin-left: auto;
  color: #1f8a5b;
  font-size: 0.95rem;
}

/* Connector arrow between steps */
.ps-arrow {
  position: absolute;
  top: 55%;
  right: -21px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.75rem;
  z-index: 3;
}

/* Per-step color theming */
.process-step.ps-purple { color: var(--ps-purple); --ps-color: var(--ps-purple); }
.process-step.ps-purple .ps-card,
.process-step.ps-purple .ps-visual,
.process-step.ps-purple .ps-icon-circle,
.process-step.ps-purple .ps-checks { --ps-tint: var(--ps-purple-bg); }

.process-step.ps-green  { color: var(--ps-green);  --ps-color: var(--ps-green); }
.process-step.ps-green  .ps-card,
.process-step.ps-green  .ps-visual,
.process-step.ps-green  .ps-icon-circle,
.process-step.ps-green  .ps-checks { --ps-tint: var(--ps-green-bg); }

.process-step.ps-blue   { color: var(--ps-blue);   --ps-color: var(--ps-blue); }
.process-step.ps-blue   .ps-card,
.process-step.ps-blue   .ps-visual,
.process-step.ps-blue   .ps-icon-circle,
.process-step.ps-blue   .ps-checks { --ps-tint: var(--ps-blue-bg); }

.process-step.ps-orange { color: var(--ps-orange); --ps-color: var(--ps-orange); }
.process-step.ps-orange .ps-card,
.process-step.ps-orange .ps-visual,
.process-step.ps-orange .ps-icon-circle,
.process-step.ps-orange .ps-checks { --ps-tint: var(--ps-orange-bg); }

.process-step.ps-pink   { color: var(--ps-pink);   --ps-color: var(--ps-pink); }
.process-step.ps-pink   .ps-card,
.process-step.ps-pink   .ps-visual,
.process-step.ps-pink   .ps-icon-circle,
.process-step.ps-pink   .ps-checks { --ps-tint: var(--ps-pink-bg); }

/* Trust badges row */
.process-badges {
  list-style: none;
  margin: 0 0 26px;
  padding: 18px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.pb-item:last-child {
  border-right: none;
}

.pb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pb-tint, #f3eaf8);
  color: var(--pb-color, var(--ps-purple));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.pb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.pb-text strong {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pb-color, var(--ps-purple));
  letter-spacing: 0.3px;
}

.pb-text span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.pb-purple { --pb-color: var(--ps-purple); --pb-tint: var(--ps-purple-bg); }
.pb-green  { --pb-color: var(--ps-green);  --pb-tint: var(--ps-green-bg); }
.pb-blue   { --pb-color: var(--ps-blue);   --pb-tint: var(--ps-blue-bg); }
.pb-orange { --pb-color: var(--ps-orange); --pb-tint: var(--ps-orange-bg); }
.pb-pink   { --pb-color: var(--ps-pink);   --pb-tint: var(--ps-pink-bg); }

/* Responsive */
@media (max-width: 1200px) {
  .ps-checks li { font-size: 0.68rem; }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 56px;
  }
  .ps-arrow { display: none; }
  .process-badges {
    grid-template-columns: repeat(3, 1fr);
  }
  .pb-item:nth-child(3) { border-right: none; }
}

@media (max-width: 720px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-item { border-right: none; }
  .process-title::before,
  .process-title::after { display: none; }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-badges {
    grid-template-columns: 1fr;
  }
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.quote-card {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.quote-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.quote-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 500;
}

.quote-card footer {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.trust-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
}

/* Final CTA band */
.cta-final {
  background: linear-gradient(130deg, var(--forest) 0%, #0c1929 50%, #2563eb 100%);
  color: #fff;
  text-align: center;
  padding: clamp(72px, 14vw, 120px) 0;
}

.cta-final-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 14px;
}

.cta-final-desc {
  margin: 0 auto 28px;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.82);
}

.center {
  text-align: center;
}

/* Consult form */
.consult {
  padding-bottom: 120px;
}

.consult-form {
  margin-top: 8px;
  background: var(--surface);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.field-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  /* padding: 14px 16px; */
  padding: 5px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

.field input:user-invalid:not(:placeholder-shown),
.field textarea:user-invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.field-error {
  font-size: 0.8125rem;
  color: #a62929;
  min-height: 1.2em;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 32px 0 140px;
  border-top: 1px solid var(--line);
  background: var(--bg-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  margin: 0;
  font-size: 0.95rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 3px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 14px 40px rgba(30, 58, 138, 0.22);
  transition: transform 0.2s var(--ease), box-shadow 0.25s;
}

.fab-btn:hover {
  transform: translateY(-2px);
}

.fab-consult {
  background: var(--accent);
}

.fab-wa {
  background: #25d366;
}

@media (max-width: 480px) {
  .fab-btn span {
    display: none;
  }
  .fab-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .fab-btn i {
    font-size: 1.35rem;
  }
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 22px;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease);
  z-index: 300;
  box-shadow: var(--shadow);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Connect-with-us panel (scoped: #dewii-nanny-landing only) ---------- */

#dewii-nanny-landing .consult .split {
  align-items: start;
}

#dewii-nanny-landing .nanny-connect-card {
  background: var(--surface);
  padding: clamp(28px, 5vw, 36px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
  overflow: visible;
}

#dewii-nanny-landing .nanny-connect-heading {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}

#dewii-nanny-landing .nanny-connect-intro {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

#dewii-nanny-landing .nanny-connect-or {
  color: var(--ink-soft);
  font-weight: 500;
}

#dewii-nanny-landing .nanny-connect-card .btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
  border-radius: 999px;
  font-weight: 600;
  border-width: 2px;
}

#dewii-nanny-landing .btn-success-outline {
  background: transparent;
  color: #15803d;
  border-color: #22c55e;
}

#dewii-nanny-landing .btn-success-outline:hover {
  background: rgba(34, 197, 94, 0.1);
  color: #14532d;
}

#dewii-nanny-landing .btn-primary-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

#dewii-nanny-landing .btn-primary-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

#dewii-nanny-landing .nanny-connect-card .btn-default {
  background: var(--cream);
  color: var(--forest);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
}

#dewii-nanny-landing .nanny-connect-card .btn-default:hover {
  border-color: var(--forest-soft);
  background: #fff;
}

#dewii-nanny-landing .nanny-connect-reveal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

#dewii-nanny-landing .nanny-connect-grid {
  display: grid;
  gap: 16px;
}

#dewii-nanny-landing .nanny-connect-grid--call {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  #dewii-nanny-landing .nanny-connect-grid--call {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

#dewii-nanny-landing .nanny-connect-grid--schedule {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  #dewii-nanny-landing .nanny-connect-grid--schedule {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#dewii-nanny-landing .nanny-connect-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

#dewii-nanny-landing .nanny-connect-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
}

#dewii-nanny-landing .nanny-connect-label.require::after {
  content: " *";
  color: #a62929;
}

#dewii-nanny-landing .nanny-connect-label--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#dewii-nanny-landing .nanny-connect-input,
#dewii-nanny-landing .nanny-connect-card .form-control {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#dewii-nanny-landing .nanny-connect-input:focus,
#dewii-nanny-landing .nanny-connect-card .form-control:focus {
  outline: none;
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

#dewii-nanny-landing .nanny-connect-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.07);
  font-weight: 600;
  color: var(--accent);
  transition: background 0.2s, border-color 0.2s;
}

#dewii-nanny-landing .nanny-connect-call-cta:hover {
  background: rgba(37, 99, 235, 0.11);
}

#dewii-nanny-landing .nanny-connect-call-cta img {
  flex-shrink: 0;
}

#dewii-nanny-landing .nanny-connect-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

#dewii-nanny-landing .nanny-connect-otp {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

#dewii-nanny-landing .nanny-connect-card .input-group {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

@media (max-width: 540px) {
  #dewii-nanny-landing .nanny-connect-card .input-group {
    flex-wrap: wrap;
  }
}

#dewii-nanny-landing .nanny-connect-card .input-group .form-control {
  flex: 1 1 auto;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 540px) {
  #dewii-nanny-landing .nanny-connect-card .input-group .form-control {
    border-radius: 12px;
  }
}

#dewii-nanny-landing .nanny-connect-card .input-group-btn .btn {
  height: 100%;
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (max-width: 540px) {
  #dewii-nanny-landing .nanny-connect-card .input-group-btn .btn {
    margin-left: 0;
    margin-top: 10px;
    border-radius: 999px;
    width: 100%;
  }
}

#dewii-nanny-landing .split-copy .consult-form {
  margin-top: 0;
}

#dewii-nanny-landing .nanny-connect-card .success_msg .success {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--accent);
}

#dewii-nanny-landing .nanny-connect-card .verify_error {
  margin-top: 8px;
}

#dewii-nanny-landing input#schedule.nanny-schedule-datepicker {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
}

/* jQuery UI datepicker when used on nanny landing (picker is rendered on body) */
body:has(#dewii-nanny-landing) #ui-datepicker-div,
#ui-datepicker-div {
  z-index: 11000 !important;
  font-family: var(--font, system-ui, sans-serif) !important;
  font-size: 0.9rem !important;
  border-radius: var(--radius, 16px);
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 24px 60px rgba(30, 58, 138, 0.18);
  overflow: visible;
}

body:has(#dewii-nanny-landing) .ui-datepicker,
#ui-datepicker-div .ui-datepicker {
  padding: 6px;
}

body:has(#dewii-nanny-landing) .ui-datepicker-header,
#ui-datepicker-div .ui-datepicker-header {
  background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 12px 12px 0 0;
}

body:has(#dewii-nanny-landing) .ui-datepicker-title select,
#ui-datepicker-div .ui-datepicker-title select {
  font-family: inherit;
  font-size: 0.85rem;
  margin: 0 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 2px 4px;
}

body:has(#dewii-nanny-landing) .ui-datepicker-prev,
body:has(#dewii-nanny-landing) .ui-datepicker-next,
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  cursor: pointer;
}

body:has(#dewii-nanny-landing) .ui-datepicker-prev-hover,
body:has(#dewii-nanny-landing) .ui-datepicker-next-hover,
#ui-datepicker-div .ui-datepicker-prev-hover,
#ui-datepicker-div .ui-datepicker-next-hover {
  border: none;
  background: transparent;
  top: 2px;
}

body:has(#dewii-nanny-landing) .ui-datepicker th,
#ui-datepicker-div .ui-datepicker th {
  color: var(--forest, #1e3a8a);
  font-weight: 700;
  font-size: 0.72rem;
}

body:has(#dewii-nanny-landing) .ui-datepicker td a,
#ui-datepicker-div .ui-datepicker td a {
  text-align: center;
  padding: 0.45em 0.35em;
  border-radius: 8px;
}

body:has(#dewii-nanny-landing) .ui-datepicker td .ui-state-active,
#ui-datepicker-div .ui-datepicker td .ui-state-active {
  background: #2563eb !important;
  color: #fff !important;
  border: 1px solid #1d4ed8 !important;
}

body:has(#dewii-nanny-landing) .ui-datepicker td .ui-state-hover,
#ui-datepicker-div .ui-datepicker td .ui-state-hover {
  background: rgba(37, 99, 235, 0.12) !important;
  border-color: transparent !important;
}

body:has(#dewii-nanny-landing) .ui-datepicker-buttonpane,
#ui-datepicker-div .ui-datepicker-buttonpane {
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  margin-top: 4px;
}

/* jquery-confirm: center dialog (BS4 layout + plugin default uses BS3-style offsets) */
body:has(#dewii-nanny-landing) .jconfirm .jconfirm-scrollpane {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}

body:has(#dewii-nanny-landing) .jconfirm .jconfirm-scrollpane > .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

body:has(#dewii-nanny-landing) .jconfirm .jconfirm-scrollpane > .container > .row {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
}

body:has(#dewii-nanny-landing) .jconfirm .jconfirm-box-container {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  flex: 0 1 auto;
  width: 100%;
  max-width: min(420px, 100%) !important;
}

body:has(#dewii-nanny-landing) .jconfirm .jconfirm-box {
  margin-left: auto;
  margin-right: auto;
}

.scroll {
    bottom: 45px;
}

.tawk-button{
  bottom:3px;
}

.header_title .mainsection h1 {
  font-size: 32px;
}

.breadcrumb{
  background-color: #eef6fc !important;
}