/* ============================================
   太原摩妃到家 — 居家健康养生
   主题：暖白·墨绿·玫瑰金
   ============================================ */

:root {
  --c-bg: #faf6ee;
  --c-bg-soft: #f3ecdf;
  --c-ink: #1a2421;
  --c-ink-soft: #5a5a52;
  --c-line: #e5ddc9;
  --c-green: #1f3a2e;
  --c-green-deep: #142621;
  --c-green-soft: #2d5040;
  --c-gold: #c9a96a;
  --c-gold-soft: #d6bc83;
  --c-cream: #f0e6cf;
  --c-white: #ffffff;
  --shadow-1: 0 4px 14px rgba(31, 58, 46, 0.06);
  --shadow-2: 0 14px 40px rgba(31, 58, 46, 0.10);
  --shadow-3: 0 24px 60px rgba(31, 58, 46, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Serif SC', 'Cormorant Garamond', 'PingFang SC', 'Microsoft Yahei', serif;
  font-weight: 400;
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============= 按钮 ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--c-green);
  color: var(--c-cream);
  box-shadow: 0 10px 24px rgba(31, 58, 46, .25);
}
.btn-primary:hover {
  background: var(--c-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 58, 46, .35);
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}
.btn-block { width: 100%; justify-content: center; }

/* ============= 顶部导航 ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 238, .78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 246, 238, .95);
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-1);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--c-green);
  color: var(--c-gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  border-radius: 50%;
  letter-spacing: 0;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--c-gold-soft);
  border-radius: 50%;
  opacity: .55;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
}
.brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
}
.menu {
  display: flex;
  gap: 32px;
}
.menu a {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  position: relative;
  transition: color .3s var(--ease);
}
.menu a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: all .35s var(--ease);
  transform: translateX(-50%);
}
.menu a:hover { color: var(--c-green); }
.menu a:hover::after { width: 22px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-green);
  color: var(--c-cream);
  border-radius: 999px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--c-green-deep); transform: translateY(-1px); }

.hamburger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  position: absolute;
  left: 7px;
  transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg); top: 17px; }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg); top: 17px; }

/* ============= 首屏 ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 28px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 106, .25) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(31, 58, 46, .55) 0%, transparent 60%),
    linear-gradient(135deg, #f4ebd4 0%, #faf6ee 40%, #f0e6cf 100%);
  z-index: -2;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(31, 58, 46, 0.05) 0, transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(201, 169, 106, .12) 0, transparent 30%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><defs><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.15 0 0 0 0 0.12 0 0 0 0.04 0'/></filter></defs><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.15;
  margin: 0 0 30px;
  letter-spacing: 0.02em;
}
.hero-title .line-1,
.hero-title .line-2 { display: block; }
.hero-title .accent {
  color: var(--c-green);
  position: relative;
  font-style: italic;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 1px;
  background: var(--c-gold);
  opacity: .55;
}
.hero-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  max-width: 620px;
  margin: 0 0 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.meta-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--c-green);
  font-weight: 600;
}
.meta-item span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: var(--c-ink-soft);
  letter-spacing: 0.1em;
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--c-line);
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--c-ink-soft);
  border-radius: 14px;
  opacity: .55;
}
.scroll-down span {
  display: block;
  width: 3px; height: 8px;
  background: var(--c-ink-soft);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ============= 通用 Section ============= */
.section {
  padding: 110px 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.3;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}
.section-title small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.5em;
  font-style: italic;
  color: var(--c-green);
  margin-top: 6px;
  letter-spacing: 0.08em;
}
.section-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.9;
}

/* ============= 服务卡片 ============= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--c-white);
  padding: 42px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  transition: all .45s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--c-bg-soft);
  color: var(--c-green);
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 600;
  border-radius: 14px;
  margin-bottom: 24px;
  transition: all .35s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--c-green);
  color: var(--c-gold);
}
.service-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}
.service-card p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.85;
  margin: 0 0 18px;
}
.service-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-gold);
  text-transform: uppercase;
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
  width: 100%;
}

/* ============= 为何选择 ============= */
.why {
  background: var(--c-green);
  color: var(--c-cream);
}
.why .kicker { color: var(--c-gold-soft); }
.why .section-title { color: var(--c-cream); }
.why .section-title small { color: var(--c-gold-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(8px);
  transition: all .4s var(--ease);
}
.why-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--c-gold);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.why-card p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(240, 230, 207, .75);
  margin: 0;
}

