/* ============================================================
   MediCover Life - TouchPrint-inspired layout · Poppins · Prudential red
   ============================================================ */

:root {
  --brand:    #ED1B2E;
  --brand-d:  #C41020;
  --brand-lt: #FDECEE;
  --ink:      #1A1A1A;
  --ink-2:    #2C2C2C;
  --muted:    #5C6570;
  --line:     #E6E8EC;
  --bg:       #F5F6F8;
  --white:    #FFFFFF;
  --warn:     #FFF6E8;
  --font:     "Poppins", "Segoe UI", sans-serif;
  --max:      1140px;
  --topbar-h: 40px;
  --nav-h:    96px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="zh-CN"] body { font-family: "Noto Sans SC", var(--font); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

h1, h2, h3 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.9rem, 4.2vw, 2.85rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; }
p { color: var(--muted); }
strong { color: var(--ink); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Buttons - TouchPrint style rounded */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover { background: var(--brand-d); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline.light { color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline.light:hover { background: #fff; color: var(--ink); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  gap: 0.5rem;
}
.btn-whatsapp .btn-wa-icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.btn-whatsapp:hover { background: #1EBE5A; }
.btn-full { width: 100%; border-radius: 10px; }

/* Top bar */
/* Sticky chrome stays in document flow (Elementor-safe; no hero overlap) */
.mcl-chrome {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
}
/* Logged-in WP admin bar sits above sticky chrome — offset so they don't collide */
body.admin-bar .mcl-chrome {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .mcl-chrome {
    top: 46px;
  }
}
.topbar {
  position: relative;
  z-index: 2;
  height: var(--topbar-h);
  background: var(--brand);
  color: #fff;
  font-size: 0.84rem;
  overflow: visible;
}
.topbar-inner {
  height: 100%;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}
.topbar-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  color: #fff;
}
.topbar-wa:hover { color: #fff; opacity: 0.92; }
.topbar-wa-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}
.topbar-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
.topbar-tagline strong {
  color: #fff;
  font-weight: 700;
  margin-left: 0.45rem;
}
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 4.4rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lang-dropdown-toggle:hover,
.lang-dropdown.is-open .lang-dropdown-toggle {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.lang-dropdown-caret {
  display: block;
  transition: transform 0.18s ease;
}
.lang-dropdown.is-open .lang-dropdown-caret {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.16);
  z-index: 70;
}
.lang-dropdown-menu[hidden] {
  display: none;
}
.lang-dropdown-menu button {
  width: 100%;
  display: block;
  text-align: left;
  padding: 0.45rem 0.7rem;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--ink);
  background: transparent;
}
.lang-dropdown-menu button:hover {
  background: var(--sand, #f5f6f8);
}
.lang-dropdown-menu button.is-active {
  background: rgba(237, 27, 46, 0.1);
  color: var(--brand);
}

/* Header */
.site-header {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  height: var(--nav-h);
  max-height: var(--nav-h);
}
.header-inner {
  height: var(--nav-h);
  min-height: var(--nav-h);
  max-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-block: 0;
  overflow: visible;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  max-height: calc(var(--nav-h) - 12px);
  overflow: hidden;
}
.logo-img,
a.logo img,
.site-header .logo img {
  height: 74px !important;
  max-height: 74px !important;
  width: auto !important;
  max-width: min(360px, 62vw) !important;
  object-fit: contain !important;
  display: block !important;
  image-rendering: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  min-width: 0;
}
.site-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav a.btn {
  padding: 0.75rem 1.15rem;
  font-size: 0.84rem;
}
.site-nav a:hover,
.site-nav a:focus,
.site-nav a:focus-visible {
  color: var(--brand);
  outline: none;
}
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:focus,
.site-nav a.btn-primary:visited {
  color: #fff;
}
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:visited {
  color: #fff;
}
.btn-whatsapp,
.btn-whatsapp:hover,
.btn-whatsapp:focus,
.btn-whatsapp:visited {
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 0;
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:focus-visible,
.nav-toggle:active {
  background: var(--brand-lt);
  border-color: var(--brand);
  color: var(--brand);
  outline: none;
  box-shadow: none;
}
.nav-toggle:hover span,
.nav-toggle:hover span::before,
.nav-toggle:hover span::after,
.nav-toggle:focus span,
.nav-toggle:focus span::before,
.nav-toggle:focus span::after,
.nav-toggle:active span,
.nav-toggle:active span::before,
.nav-toggle:active span::after {
  background: var(--brand);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* Hero - TouchPrint split + vector atmosphere */
.hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(237, 27, 46, 0.08), transparent 38%),
    linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 72%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-pattern.svg");
  background-repeat: no-repeat;
  background-position: 108% -8%;
  background-size: min(620px, 58vw);
  opacity: 0.22;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -18%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background-image: url("../img/bg-pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(18deg);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}
.hero-copy h1 { margin-bottom: 0.9rem; }
.hero-copy .lede {
  font-size: 1.02rem;
  color: var(--ink-2);
  max-width: 36rem;
  margin-bottom: 0.75rem;
}
.hero-copy .sub {
  font-size: 0.95rem;
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.sell-points {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.sell-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.sell-points li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #ED1B2E;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-micro {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: #8A9199 !important;
}

.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.12);
  aspect-ratio: 1 / 1;
  max-height: 520px;
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-agent-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.2rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(20, 20, 20, 0.78));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

/* Section badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 1.85rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
}
.section-head p { margin-top: 0.55rem; }

.section { padding: 4.25rem 0; position: relative; }
.section.bg {
  background-color: var(--bg);
  background-image: url("../img/bg-pattern.svg");
  background-repeat: no-repeat;
  background-position: 110% 20%;
  background-size: min(420px, 48vw);
}
.section.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,246,248,0.88), rgba(245,246,248,0.96));
  pointer-events: none;
}
.section.bg > .container { position: relative; z-index: 1; }
.section.white { background: var(--white); }

/* Services / products */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-tile,
article.service-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, 0.08);
}
.service-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-tile-body {
  padding: 1.2rem 1.25rem 1.35rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.service-tile-body h3 {
  font-size: 1.15rem;
  margin: 0 0 0.25rem !important;
}
.service-tile-body p {
  font-size: 0.92rem;
  margin: 0 !important;
}
.service-tile-body .tags {
  font-size: 0.78rem;
  color: #8A9199;
  margin-bottom: 0.35rem;
}
.service-tile-body .btn { margin-top: auto; }

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.why-card,
article.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.45rem 1.35rem !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box;
}
.why-card .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.85rem !important;
}
.why-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.45rem !important;
  line-height: 1.35;
}
.why-card p {
  font-size: 0.9rem;
  margin: 0 !important;
  line-height: 1.55;
}

