:root {
  --ivory: #fff8ef;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #23413b;
  --ink-soft: #42635c;
  --muted: #73867f;
  --teal: #0e6a63;
  --jade: #89cabc;
  --mint: #e5f6ef;
  --peach: #ffe1d4;
  --coral: #ff765f;
  --coral-dark: #e75f4c;
  --gold: #c79a45;
  --berry: #d85474;
  --sky: #dff3ff;
  --line: rgba(35, 65, 59, 0.12);
  --shadow: 0 24px 70px rgba(54, 78, 72, 0.14);
  --soft-shadow: 0 14px 38px rgba(54, 78, 72, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --display: "Zen Maru Gothic", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--ivory), #f7fffb 45%, #fff6ef 100%);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(35, 65, 59, 0.08);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 36px rgba(34, 60, 53, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-name::after {
  content: "♡";
  margin-left: 4px;
  color: var(--coral);
  font-size: 0.55em;
  vertical-align: super;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(199, 154, 69, 0.34);
  border-radius: 16px;
  background: #fff5e6;
  color: var(--gold);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.nav a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  right: 25%;
  bottom: 0;
  left: 25%;
  height: 3px;
  border-radius: 99px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: translateY(4px);
  transition: 0.2s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta {
  min-width: 138px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 118, 95, 0.28);
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.86) 33%, rgba(255, 248, 239, 0.28) 66%, rgba(255, 248, 239, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.2), rgba(255, 248, 239, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(240px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  width: min(1240px, calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  padding: 86px 0 120px;
  align-items: center;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.tag::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--mint));
  content: "";
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(47px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--coral);
}

.hero h1 span::after {
  position: absolute;
  right: -8px;
  bottom: -2px;
  left: -6px;
  height: 14px;
  border-radius: 99px;
  background: rgba(255, 188, 132, 0.35);
  content: "";
  z-index: -1;
}

.hero-copy p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 156px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(255, 118, 95, 0.28);
}

.button.dark {
  background: var(--teal);
  color: var(--white);
}

.button.line {
  border-color: rgba(14, 106, 99, 0.18);
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--soft-shadow);
}

.button.line::before {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  background: #18c95f;
  color: var(--white);
  content: "LINE";
  font-family: var(--body);
  font-size: 8px;
  font-weight: 900;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.hero-note {
  align-self: start;
  justify-self: end;
  max-width: 260px;
  margin-top: 72px;
  padding: 18px 20px;
  border: 1px solid rgba(199, 154, 69, 0.3);
  border-radius: 24px 24px 24px 6px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--soft-shadow);
  transform: rotate(-3deg);
}

.hero-note strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.4;
}

.hero-note span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-dock {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1240px, calc(100% - 40px));
  margin: -58px auto 0;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 69, 0.2);
  border-radius: 24px;
  background: rgba(199, 154, 69, 0.2);
  box-shadow: var(--shadow);
}

.trust-dock div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 24px;
  background: rgba(255, 251, 244, 0.96);
}

.round-icon {
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff1df;
  color: var(--gold);
  font-weight: 900;
}

.trust-dock strong {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
}

.trust-dock p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
}

h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.38;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pain-card {
  display: grid;
  min-height: 190px;
  padding: 24px 18px;
  place-items: center;
  border: 1px solid rgba(255, 118, 95, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.pain-card h3 {
  margin: 16px 0 0;
  font-size: 17px;
}

.pain-illus {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff3e5, var(--mint));
}

.pain-illus::before {
  color: var(--teal);
  font-size: 32px;
  font-weight: 900;
}

.coin::before { content: "$"; color: var(--gold); }
.chart::before { content: "◔"; color: var(--coral); }
.shield::before { content: "✓"; color: var(--teal); }
.city::before { content: "▥"; color: var(--teal); }
.chat::before { content: "?"; color: var(--teal); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card.peach {
  background: #fff7f1;
}

.service-media {
  aspect-ratio: 1.55;
  overflow: hidden;
}

.service-media img,
.zoom-card img,
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: clamp(24px, 3vw, 38px);
}

.tag {
  color: var(--teal);
  text-transform: none;
}

.tag.coral {
  color: var(--coral);
}

.tag.light {
  color: #cdebe4;
}

.service-body h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.5vw, 44px);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-body li,
.guide-copy li,
.zoom-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-body li::before,
.guide-copy li::before,
.zoom-card li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.service-body .button {
  margin-top: 18px;
}

.compare-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
}

.compare-intro h2 span {
  color: var(--coral);
  font-size: 0.62em;
}

.compare-intro p {
  color: var(--muted);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
}

th {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
}

thead th {
  background: #fff2e9;
}