/* ============= 服务流程 ============= */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  border-top: 1px dashed var(--c-line);
  z-index: 0;
}
.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.flow-icon {
  width: 60px; height: 60px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-green);
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
.flow-step h4 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}
.flow-step p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-ink-soft);
  margin: 0;
}

/* ============= 关于我们 ============= */
.about {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
}
.about-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text .section-title { text-align: left; }
.about-text p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: var(--c-ink-soft);
  margin: 0 0 16px;
  line-height: 1.95;
}
.about-text strong {
  color: var(--c-green);
  font-weight: 500;
}
.about-list {
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--c-white);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-list li {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: var(--c-ink-soft);
  padding: 6px 0;
}
.about-list li span {
  color: var(--c-gold);
  margin-right: 8px;
  font-weight: 700;
}
.about-card-inner {
  background: var(--c-green);
  color: var(--c-cream);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  background-image: radial-gradient(ellipse at top right, rgba(201, 169, 106, .2), transparent 60%);
}
.about-card-inner h3 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
}
.about-card-inner > p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: rgba(240, 230, 207, .75);
  margin: 0 0 26px;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  gap: 14px;
}
.contact-row .label {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  color: rgba(240, 230, 207, .6);
  letter-spacing: 0.05em;
}
.contact-row .value {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  color: var(--c-cream);
  text-align: right;
}
.about-card-inner .btn {
  margin-top: 28px;
  background: var(--c-gold);
  color: var(--c-green-deep);
  font-weight: 600;
}
.about-card-inner .btn:hover { background: var(--c-gold-soft); }

/* ============= 联系 ============= */
.contact {
  background: var(--c-bg-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: var(--c-white);
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form span {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  color: var(--c-ink-soft);
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  color: var(--c-ink);
  resize: vertical;
  transition: all .25s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--c-green);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(31, 58, 46, .08);
}
.contact-form .form-tip {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: var(--c-ink-soft);
  text-align: center;
  margin: 4px 0 0;
}

.contact-info {
  padding: 18px 0;
}
.contact-info h4 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 24px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}
.info-row {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--c-line);
}
.info-row:last-child { border-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--c-bg);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}
.info-label {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-value {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  color: var(--c-ink);
  display: block;
  line-height: 1.6;
}
a.info-value:hover { color: var(--c-green); }

/* ============= 页脚 ============= */
.footer {
  background: var(--c-green-deep);
  color: rgba(240, 230, 207, .75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-top: 70px;
  padding-bottom: 50px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .brand-mark { background: var(--c-gold); color: var(--c-green-deep); }
.footer-brand .brand-name { color: var(--c-cream); font-size: 20px; }
.footer-brand .brand-sub { color: rgba(240, 230, 207, .6); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-cols h5 {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-cream);
  margin: 0 0 14px;
  letter-spacing: 0.1em;
}
.footer-cols p {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}
.footer-cols a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  color: rgba(240, 230, 207, .45);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============= 浮动按钮 ============= */
.float-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--c-gold);
  color: var(--c-green-deep);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(201, 169, 106, .45);
  transition: all .3s var(--ease);
  animation: floatPulse 2.4s var(--ease) infinite;
}
.float-cta:hover { transform: translateY(-3px); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(201, 169, 106, .45), 0 0 0 0 rgba(201, 169, 106, .35); }
  50% { box-shadow: 0 12px 30px rgba(201, 169, 106, .45), 0 0 0 12px rgba(201, 169, 106, 0); }
}

/* ============= 入场动画 ============= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============= 响应式 ============= */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .flow-list::before { display: none; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-card-inner { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .menu, .nav-cta { display: none; }
  .nav-cta.is-mobile {
    display: inline-flex;
    order: 3;
  }
  .menu.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-bg);
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-2);
  }
  .menu.is-open a { padding: 12px 0; font-size: 16px; }
  .hamburger { display: block; }

  .hero { padding: 100px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-meta { gap: 18px; }
  .meta-divider:nth-child(3) { display: none; }

  .container { padding: 0 20px; }

  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; }
  .section-head { margin-bottom: 44px; }
}