/* Existing */
.existing {
  background: var(--bg);
  color: var(--ink);
  padding: 2.75rem 0;
}
.existing h2 {
  color: var(--ink);
  margin: 0 0 0.55rem !important;
}
.existing p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 !important;
}
.existing-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  /* Left pad must clear the red accent — never share this class with .container */
  padding: 1.85rem 1.85rem 1.85rem 1.85rem !important;
  padding-left: 1.85rem !important;
  box-sizing: border-box !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}
.existing-copy {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
}
.existing-inner > div,
.existing-inner .existing-copy {
  flex: 1 1 16rem;
  min-width: 0;
}
.existing-inner .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  align-self: center;
}

/* About / Meet Mike */
#about .section-head .section-badge {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}
.about-subhead {
  margin: 0.55rem 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.about-subhead [data-i18n="about_role_title"] {
  color: var(--brand) !important;
  font-weight: 600;
}
.about-subhead-sep {
  display: none;
}
.about-note:empty {
  display: none !important;
  margin: 0 !important;
}
.about-panel,
.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 1.75rem 2.5rem;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
}
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  aspect-ratio: 4 / 5;
  background: #e8eaee;
  margin: 0;
  box-shadow: none;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
.about-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-lead {
  margin: 0 0 1.15rem !important;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-2) !important;
}
.about-points {
  list-style: none;
  margin: 0 0 1.15rem !important;
  padding: 0 !important;
  display: grid;
  gap: 0.75rem;
  background: transparent;
  border-radius: 0;
  border: 0;
}
.about-points li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-2);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 !important;
}
.about-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ED1B2E;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}
.about-note {
  margin: 0 0 1.25rem !important;
  font-size: 0.9rem !important;
  line-height: 1.55;
  color: var(--muted) !important;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-actions .btn {
  flex: 1 1 calc(50% - 0.4rem);
  min-width: 10rem;
  justify-content: center;
}

/* Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.review-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid #E6E8EC;
  border-radius: 16px;
  padding: 1.45rem 1.35rem 1.3rem;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
  height: 100%;
  max-width: none !important;
}
.review-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #FDECEE !important;
  color: #ED1B2E !important;
  flex-shrink: 0;
}
.review-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: #ED1B2E;
  color: #ED1B2E;
}
.review-card blockquote {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-style: normal !important;
  font-family: inherit !important;
  color: #2C2C2C !important;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 500;
  quotes: none;
}
.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #E6E8EC;
  margin-top: auto;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ED1B2E !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1;
}
.review-meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  text-align: left;
}
.review-meta strong {
  display: block;
  font-size: 0.98rem;
  color: #1A1A1A;
  font-weight: 700;
}
.review-meta span {
  display: block;
  font-size: 0.82rem;
  color: #5C6570;
  line-height: 1.4;
}
.reviews-note {
  margin-top: 1.75rem !important;
  margin-bottom: 0 !important;
  text-align: center;
  font-size: 0.85rem;
  color: #8A9199 !important;
  max-width: 46rem;
  margin-inline: auto;
}

/* Process steps - TouchPrint numbered */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.process-card,
article.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.35rem !important;
  text-align: center;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box;
}
.process-card .step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.35rem !important;
}
.process-card .step-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 0.65rem !important;
}
.process-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.45rem !important;
}
.process-card p {
  font-size: 0.92rem;
  margin: 0 !important;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* Quote */
.quote-section { padding: 4.25rem 0; background: var(--bg); }
.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.quote-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  background: #1a1a1a center/cover no-repeat;
}
.quote-visual-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff;
}
.quote-visual-copy h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.25rem; }
.quote-visual-copy p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.quote-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.55rem;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.05);
}
.quote-shell > .step-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.progress-track {
  height: 4px;
  background: var(--brand-lt);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.6rem 0 1.1rem;
}
.progress-bar {
  height: 100%;
  width: 25%;
  background: var(--brand);
  transition: width 0.35s var(--ease);
}
.quote-step[hidden] { display: none !important; }
.quote-step.is-active { animation: stepIn 0.35s var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.quote-step h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.quote-step .help { font-size: 0.92rem; margin-bottom: 0.95rem; }

.field { margin-bottom: 0.95rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.field-row.birth-fields {
  grid-template-columns: 1fr 1.2fr 0.9fr;
}
.field-row .field { margin-bottom: 0.95rem; }
@media (max-width: 520px) {
  .field-row,
  .field-row.birth-fields { grid-template-columns: 1fr; gap: 0; }
}
.field label {
  display: block;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.field input[type="text"],
.field input[type="number"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  box-sizing: border-box;
  font: inherit;
  line-height: 1.4;
  color: var(--ink);
}
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: auto;
  min-height: 3.1rem;
  padding: 0.7rem 2.15rem 0.7rem 0.9rem;
  line-height: 1.45;
  overflow: visible;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(237, 27, 46, 0.12);
}
.field input.is-invalid,
.field select.is-invalid { border-color: #B42318; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 2px;
}
.choice-grid.is-invalid { border-color: #B42318; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: block;
  text-align: center;
  padding: 0.75rem 0.35rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
}
.choice input:checked + span {
  border-color: var(--brand);
  background: var(--brand-lt);
  color: var(--brand-d);
}
.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.step-error { color: #B42318; font-size: 0.88rem; margin-top: 0.4rem; }
.disclaimer-box {
  margin-top: 0.75rem;
  padding: 0.8rem 0.9rem;
  background: var(--warn);
  border-left: 3px solid #D4A24C;
  font-size: 0.85rem;
  color: var(--muted);
}

/* FAQ */
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--ink);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  margin-top: 0.55rem;
  font-size: 0.94rem;
}

/* Contact */
.contact-band {
  padding: 3.5rem 0 4rem;
  background-color: #F3F4F6;
  background-image: url("../img/bg-pattern.svg");
  background-repeat: no-repeat;
  background-position: -10% 85%;
  background-size: min(360px, 48vw);
  position: relative;
}
.contact-band::before {
  content: none;
}
.contact-band > .container { position: relative; z-index: 1; }
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: 16px;
  /* Extra left pad so copy clears the red accent bar */
  padding: 1.85rem 1.85rem 1.85rem 1.7rem !important;
  box-sizing: border-box !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
}
.contact-copy {
  max-width: 34rem;
  min-width: 0;
  flex: 1 1 18rem;
}
.contact-band .section-badge {
  border-color: rgba(237, 27, 46, 0.28);
  color: var(--brand);
  background: var(--brand-lt);
  margin: 0 0 0.7rem !important;
}
.contact-band h2 {
  color: var(--ink);
  margin: 0 0 0.55rem !important;
}
.contact-band .contact-copy > p:not(.section-badge):not(.contact-meta) {
  color: var(--muted);
  margin: 0 !important;
  line-height: 1.6;
}
.contact-meta {
  margin: 0.85rem 0 0 !important;
  font-size: 0.92rem;
  color: var(--ink-2) !important;
  font-weight: 550;
  line-height: 1.45;
}
.contact-company {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink) !important;
}
.contact-address {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 28rem;
}
.contact-phone {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand) !important;
  margin: 0.9rem 0 0 !important;
  letter-spacing: -0.02em;
}
.contact-phone:hover { color: var(--brand-d) !important; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  flex: 0 0 auto;
  margin: 0 !important;
}

