:root {
  --ink: #1a2925;
  --muted: #5f6e69;
  --green-950: #102f28;
  --green-900: #173f35;
  --green-800: #1f5647;
  --green-700: #28705c;
  --green-100: #dfece7;
  --green-50: #eef6f3;
  --line: #06c755;
  --line-dark: #05a948;
  --cream: #f5f1e8;
  --sand: #dfcda9;
  --white: #ffffff;
  --border: #d9e1dd;
  --shadow: 0 18px 48px rgba(20, 55, 46, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

h1,
h2,
h3,
strong {
  letter-spacing: 0.015em;
}

:focus-visible {
  outline: 3px solid #f2a900;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.demo-notice {
  padding: 9px 16px;
  color: #4a3a18;
  background: #fff3cf;
  border-bottom: 1px solid #eed99d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 221, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(20, 55, 46, 0.08);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green-900);
  border-radius: 13px 13px 13px 4px;
  font-size: 20px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.35;
}

.brand strong {
  overflow: hidden;
  max-width: 330px;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.global-nav a:not(.nav-line) {
  position: relative;
}

.global-nav a:not(.nav-line)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.global-nav a:not(.nav-line):hover::after {
  transform: scaleX(1);
}

.nav-line {
  padding: 10px 17px;
  color: var(--white);
  background: var(--line);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(6, 199, 85, 0.2);
}

.nav-line:hover {
  background: var(--line-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--green-950);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 80px;
  background:
    radial-gradient(circle at 9% 15%, rgba(223, 205, 169, 0.35), transparent 25%),
    linear-gradient(135deg, #f8f5ef 0%, #eef6f3 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(40, 112, 92, 0.13);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -260px;
  right: -220px;
  width: 620px;
  height: 620px;
}

.hero::after {
  right: -70px;
  bottom: -320px;
  width: 520px;
  height: 520px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.hero h1 span {
  color: var(--green-700);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 24px;
  color: #43544f;
  font-size: 17px;
  line-height: 1.95;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.hero-points span {
  position: relative;
  padding: 7px 13px 7px 31px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(40, 112, 92, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-points span::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green-700);
  border-left: 2px solid var(--green-700);
  content: "";
  transform: translateY(-65%) rotate(-45deg);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-line {
  color: var(--white);
  background: var(--line);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.24);
}

.button-line:hover {
  background: var(--line-dark);
  box-shadow: 0 15px 34px rgba(6, 169, 72, 0.28);
}

.line-symbol {
  display: inline-grid;
  width: 30px;
  height: 25px;
  place-items: center;
  color: var(--line);
  background: var(--white);
  border-radius: 50%;
  font-size: 7px;
  font-weight: 900;
}

.button-phone {
  color: var(--green-950);
  background: var(--white);
  border-color: rgba(23, 63, 53, 0.16);
  box-shadow: 0 8px 22px rgba(20, 55, 46, 0.08);
}

.button-phone strong {
  font-size: 16px;
}

.cta-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-backdrop {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 390px;
  height: 440px;
  background: var(--green-900);
  border-radius: 44% 56% 48% 52% / 55% 38% 62% 45%;
  transform: rotate(5deg);
}

.visual-backdrop::before {
  position: absolute;
  top: -25px;
  left: -15px;
  width: 90px;
  height: 90px;
  background: var(--sand);
  border-radius: 50%;
  content: "";
}

.phone-card {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 15px;
  width: 310px;
  overflow: hidden;
  background: #f7f7f7;
  border: 8px solid #222b28;
  border-radius: 34px;
  box-shadow: 0 24px 55px rgba(12, 40, 33, 0.28);
  transform: rotate(-4deg);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: 8px 15px;
  background: var(--white);
  border-bottom: 1px solid #e1e5e3;
  font-size: 12px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  background: var(--green-700);
  border-radius: 50%;
}

.phone-top i {
  justify-self: end;
  width: 18px;
  height: 3px;
  background: #c7cfcc;
  border-radius: 3px;
}

.chat-area {
  min-height: 360px;
  padding: 18px 14px 26px;
  background: #dfe8e4;
}

.chat-date {
  margin-bottom: 13px;
  color: #6c7975;
  font-size: 9px;
  text-align: center;
}

.chat-bubble {
  position: relative;
  max-width: 83%;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.55;
}

.chat-received {
  background: var(--white);
  border-bottom-left-radius: 3px;
}

.chat-sent {
  margin-left: auto;
  background: #8ce58f;
  border-bottom-right-radius: 3px;
}

.photo-grid {
  display: grid;
  width: 82%;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 14px auto;
}

.photo-grid span {
  display: grid;
  aspect-ratio: 1.15;
  place-items: end center;
  padding: 8px 4px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(to top, rgba(10, 34, 28, 0.68), transparent 60%),
    linear-gradient(135deg, #8e9d98, #c9d2ce);
  border-radius: 7px;
  font-size: 8px;
}

.send-list {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 10px;
  width: 270px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.send-list p {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.send-list ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.send-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #43544f;
  font-size: 12px;
  font-weight: 700;
}

.send-list li span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 10px;
}

.trust-strip {
  padding: 24px 0;
  color: var(--white);
  background: var(--green-950);
}

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

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: #d4e9e1;
  font-size: 14px;
  white-space: nowrap;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.section {
  padding: 104px 0;
}

.section-tint {
  background: var(--green-50);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  text-align: left;
}

.heading-row > div {
  max-width: 700px;
}

.heading-row h2 {
  margin-bottom: 12px;
}

.heading-row p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.sample-badge {
  display: inline-block;
  padding: 7px 14px;
  color: #6a4d13;
  background: #fff2c9;
  border: 1px solid #efd68b;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.service-card {
  position: relative;
  min-height: 275px;
  padding: 31px 26px 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 115px;
  height: 115px;
  background: var(--green-50);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  box-shadow: 0 18px 40px rgba(20, 55, 46, 0.1);
  transform: translateY(-5px);
}

.card-number {
  display: block;
  margin-bottom: 35px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.5;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.help-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius-md);
}

.mini-label {
  margin-bottom: 7px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.help-banner .mini-label {
  color: #add0c3;
}

.help-banner h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.help-banner p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.text-link {
  flex: 0 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 800;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 36px 30px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.price-card.featured {
  border: 2px solid var(--green-700);
  box-shadow: 0 18px 38px rgba(20, 55, 46, 0.1);
}

.recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 5px 16px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-name {
  margin-bottom: 15px;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 800;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
  color: var(--green-950);
  font-weight: 800;
}

.price-value small {
  font-size: 10px;
}

.price-value strong {
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1;
}

.price-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.price-note {
  margin-top: 24px;
  padding: 30px 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.price-note h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.price-note ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 30px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.price-note li {
  position: relative;
  padding-left: 18px;
  color: #42534e;
  font-size: 13px;
}

.price-note li::before {
  position: absolute;
  top: 12px;
  left: 1px;
  width: 6px;
  height: 6px;
  background: var(--green-700);
  border-radius: 50%;
  content: "";
}

.price-note > p:last-child {
  padding-top: 17px;
  margin-bottom: 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 10px 17px;
  color: var(--green-900);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.area-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.area-panel {
  position: relative;
  display: grid;
  min-height: 400px;
  place-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius-lg);
  text-align: center;
}

.area-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 45px 45px;
  content: "";
}

.area-panel strong,
.area-panel small {
  position: relative;
  z-index: 2;
  display: block;
}

.area-panel strong {
  margin-top: 78px;
  font-size: 25px;
}

.area-panel small {
  color: rgba(255, 255, 255, 0.68);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -58%);
}

.ring-one {
  width: 170px;
  height: 170px;
}

.ring-two {
  width: 300px;
  height: 300px;
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 38%;
  left: 50%;
  width: 54px;
  height: 54px;
  background: var(--sand);
  border: 7px solid rgba(255, 255, 255, 0.25);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background: var(--green-900);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.line-section {
  color: var(--white);
  background: var(--green-950);
}

.section-heading.light .eyebrow {
  color: #a8cfc1;
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

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

.steps-grid article {
  min-height: 215px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
}

.steps-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: #a8cfc1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.steps-grid strong {
  display: block;
  margin-bottom: 9px;
  font-size: 19px;
}

.steps-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.message-template {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 25px;
  margin-top: 20px;
  padding: 30px;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-md);
}

.message-template pre {
  margin: 0;
  overflow: auto;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.85;
  white-space: pre-wrap;
}

.copy-button {
  min-width: 145px;
  min-height: 48px;
  padding: 10px 18px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.copy-button:hover {
  background: var(--green-50);
}

.center-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
}

.button-large {
  min-height: 62px;
  padding-inline: 34px;
  font-size: 17px;
}

.center-cta small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}

.flow-list li:first-child {
  padding-left: 0;
}

.flow-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.flow-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 25px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.flow-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.flow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  position: relative;
  padding: 21px 60px 21px 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  background: var(--green-700);
  content: "";
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  padding: 0 24px 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 70px;
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--border);
}

.company-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.company-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.company-list dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.map-card {
  padding: 24px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
}

.map-placeholder {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #dfe9e5;
  border-radius: 17px;
}

.map-placeholder::before,
.map-placeholder::after,
.map-placeholder span {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  transform-origin: center;
}

.map-placeholder::before {
  top: 25px;
  left: -30px;
  width: 520px;
  height: 27px;
  transform: rotate(28deg);
}

.map-placeholder::after {
  top: 100px;
  left: -20px;
  width: 510px;
  height: 19px;
  transform: rotate(-18deg);
}

.map-placeholder span:nth-child(1) {
  top: -80px;
  left: 70px;
  width: 18px;
  height: 450px;
  transform: rotate(15deg);
}

.map-placeholder span:nth-child(2) {
  top: -80px;
  right: 80px;
  width: 24px;
  height: 450px;
  transform: rotate(-9deg);
}

.map-placeholder span:nth-child(3) {
  right: -40px;
  bottom: 32px;
  width: 470px;
  height: 12px;
  transform: rotate(9deg);
}

.map-placeholder span:nth-child(4) {
  top: 0;
  left: 50%;
  width: 1px;
  height: 1px;
}

.map-placeholder i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  background: var(--green-900);
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 18px rgba(20, 55, 46, 0.25);
  transform: translate(-50%, -60%) rotate(-45deg);
}

.map-card h3 {
  margin: 23px 0 7px;
  font-size: 18px;
}

.map-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.button-outline {
  width: 100%;
  color: var(--green-900);
  background: var(--white);
  border-color: var(--green-100);
}

.final-cta {
  padding: 72px 0;
  color: var(--white);
  background: var(--green-900);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta .eyebrow {
  color: #a8cfc1;
}

.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.final-buttons {
  display: grid;
  gap: 13px;
  min-width: 310px;
}

.phone-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 8px;
}

.phone-text small {
  color: rgba(255, 255, 255, 0.65);
}

.phone-text strong {
  font-size: 20px;
}

.site-footer {
  padding: 50px 0 38px;
  color: rgba(255, 255, 255, 0.72);
  background: #0a211c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px 50px;
  align-items: center;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 16px;
}

.footer-brand span {
  margin-top: 3px;
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 17px;
  color: var(--white);
  background: #152924;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .global-nav {
    gap: 15px;
  }

  .global-nav a:not(.nav-line) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 30px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 240px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }

  .flow-list li:nth-child(2) {
    border-right: 0;
  }

  .flow-list li:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .demo-notice {
    padding: 8px 14px;
    font-size: 12px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-mark {
    flex-basis: 37px;
    width: 37px;
    height: 37px;
    font-size: 17px;
  }

  .brand strong {
    max-width: 230px;
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    width: 100%;
    height: calc(100dvh - 64px);
    align-content: start;
    gap: 0;
    padding: 24px 24px 110px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a,
  .global-nav a:not(.nav-line) {
    display: block;
    padding: 15px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .global-nav a:not(.nav-line)::after {
    display: none;
  }

  .global-nav .nav-line {
    margin-top: 20px;
    color: var(--white);
    border: 0;
    text-align: center;
  }

  .hero {
    padding: 52px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(35px, 9vw, 48px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-visual {
    width: min(100%, 470px);
    min-height: 490px;
    margin: 0 auto;
  }

  .visual-backdrop {
    right: 0;
  }

  .phone-card {
    left: 4%;
  }

  .send-list {
    right: 1%;
  }

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

  .trust-grid div {
    justify-content: flex-start;
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .trust-grid strong {
    width: 120px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .heading-row {
    display: block;
  }

  .sample-badge {
    margin-top: 15px;
  }

  .price-grid,
  .steps-grid,
  .area-grid,
  .company-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .price-grid {
    gap: 22px;
  }

  .price-card {
    padding: 30px 26px;
  }

  .price-value strong {
    font-size: 40px;
  }

  .area-grid,
  .company-grid {
    gap: 45px;
  }

  .area-panel {
    min-height: 330px;
  }

  .steps-grid article {
    min-height: 0;
  }

  .steps-grid article > span {
    margin-bottom: 18px;
  }

  .final-cta-inner {
    gap: 30px;
  }

  .final-buttons {
    min-width: 0;
  }

  .mobile-contact {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    min-height: 68px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(20, 55, 46, 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-contact a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    line-height: 1.25;
  }

  .mobile-contact span {
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-contact strong {
    font-size: 13px;
  }

  .mobile-phone {
    color: var(--green-900);
  }

  .mobile-line {
    color: var(--white);
    background: var(--line);
  }

  .toast {
    right: 16px;
    bottom: 82px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand strong {
    max-width: 195px;
  }

  .global-nav {
    top: 100%;
  }

  .hero {
    padding-top: 43px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-points {
    gap: 7px;
  }

  .hero-points span {
    padding-right: 10px;
    padding-left: 28px;
    font-size: 10px;
  }

  .cta-group,
  .cta-group .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 435px;
  }

  .visual-backdrop {
    top: 18px;
    right: -8%;
    width: 88%;
    height: 355px;
  }

  .phone-card {
    width: 250px;
    border-width: 6px;
    border-radius: 28px;
  }

  .chat-area {
    min-height: 290px;
  }

  .send-list {
    bottom: 0;
    width: 230px;
    padding: 18px;
  }

  .send-list p {
    font-size: 12px;
  }

  .send-list li {
    font-size: 10px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2 {
    font-size: 29px;
  }

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

  .service-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 24px;
  }

  .help-banner {
    display: block;
    padding: 25px 22px;
  }

  .help-banner .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .price-note {
    padding: 24px 21px;
  }

  .price-note ul {
    grid-template-columns: 1fr;
  }

  .area-panel {
    min-height: 290px;
  }

  .message-template {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 23px 20px;
  }

  .copy-button {
    width: 100%;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-list li,
  .flow-list li:first-child,
  .flow-list li:nth-child(3) {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 0 0 26px;
    margin-bottom: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .flow-list li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }

  .flow-list li > span {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .company-list div {
    grid-template-columns: 95px 1fr;
    gap: 12px;
  }

  .map-card {
    padding: 16px;
  }

  .map-placeholder {
    height: 200px;
  }

  .final-cta {
    padding: 60px 0;
  }

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

  .site-footer nav {
    gap: 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
