/* ============================================================
   EcomFlow dashboard landing
   ============================================================ */

:root {
  --bg: #f4ecdf;
  --panel: rgba(251, 247, 239, 0.68);
  --panel-strong: rgba(255, 252, 246, 0.78);
  --card: rgba(255, 252, 246, 0.66);
  --ink: #1d1c18;
  --muted: #6f756e;
  --line: rgba(149, 130, 101, 0.22);
  --line-soft: rgba(255, 255, 255, 0.68);
  --green: #08765d;
  --green-dark: #035441;
  --mint: #cfeee5;
  --gold: #c99a2e;
  --shadow: 0 24px 80px rgba(47, 37, 22, 0.12);
  --shadow-sm: 0 10px 30px rgba(47, 37, 22, 0.08);
  --glass: blur(24px) saturate(1.35);
  --radius: 18px;
  --radius-sm: 10px;
  --page-max: 1160px;
  --content-max: 1040px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(255,255,255,0.62), transparent 62%),
    radial-gradient(860px 520px at 78% 18%, rgba(221,201,172,0.35), transparent 68%),
    linear-gradient(135deg, #f5eadb 0%, #f9f3e9 45%, #efe4d5 100%);
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", ui-sans-serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(78, 92, 80, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(78, 92, 80, 0.035) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 18px);
  background-size: 48px 48px, 48px 48px, auto;
  opacity: 0.75;
}

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

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(var(--page-max), calc(100vw - 72px));
  min-height: calc(100vh - 56px);
  margin: 30px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.glass-panel,
.side-card,
.mini-card,
.metric-strip {
  background:
    linear-gradient(150deg, rgba(255,255,255,0.72), rgba(255,255,255,0.28)),
    var(--panel);
  border: 1px solid var(--line-soft);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.82),
    inset 0 -1px 0 rgba(8,118,93,0.04);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
}

.main-panel {
  border-radius: 0;
  overflow: visible;
}

.topbar {
  height: 66px;
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr) 206px;
  align-items: center;
  padding: 0 34px;
}

.brand,
.top-actions,
.navlinks {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0;
}

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 30px;
  height: 30px;
}

.navlinks {
  justify-content: center;
  gap: 30px;
  color: #3f443e;
  font-size: 13px;
  font-weight: 650;
}

.top-actions {
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  font-weight: 650;
}

.btn {
  min-height: 42px;
  padding: 0 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.58);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), transparent 42%),
    linear-gradient(135deg, #0a876b, #00634d);
  box-shadow: 0 14px 34px rgba(8,118,93,0.22), inset 0 1px 0 rgba(255,255,255,0.26);
}

.btn-ghost {
  background: rgba(255,255,255,0.46);
  color: #3a3328;
  border-color: rgba(139, 121, 92, 0.24);
}

.btn.full { width: 100%; }

.points-pill {
  color: var(--green);
  font-weight: 900;
}

.hero-board {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 44px 42px;
  background:
    linear-gradient(90deg, rgba(251,247,239,0.98) 0%, rgba(251,247,239,0.84) 37%, rgba(251,247,239,0.22) 60%, rgba(251,247,239,0.03) 100%),
    image-set(
      url("https://static.jwqnd.top/landing-assets/hero-comfort-desktop.webp") type("image/webp"),
      url("https://static.jwqnd.top/landing-assets/hero-comfort-desktop.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  border-bottom: 0;
  box-shadow: 0 24px 80px rgba(47, 37, 22, 0.08);
}

.hero-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 470px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 18px;
  border: 1px solid rgba(8,118,93,0.28);
  color: var(--green);
  background: rgba(255,255,255,0.46);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.hero-copy h1 {
  margin: 24px 0 14px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(50px, 4.2vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy p {
  width: min(100%, 460px);
  margin: 0;
  color: #626961;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.metric-strip {
  width: 680px;
  max-width: calc(100vw - 140px);
  min-height: 70px;
  margin-top: 22px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-radius: 12px;
}

.metric-strip div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(149,130,101,0.20);
}

.metric-strip div:last-child { border-right: 0; }

.metric-strip strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.metric-strip span {
  color: #525a54;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.workflow-area {
  padding: 32px 0 26px;
  overflow: hidden;
}

.section-title {
  margin-bottom: 16px;
  width: min(var(--content-max), calc(100% - 68px));
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.section-title h2,
.module-head h2,
.side-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.section-title p,
.module-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.workflow-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.workflow-row {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-left: max(34px, calc((100% - var(--content-max)) / 2));
  animation: workflowMarquee 34s linear infinite;
  will-change: transform;
}

.workflow-marquee:hover .workflow-row {
  animation-play-state: paused;
}

.mini-card {
  flex: 0 0 224px;
  height: 232px;
  padding: 14px 14px 13px;
  border-radius: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mini-card:hover,
.side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 88px rgba(47,37,22,0.15), inset 0 1px 0 rgba(255,255,255,0.86);
}

.module-card:hover {
  transform: none;
  box-shadow: none;
}

.mini-card .index {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.mini-card .index::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.78);
}

.mini-card h3 {
  margin: 7px 0 10px;
  text-align: center;
  font-size: 15px;
  line-height: 1.35;
}

.mini-card img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 7px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.62);
}

.mini-card p {
  margin: 10px 0 0;
  color: #6b716b;
  font-size: 12px;
  line-height: 1.55;
}

.bottom-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 0;
}