thead th:nth-child(3) {
  background: var(--coral);
  color: var(--white);
}

tbody tr:nth-child(even) {
  background: rgba(229, 246, 239, 0.35);
}

.table-note {
  margin: 0;
  padding: 12px 18px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.property-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 0;
  align-items: center;
}

.property-image {
  overflow: hidden;
  min-height: 430px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.property-content {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 118, 95, 0.16);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--soft-shadow);
}

.property-content p {
  color: var(--muted);
  font-weight: 700;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.feature-row span {
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-family: var(--display);
  font-weight: 900;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.step-card span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.step-card:nth-child(3) span,
.step-card:nth-child(4) span {
  background: var(--coral);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
}

.guide-card,
.zoom-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.guide-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  min-height: 430px;
  background: var(--teal);
  color: var(--white);
}

.guide-mock {
  display: grid;
  padding: 34px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--teal);
}

.guide-book {
  width: min(230px, 100%);
  min-height: 270px;
  padding: 26px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 239, 0.94)),
    url("./assets/bay.jpg") center/cover;
  color: var(--ink);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
  transform: rotate(-5deg);
}

.guide-book span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffd37b;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.guide-book strong {
  display: block;
  margin-top: 22px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.15;
}

.guide-book p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-weight: 800;
}

.guide-copy {
  padding: clamp(28px, 4vw, 44px);
}

.guide-copy h2,
.zoom-card h2 {
  margin-bottom: 12px;
}

.guide-copy p,
.zoom-card p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.guide-copy li {
  color: rgba(255, 255, 255, 0.88);
}

.guide-copy li::before {
  background: rgba(255, 255, 255, 0.14);
  color: #9df0d4;
}

.zoom-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  border: 1px solid rgba(255, 118, 95, 0.18);
  background: #fff8f2;
  isolation: isolate;
}

.zoom-card img {
  min-height: 430px;
  object-position: center center;
}

.zoom-card .zoom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 14px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 118, 95, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 241, 232, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(118, 69, 50, 0.08);
}

.zoom-card .tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff0e7;
  color: #c84f42;
}

.zoom-card h2 {
  color: var(--ink);
}

.zoom-card p,
.zoom-card li {
  color: #36564f;
}

.zoom-card p {
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  position: relative;
  display: grid;
  min-height: 158px;
  padding: 24px 16px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.workflow span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #fff2df;
  color: var(--gold);
  font-weight: 900;
}

.workflow strong {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
}

.workflow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.why-section {
  padding: clamp(70px, 8vw, 110px) 20px;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.97), rgba(255, 248, 239, 0.78)),
    url("./assets/policy.jpg") center/cover;
}

.why-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.why-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.why-grid strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
}

.why-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  overflow: hidden;
  padding: clamp(66px, 8vw, 104px) 20px;
  background:
    linear-gradient(135deg, rgba(255, 118, 95, 0.9), rgba(255, 188, 132, 0.82)),
    var(--coral);
  color: var(--white);
  text-align: center;
}

.final-inner {
  width: min(780px, 100%);
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.final-actions {
  justify-content: center;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 840px);
  gap: 28px;
  padding: 30px clamp(20px, 5vw, 72px) 92px;
  background: #fffaf3;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 118, 95, 0.18);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 14px 42px rgba(54, 78, 72, 0.22);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 900;
}

.mobile-cta a:first-child {
  background: var(--mint);
  color: var(--teal);
}

.mobile-cta a:last-child {
  background: var(--coral);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .trust-dock,
  .pain-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-section,
  .property-band,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .workflow {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-note {
    justify-self: start;
    margin-top: -32px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-bg {
    object-position: 63% center;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.88) 45%, rgba(255, 248, 239, 0.28) 100%),
      linear-gradient(90deg, rgba(255, 248, 239, 0.92), rgba(255, 248, 239, 0.18));
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 56px 0 96px;
    align-items: start;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .trust-dock {
    width: calc(100% - 28px);
    margin-top: -42px;
  }

  .trust-dock div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
    text-align: center;
  }

  .round-icon {
    margin: 0 auto;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .pain-grid,
  .service-grid,
  .steps,
  .workflow,
  .why-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 150px;
  }

  .guide-card,
  .zoom-card {
    grid-template-columns: 1fr;
  }

  .zoom-card img {
    min-height: 260px;
  }

  .guide-card {
    min-height: auto;
  }

  .property-image {
    min-height: 260px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 24px;
  }

  .trust-dock {
    grid-template-columns: 1fr;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .pain-illus {
    width: 64px;
    height: 64px;
  }

  th,
  td {
    padding: 13px 14px;
  }
}
