:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #64716b;
  --line: #dce2dd;
  --paper: #f6f7f4;
  --white: #ffffff;
  --forest: #13533c;
  --mint: #20b86d;
  --gold: #ac8642;
  --clay: #b65f3a;
  --coal: #111816;
  --shadow: 0 24px 70px rgba(17, 24, 22, 0.14);
  font-family: Inter, "Noto Sans JP", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 247, 244, 0.9);
  border-bottom: 1px solid rgba(220, 226, 221, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 6px;
  font-weight: 900;
}

.brand-mark.image-mark {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

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

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--forest);
}

.lang-switch {
  display: flex;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch button {
  min-width: 58px;
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.lang-switch button.is-active {
  color: var(--white);
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(22px, 6vw, 76px) 72px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 15, 0.84) 0%, rgba(12, 18, 15, 0.58) 48%, rgba(12, 18, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 18, 15, 0.5), rgba(12, 18, 15, 0.08) 45%);
}

.hero-content {
  position: relative;
  max-width: 850px;
  color: var(--white);
}

.flyer-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding-top: 124px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    url("/assets/hero-tokyo-concierge-optimized.jpg") center/cover;
}

.sell-hero-content {
  color: var(--ink);
}

.sell-hero-content .eyebrow {
  color: var(--forest);
}

.sell-hero-content h1 {
  color: var(--forest);
  font-size: clamp(42px, 6vw, 82px);
}

.sell-hero-content .hero-copy {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.zero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.zero-badges div {
  padding: 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 22, 0.08);
}

.zero-badges span,
.zero-badges strong {
  display: block;
}

.zero-badges span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.zero-badges strong {
  margin-top: 4px;
  color: var(--forest);
  font-size: clamp(22px, 3vw, 34px);
}

.sell-hero-content .trust-row span {
  color: var(--forest);
  border-color: rgba(19, 83, 60, 0.18);
  background: rgba(19, 83, 60, 0.08);
  font-weight: 900;
}

.hero-sales-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(100%, 260px);
  margin: 0 auto;
  border-radius: 8px;
}

.call-card {
  padding: 18px;
  text-align: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.call-card span,
.call-card small {
  display: block;
}

.call-card strong {
  display: block;
  margin: 5px 0;
  font-size: clamp(24px, 3vw, 34px);
}

.flyer-preview {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: var(--mint);
  box-shadow: 0 18px 36px rgba(32, 184, 109, 0.24);
}

.btn.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.section,
.section-band {
  padding: 90px clamp(22px, 6vw, 76px);
}

.section-band {
  background: var(--white);
}

.section-inner,
.section-heading,
.quote-layout,
.funnel-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section h2,
.section-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

.lead-copy,
.contact-section p,
.lead-result p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.close-strip {
  padding-top: 22px;
  padding-bottom: 22px;
  background: var(--forest);
}

.close-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.close-grid article {
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.close-grid strong,
.close-grid span {
  display: block;
}

.close-grid strong {
  font-size: 18px;
}

.close-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.item-section {
  background: var(--paper);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.item-grid article {
  min-height: 132px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.item-grid strong,
.item-grid span {
  display: block;
}

.item-grid strong {
  color: var(--forest);
  font-size: 17px;
}

.item-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.cannot-box {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 20px 22px;
  background: #fff8ec;
  border: 1px solid #ead9b5;
  border-radius: 8px;
}

.cannot-box strong {
  color: var(--clay);
  font-size: 18px;
}

.cannot-box p {
  margin: 8px 0 0;
  color: var(--ink);
  line-height: 1.75;
}

.customer-flow {
  background: var(--white);
}

.customer-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: customerSteps;
}

.customer-steps li {
  min-height: 170px;
  padding: 20px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.customer-steps li::before {
  counter-increment: customerSteps;
  content: counter(customerSteps);
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-weight: 900;
}

.customer-steps strong,
.customer-steps span {
  display: block;
}

.customer-steps strong {
  color: var(--ink);
}

.customer-steps span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.price-section {
  background: var(--paper);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.price-grid article {
  padding: 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 22, 0.05);
}

.price-grid span,
.price-grid strong {
  display: block;
}

.price-grid span {
  color: var(--muted);
  font-weight: 900;
}

.price-grid strong {
  margin-top: 8px;
  color: var(--forest);
  font-size: clamp(24px, 3vw, 36px);
}

.price-note {
  max-width: 1180px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.funnel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 36px;
}

.funnel-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 24, 22, 0.05);
}

.step-badge {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 6px;
  font-weight: 900;
}

.funnel-card h3 {
  margin: 24px 0 10px;
  font-size: 23px;
}

.funnel-card p {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 18px;
  font-weight: 900;
}

.funnel-card small {
  display: block;
  flex: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.text-action {
  width: 100%;
  margin-top: 22px;
  border: 0;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.auto-section {
  background: var(--white);
}

.auto-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.deal-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.deal-steps li {
  padding: 16px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.deal-steps strong,
.deal-steps span {
  display: block;
}

.deal-steps strong {
  color: var(--forest);
  font-size: 17px;
}

.deal-steps span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

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

.quick-service-grid button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fbfcfa;
  font-weight: 900;
  cursor: pointer;
}

.quick-service-grid button.is-active,
.quick-service-grid button:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.chat-simulator {
  overflow: hidden;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 24, 22, 0.06);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--forest);
}

.chat-header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.chat-body {
  display: flex;
  min-height: 280px;
  max-height: 420px;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  padding: 18px;
}

.bubble {
  max-width: 84%;
  margin: 0;
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.65;
  white-space: pre-line;
}

.bubble.bot {
  align-self: flex-start;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.bubble.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--mint);
}

.mini-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mini-lead-form input,
.mini-lead-form select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #fbfcfa;
}