.module-card {
  min-height: 360px;
  border-radius: 0;
  border: 0;
  padding: 46px 34px;
  background: transparent;
  box-shadow: none;
}

.module-card > * {
  width: min(var(--content-max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.module-card + .module-card {
  border: 0;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 22px;
  margin-top: 28px;
  align-items: start;
  justify-content: center;
}

.phone-row figure {
  margin: 0;
  width: min(100%, 220px);
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  border: 0;
  box-shadow:
    inset 0 0 0 4px #161511,
    0 14px 34px rgba(36,23,12,0.18);
}

.phone-row video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: #111;
}

.phone-row figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.analysis-board {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.analysis-card {
  min-height: 190px;
  padding: 4px 8px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.analysis-card strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.45;
}

.analysis-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.analysis-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8,118,93,0.09);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.analysis-core {
  background: transparent;
}

.analysis-grid {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.analysis-grid span {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 7px;
  background: rgba(8,118,93,0.055);
  border: 0;
  color: #5d645f;
  font-size: 13px;
  font-weight: 800;
}

.analysis-grid span::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.75);
}

.analysis-actions {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.analysis-actions small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  max-width: 900px;
}

.price-row > div {
  position: relative;
  min-height: 290px;
  padding: 28px 22px 70px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.price-row .featured {
  background: linear-gradient(180deg, rgba(8,118,93,0.075), rgba(8,118,93,0.025));
  box-shadow: none;
}

.price-row em {
  position: absolute;
  top: -1px;
  right: 16px;
  padding: 3px 12px;
  border-radius: 0 0 5px 5px;
  background: var(--green);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.price-row span {
  display: block;
  color: #747970;
  font-size: 13px;
  font-weight: 800;
}

.price-row strong {
  display: inline-block;
  margin-top: 12px;
  font-size: 34px;
  line-height: 1;
}

.price-row small {
  color: #545b56;
  font-weight: 800;
}

.price-row p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.price-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.price-row li {
  position: relative;
  padding-left: 16px;
  color: #525851;
  font-size: 12px;
  font-weight: 750;
}

.price-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.price-row a {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: rgba(8,118,93,0.08);
  font-weight: 800;
  font-size: 12px;
}

.point-note {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.point-note span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 10px;
  border: 0;
  background: rgba(8,118,93,0.055);
  color: #4f5752;
  font-size: 12px;
  font-weight: 800;
}

.featured a {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
  max-width: 820px;
}

.faq-row details {
  border: 0;
  border-radius: 10px;
  background: rgba(8,118,93,0.045);
  overflow: hidden;
}

.faq-row summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: #525851;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-row summary::-webkit-details-marker {
  display: none;
}

.faq-row summary::after {
  content: "+";
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.faq-row details[open] summary::after {
  content: "-";
}

.faq-row details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

@keyframes workflowMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.side-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
}

.side-card {
  border-radius: 18px;
  padding: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.side-card h2 {
  color: #696e68;
  font-size: 14px;
  margin-bottom: 12px;
}

.mobile-frame {
  padding: 13px;
  border-radius: 16px;
  border: 1px solid rgba(149,130,101,0.18);
  background: rgba(255,255,255,0.42);
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
}

.mobile-top span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-top img {
  width: 18px;
  height: 18px;
}

.mobile-top i,
.mobile-top i::before,
.mobile-top i::after {
  display: block;
  width: 16px;
  height: 2px;
  background: #1e211d;
  border-radius: 2px;
}

.mobile-top i {
  position: relative;
}

.mobile-top i::before,
.mobile-top i::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-top i::before { top: -5px; }
.mobile-top i::after { top: 5px; }

.mobile-frame > img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
}

.mobile-frame h3 {
  margin: 14px 0 7px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: 22px;
  line-height: 1.12;
}

.mobile-frame p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.mobile-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(149,130,101,0.16);
}

.mobile-metrics span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.mobile-metrics strong {
  color: var(--green);
  font-size: 22px;
}

.product-main {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 11px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 10px 0;
}

.thumbs img {
  width: 100%;
  height: 42px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(149,130,101,0.16);
}

.faq-card {
  min-height: 210px;
}

.faq-card button {
  width: 100%;
  height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(149,130,101,0.16);
  border-radius: 7px;
  background: rgba(255,255,255,0.32);
  color: #525851;
  font-size: 12px;
  font-weight: 750;
  text-align: left;
  margin-bottom: 7px;
}

.faq-card button::after {
  content: ">";
  color: #747a73;
}

.faq-card a {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .main-panel,
  .side-card {
    animation: panelIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .side-card:nth-child(2) { animation-delay: 0.08s; }
  .side-card:nth-child(3) { animation-delay: 0.16s; }
  .mini-card,
  .module-card {
    animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mini-card:nth-child(2) { animation-delay: 0.03s; }
  .mini-card:nth-child(3) { animation-delay: 0.06s; }
  .mini-card:nth-child(4) { animation-delay: 0.09s; }
  .mini-card:nth-child(5) { animation-delay: 0.12s; }
  .mini-card:nth-child(6) { animation-delay: 0.15s; }
  .mini-card:nth-child(7) { animation-delay: 0.18s; }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1500px) {
  .shell {
    width: min(var(--page-max), calc(100vw - 56px));
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    padding: 0 28px;
  }

  .navlinks { gap: 18px; }

  .hero-board {
    background:
      linear-gradient(90deg, rgba(251,247,239,0.96) 0%, rgba(251,247,239,0.86) 42%, rgba(251,247,239,0.12) 100%),
      image-set(
        url("https://static.jwqnd.top/landing-assets/hero-comfort-desktop.webp") type("image/webp"),
        url("https://static.jwqnd.top/landing-assets/hero-comfort-desktop.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .metric-strip {
    width: 100%;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .module-card + .module-card {
    border: 0;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100vw - 24px, 560px);
    margin: 12px auto;
  }

  .main-panel,
  .side-card {
    border-radius: 0;
  }

  .topbar {
    height: 78px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    gap: 10px;
    font-size: 17px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,0.62);
    box-shadow: var(--shadow-sm);
  }

  .navlinks,
  .login-link {
    display: none;
  }

  .top-actions::after {
    content: "";
    width: 30px;
    height: 22px;
    margin-left: 12px;
    background:
      linear-gradient(#111 0 0) top/100% 3px no-repeat,
      linear-gradient(#111 0 0) center/100% 3px no-repeat,
      linear-gradient(#111 0 0) bottom/100% 3px no-repeat;
  }

  .top-actions .btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 16px;
  }

  .hero-board {
    min-height: 690px;
    padding: 34px 22px;
    display: flex;
    align-items: flex-end;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(251,247,239,0.74) 0%, rgba(251,247,239,0.82) 32%, rgba(251,247,239,0.96) 58%, rgba(251,247,239,0.99) 100%),
      linear-gradient(90deg, rgba(251,247,239,0.92) 0%, rgba(251,247,239,0.66) 55%, rgba(251,247,239,0.82) 100%),
      image-set(
        url("https://static.jwqnd.top/landing-assets/hero-comfort-mobile.webp") type("image/webp"),
        url("https://static.jwqnd.top/landing-assets/hero-comfort-mobile.jpg") type("image/jpeg")
      ) 58% top / cover no-repeat;
  }

  .hero-copy {
    align-items: center;
    max-width: none;
  }

  .eyebrow {
    margin-top: 8px;
    min-height: 38px;
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: 48px;
    margin: 24px 0 18px;
  }

  .hero-copy p {
    width: auto;
    font-size: 18px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
  }

  .hero-actions .btn {
    min-width: 150px;
    min-height: 64px;
    font-size: 18px;
  }

  .metric-strip {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 38px;
    padding: 18px;
  }

  .metric-strip div {
    min-height: 98px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.34);
  }

  .workflow-area {
    padding: 34px 0 18px;
  }

  .section-title {
    padding: 0 22px;
  }

  .mini-card {
    flex-basis: 280px;
    height: 280px;
    padding: 20px;
  }

  .mini-card h3 {
    text-align: left;
    font-size: 22px;
  }

  .mini-card img {
    height: 118px;
  }

  .mini-card p {
    font-size: 16px;
  }

  .module-card {
    padding: 28px 22px;
  }

  .phone-row,
  .price-row {
    grid-template-columns: 1fr;
  }

  .phone-row {
    justify-items: center;
  }

  .phone-row figure {
    width: min(100%, 260px);
  }

  .analysis-board,
  .analysis-actions {
    grid-template-columns: 1fr;
  }

  .analysis-card {
    min-height: 0;
    padding: 18px;
  }

  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .analysis-actions small {
    text-align: center;
  }

  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .point-note,
  .faq-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 { font-size: 42px; }
  .hero-copy p { font-size: 18px; }
  .hero-actions .btn { min-width: 132px; }
}