/* Footer - charcoal (keeps clear of brand-red sections above) */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #1A1F26;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.35rem 0 1.5rem;
  border-top: 3px solid var(--brand);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/footer-pattern.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: min(420px, 55vw) auto;
  pointer-events: none;
  opacity: 0.12;
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer .logo-img {
  height: 48px;
  max-width: min(240px, 70vw);
  filter: brightness(0) invert(1);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
  align-items: center;
}
.footer-brand p,
.footer-brand address {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82) !important;
  font-style: normal;
  line-height: 1.4;
}
.footer-company {
  font-weight: 650;
  color: #fff !important;
}
.footer-address {
  max-width: 26rem;
  font-size: 0.78rem !important;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.footer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.82); }
.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 0.7rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72) !important;
}
.footer-credit {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62) !important;
}
.footer-credit a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.88);
}



.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* iPad / tablet: drop topbar tagline so WA + language stay clear */
@media (max-width: 1100px) {
  .topbar-tagline { display: none; }
  .topbar-right { gap: 0.5rem; }
}

@media (max-width: 960px) {
  .hero-grid,
  .service-grid,
  .why-grid,
  .process-row,
  .quote-layout,
  .about-panel,
  .about-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .about-panel,
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    justify-items: stretch;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .about-photo {
    width: min(100%, 200px);
    max-width: 200px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
  .about-copy {
    width: 100%;
  }
  .about-subhead {
    font-size: 0.9rem;
  }
  .about-lead {
    margin-bottom: 1rem !important;
    font-size: 0.94rem;
  }
  .about-points {
    margin: 0 0 1rem !important;
    padding: 0 !important;
  }
  .about-note { margin: 0 0 1.1rem !important; }
  .about-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .about-actions .btn {
    width: 100%;
    flex: none;
    justify-content: center;
  }
  .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .quote-visual { min-height: 240px; }
  .contact-panel {
    padding: 1.45rem 1.25rem 1.45rem 1.35rem !important;
    align-items: stretch;
  }
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    width: 100%;
  }
  .contact-actions .btn {
    width: 100%;
    flex: none;
    justify-content: center;
  }
  :root { --nav-h: 64px; }
  .section,
  .quote-section,
  .contact-band { padding: 2.75rem 0; }
  .section-head { margin-bottom: 1.4rem; }
  .section-badge { margin-bottom: 0.75rem; }
  .section-head h2 {
    margin-top: 0;
    margin-bottom: 0.55rem;
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
  .section-head > p:not(.section-badge) { margin-top: 0.45rem; }
  .hero { padding: 1.5rem 0 2.25rem; }
  .site-header {
    height: auto;
    max-height: none;
    min-height: 0;
  }
  .header-inner {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0.3rem 0;
  }
  .header-right { flex: 0 0 auto; }
  .logo {
    max-height: 60px;
  }
  .logo-img,
  a.logo img,
  .site-header .logo img {
    height: 56px !important;
    max-height: 56px !important;
    max-width: min(280px, 72vw) !important;
  }
  .site-footer .logo-img,
  .site-footer a.logo img {
    height: 48px !important;
    max-height: 48px !important;
    max-width: min(250px, 72vw) !important;
  }
  .nav-toggle {
    display: grid;
    width: 40px;
    height: 40px;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.35rem 1rem 0.85rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav .btn { margin-top: 0.6rem; border-radius: 999px; }
  .topbar-inner { justify-content: space-between; }
  .site-footer {
    padding: 1.25rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  }
  .footer-note { margin-bottom: 0.35rem; }
  .footer-credit { margin-bottom: 0.25rem; }
  .why-grid,
  .process-row,
  .service-grid,
  .reviews-grid { gap: 1rem; }
  article.why-card,
  .why-card { padding: 1.4rem 1.25rem !important; }
  article.process-card,
  .process-card { padding: 1.4rem 1.2rem !important; }
  .existing-inner {
    padding: 1.35rem 1.25rem 1.35rem 1.35rem !important;
    padding-left: 1.35rem !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.95rem;
  }
  .existing-inner > div,
  .existing-inner .existing-copy {
    flex: 0 1 auto;
  }
  .existing-inner .btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
    margin-top: 0;
    white-space: normal;
  }
}

/* Final shield: defeat theme/Elementor article padding resets */
article.why-card,
.why-card {
  padding: 1.5rem 1.4rem !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
}
article.process-card,
.process-card {
  padding: 1.55rem 1.35rem !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
}
article.service-tile,
.service-tile {
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
.service-tile-body { padding: 1.25rem 1.3rem 1.4rem !important; }
.review-card,
figure.review-card {
  padding: 1.5rem 1.4rem 1.35rem !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