.mini-lead-form button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 6px;
  padding: 13px;
  color: var(--white);
  background: var(--mint);
  font-weight: 900;
  cursor: pointer;
}

.funnel-arrow {
  display: grid;
  place-items: center;
  color: var(--forest);
  font-size: 34px;
  font-weight: 900;
}

.map-section {
  background: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.map-checklist li {
  padding: 14px 16px;
  color: var(--ink);
  background: #f8faf7;
  border-left: 4px solid var(--mint);
  border-radius: 6px;
  line-height: 1.65;
}

.map-frame-card {
  overflow: hidden;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 24, 22, 0.06);
}

.map-frame-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.map-caption strong {
  flex: 0 0 auto;
  color: var(--forest);
}

.keyword-panel {
  padding: 26px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.keyword-chip {
  margin: 0 8px 10px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
}

.keyword-chip.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.keyword-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
}

.keyword-list li::before {
  content: "•";
  margin-right: 12px;
  color: var(--mint);
}

.quote-section {
  background: var(--paper);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}

.quote-form,
.lead-result {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 24, 22, 0.05);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(19, 83, 60, 0.12);
}

.lead-result {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.lead-result h3 {
  margin: 0;
  font-size: 28px;
}

.lead-text {
  padding: 16px;
  color: var(--ink);
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  white-space: pre-line;
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.copy-row .btn.secondary {
  border-color: var(--line);
}

.why-section {
  background: var(--white);
}

.why-section .section-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.reason-grid article {
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.98));
  border: 1px solid rgba(19, 83, 60, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 22, 0.07);
}

.reason-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest);
  background: rgba(32, 184, 109, 0.1);
  border: 1px solid rgba(32, 184, 109, 0.22);
  border-radius: 8px;
}

.reason-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-grid h3 {
  margin: 18px 0 10px;
  color: var(--forest);
  font-size: 20px;
  line-height: 1.35;
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.72;
}

.contact-section {
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.12;
}

.contact-actions .btn.primary {
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
}

.contact-actions .btn.primary strong {
  font-size: 20px;
}

.line-official-card {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.line-official-card strong {
  display: block;
  color: var(--forest);
  font-size: 18px;
}

.line-script-preview {
  padding: 14px 16px;
  color: var(--ink) !important;
  background: #f8faf7;
  border-left: 4px solid var(--mint);
  border-radius: 6px;
}

.qr-card {
  padding: 18px;
  text-align: center;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-card img {
  width: min(100%, 250px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--white);
}

.qr-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.qr-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.line-id {
  color: var(--forest) !important;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(22px, 6vw, 76px) 96px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--coal);
}

.site-footer p {
  margin: 0;
}

.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: none;
  width: min(calc(100% - 32px), 420px);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 24, 22, 0.22);
}

.sticky-contact a {
  flex: 1;
  padding: 15px;
  text-align: center;
  font-weight: 900;
}

.sticky-contact a:first-child {
  color: var(--white);
  background: var(--forest);
}

.sticky-contact a:nth-child(2) {
  color: var(--white);
  background: var(--clay);
}

.sticky-contact a:last-child {
  color: var(--white);
  background: var(--mint);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--forest);
}

.breadcrumbs span + span::before,
.breadcrumbs a + span::before,
.breadcrumbs a + a::before {
  content: "/";
  margin-right: 8px;
  color: var(--muted);
}

.answer-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 24, 22, 0.06);
}

.answer-block dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.answer-block dt {
  color: var(--forest);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.3;
}

.answer-block dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 800;
}

.intent-grid,
.seo-link-grid,
.area-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.intent-card,
.seo-link-grid a,
.area-link-grid a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(17, 24, 22, 0.05);
}

.intent-card strong,
.seo-link-grid strong,
.area-link-grid strong {
  display: block;
  color: var(--forest);
  font-size: 17px;
}

.intent-card span,
.seo-link-grid span,
.area-link-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 800;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.service-facts article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-facts h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 19px;
}

.service-facts p,
.service-facts li {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 800;
}

.service-facts ul {
  margin: 0;
  padding-left: 1.2em;
}

@media (max-width: 1080px) {
  .funnel-grid {
    grid-template-columns: 1fr;
  }

  .funnel-arrow {
    min-height: 28px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

	  .split,
	  .flyer-hero,
	  .auto-layout,
	  .contact-panel,
	  .map-layout,
	  .quote-layout {
	    grid-template-columns: 1fr;
	  }

	  .zero-badges,
	  .close-grid,
	  .item-grid,
	  .customer-steps,
	  .price-grid,
	  .reason-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .hero-sales-card {
	    max-width: 560px;
	  }
	}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

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

  .lang-switch {
    width: 100%;
  }

  .lang-switch button {
    flex: 1;
    min-width: 0;
  }

	  .hero {
	    min-height: 760px;
	    padding: 72px 20px 48px;
	  }

	  .flyer-hero {
	    min-height: auto;
	    padding-top: 34px;
	  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 18, 15, 0.86) 0%, rgba(12, 18, 15, 0.72) 56%, rgba(12, 18, 15, 0.22) 100%);
  }

  h1 {
    font-size: 38px;
  }

  .section,
  .section-band {
    padding: 64px 20px;
  }

	  .quote-form,
	  .zero-badges,
	  .close-grid,
	  .item-grid,
	  .customer-steps,
	  .price-grid,
	  .deal-steps,
	  .quick-service-grid,
	  .mini-lead-form,
	  .reason-grid,
	  .intent-grid,
	  .seo-link-grid,
	  .area-link-grid,
	  .service-facts {
	    grid-template-columns: 1fr;
	  }

	  .funnel-card,
	  .item-grid article,
	  .customer-steps li,
	  .reason-grid article {
	    min-height: auto;
	  }

  .contact-panel,
  .keyword-panel,
  .map-frame-card {
    padding: 22px;
  }

  .map-frame-card iframe {
    min-height: 320px;
  }

  .map-caption {
    display: block;
  }

  .map-caption span {
    display: block;
    margin-top: 6px;
  }

  .btn {
    width: 100%;
  }

  .copy-row .btn {
    width: auto;
    flex: 1;
  }

  .site-footer {
    display: block;
    padding-bottom: 92px;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .sticky-contact {
    display: flex;
  }
}



/* Premium Main Services */
.premium-services {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.premium-services-heading {
  margin-bottom: 36px;
}

.premium-services-heading p:last-child {
  max-width: 840px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.premium-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(220, 226, 221, 0.95);
  border-radius: 20px;
  box-shadow: 0 18px 52px rgba(17, 24, 22, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--forest);
  opacity: 0.88;
  z-index: 1;
}

.premium-service-card.is-primary-service::before,
.premium-service-card.is-core-service::before {
  background: linear-gradient(90deg, var(--forest), #1d6fd6);
}

.premium-service-card.is-secondary-service {
  box-shadow: 0 14px 42px rgba(17, 24, 22, 0.08);
}

.premium-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(29, 111, 214, 0.32);
  box-shadow: 0 30px 78px rgba(17, 24, 22, 0.17);
}

.premium-service-media {
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.premium-service-media picture,
.premium-service-media img {
  display: block;
  width: 100%;
}

.premium-service-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease;
}

.premium-service-card:hover .premium-service-media img {
  transform: scale(1.045);
}

.premium-service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.premium-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-service-icon {
  display: inline-grid;
  min-width: 46px;
  height: 34px;
  place-items: center;
  padding: 0 10px;
  color: var(--forest);
  background: #edf6f1;
  border: 1px solid rgba(32, 184, 109, 0.24);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
}

.premium-service-card.is-core-service .premium-service-icon,
.premium-service-card.is-primary-service .premium-service-icon {
  color: #1d4f91;
  background: #edf4ff;
  border-color: rgba(29, 111, 214, 0.22);
}

.premium-service-card h3 {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: 25px;
  line-height: 1.2;
}

.premium-service-card.is-core-service h3,
.premium-service-card.is-primary-service h3 {
  color: #123f6d;
}

.premium-service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.premium-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.premium-service-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.premium-service-actions a.is-primary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.premium-service-actions a.is-blue {
  color: var(--white);
  background: #1d6fd6;
  border-color: #1d6fd6;
}

@media (max-width: 980px) {
  .premium-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .premium-service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .premium-service-body {
    padding: 20px;
  }

  .premium-service-card h3 {
    font-size: 23px;
  }

  .premium-service-actions a {
    flex: 1 1 100%;
    min-height: 50px;
  }
}


/* Equipment Circulation Timeline */
.equipment-flow {
  background: #f6f8f7;
}

.equipment-flow-heading {
  margin-bottom: 38px;
}

.equipment-flow-heading p:last-child {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.equipment-flow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.equipment-flow-step {
  position: relative;
  overflow: hidden;
  min-width: 180px;
  background: var(--white);
  border: 1px solid rgba(220, 226, 221, 0.95);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(17, 24, 22, 0.1);
}

.equipment-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 92px;
  right: -13px;
  z-index: 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: #1d6fd6;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(29, 111, 214, 0.24);
}

.equipment-flow-image {
  overflow: hidden;
  background: var(--paper);
}

.equipment-flow-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.equipment-flow-step:hover .equipment-flow-image img {
  transform: scale(1.04);
}

.equipment-flow-content {
  padding: 18px;
}

.equipment-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.equipment-flow-number {
  color: #1d6fd6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.equipment-flow-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #1d6fd6);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.equipment-flow-step h3 {
  margin: 12px 0 0;
  color: var(--forest);
  font-size: 19px;
  line-height: 1.25;
}

.equipment-flow-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.equipment-flow-keywords span {
  padding: 5px 8px;
  color: #1d4f91;
  background: #edf4ff;
  border: 1px solid rgba(29, 111, 214, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.equipment-flow-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .equipment-flow-timeline {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .equipment-flow-step {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-width: 0;
  }

  .equipment-flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%) rotate(90deg);
  }

  .equipment-flow-image img {
    height: 100%;
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .equipment-flow-step {
    grid-template-columns: 1fr;
  }

  .equipment-flow-image img {
    min-height: 0;
  }

  .equipment-flow-content {
    padding: 18px;
  }
}
