:root {
  --red: #e60012;
  --deep-red: #a90010;
  --orange: #ff7200;
  --yellow: #ffd400;
  --ink: #23120f;
  --muted: #6d5650;
  --paper: #fff8ec;
  --white: #fff;
  --shadow: 0 18px 45px rgba(119, 23, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(255, 212, 0, 0.34), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fff4df 44%, #fff 100%);
}

body.modal-open {
  overflow: hidden;
}

html,
body {
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 4px solid var(--yellow);
  box-shadow: 0 8px 28px rgba(126, 28, 0, 0.14);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--deep-red);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: 3px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 6px 0 #7d000a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-note {
  color: var(--deep-red);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 22px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(180deg, #ff9d00 0%, #ff4d00 45%, #cf0012 100%);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 0 #8a000b, 0 18px 28px rgba(207, 0, 18, 0.28);
  cursor: pointer;
}

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

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #8a000b, 0 10px 18px rgba(207, 0, 18, 0.24);
}

.btn-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-hero {
  flex-direction: column;
  min-width: min(100%, 330px);
  min-height: 72px;
  font-size: clamp(1.08rem, 3vw, 1.45rem);
}

.btn-hero span {
  font-size: 0.78rem;
}

.btn-ghost {
  color: var(--deep-red);
  background: #fff;
  border: 2px solid #ffb000;
  box-shadow: none;
}

.btn-submit {
  display: none;
}

.pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.16); }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(28px, 5vw, 74px) clamp(16px, 5vw, 72px) clamp(28px, 5vw, 60px);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 246, 218, 0.95), rgba(255, 255, 255, 0.85)),
    repeating-linear-gradient(135deg, rgba(255, 114, 0, 0.12) 0 12px, rgba(255, 212, 0, 0.2) 12px 24px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% 44%;
  height: 46%;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  transform: rotate(-7deg);
  opacity: 0.95;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.urgent-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  color: var(--deep-red);
  font-weight: 900;
  background: linear-gradient(90deg, var(--yellow), #fff2a3);
  border: 2px solid #ff9d00;
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(169, 0, 16, 0.2);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 6vw, 4.9rem);
  line-height: 1.24;
  color: var(--deep-red);
  text-shadow: 3px 3px 0 var(--yellow);
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 10px;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
}

.lead-mobile {
  display: none;
}

.demo-note,
.micro-copy {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.trust-band {
  display: none;
}

.trust-grid-mobile {
  display: none;
}

.trust-card,
.step-card,
.voice-card,
.provider-card,
.estimate-card,
.case-card,
.modal-panel {
  border-radius: 8px;
}

.trust-card {
  display: grid;
  gap: 6px;
  min-height: 154px;
  padding: 14px;
  background: #fff;
  border: 3px solid #ffb000;
  box-shadow: 0 8px 0 rgba(169, 0, 16, 0.16);
}

.trust-card img {
  width: 56px;
}

.trust-card strong {
  color: var(--deep-red);
  font-size: 1.05rem;
  line-height: 1.2;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 28px 24px rgba(74, 24, 0, 0.22));
}

.section-head {
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head.light {
  color: #fff;
}

.form-band,
.steps-section,
.providers-section,
.voices-section,
.faq-section {
  padding: clamp(44px, 7vw, 86px) clamp(16px, 4vw, 56px);
}

.form-band {
  background: linear-gradient(180deg, #5a0006, #b10010 55%, #ff6a00);
  color: #fff;
}

.estimate-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 4px solid var(--yellow);
  box-shadow: var(--shadow);
}

.progress-wrap {
  margin-bottom: 28px;
}

.progress-track {
  height: 14px;
  overflow: hidden;
  background: #f2d6c5;
  border-radius: 999px;
}

.progress-bar {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.step-indicator li {
  padding: 8px;
  font-weight: 900;
  text-align: center;
  color: var(--muted);
  background: #fff2d4;
  border-radius: 8px;
}

.step-indicator li.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

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

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: #fffaf0;
  border: 2px solid #f0b06a;
  border-radius: 8px;
}

input:focus,
select:focus {
  outline: 3px solid rgba(255, 114, 0, 0.32);
  border-color: var(--orange);
}

.form-error {
  min-height: 26px;
  margin-bottom: 10px;
  color: var(--deep-red);
  font-weight: 900;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.steps-grid,
.case-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.step-card,
.voice-card {
  padding: 24px;
  background: #fff;
  border: 3px solid #ffca30;
  box-shadow: 0 8px 0 rgba(169, 0, 16, 0.12);
}

.step-card span {
  display: inline-block;
  margin: 10px 0 6px;
  color: var(--red);
  font-size: 2.7rem;
  font-weight: 1000;
  line-height: 1;
}

.cases-section {
  padding: clamp(44px, 7vw, 88px) clamp(16px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(88, 0, 7, 0.96), rgba(223, 0, 18, 0.9)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 212, 0, 0.22) 16px 30px);
}

.case-card {
  padding: 24px;
  background: #fff;
  border: 4px solid var(--yellow);
  box-shadow: 0 10px 0 rgba(255, 212, 0, 0.3);
}

.case-type {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  font-weight: 900;
  background: var(--deep-red);
  border-radius: 6px;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 4px;
}

.price-row span {
  color: var(--muted);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 900;
  text-decoration: line-through;
}

.price-row strong,
.discount {
  color: var(--red);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 1000;
  line-height: 1;
}

.discount {
  margin-bottom: 16px;
  color: #ff6a00;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.provider-card {
  position: relative;
  min-height: 172px;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #ffc13d;
  box-shadow: 0 8px 0 rgba(169, 0, 16, 0.1);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.provider-card:hover,
.provider-card:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 10px 0 rgba(169, 0, 16, 0.2), 0 18px 28px rgba(207, 0, 18, 0.16);
  outline: 0;
  transform: translateY(-2px);
}

.provider-card::before {
  content: "無料相談";
  position: absolute;
  top: 10px;
  right: -30px;
  width: 118px;
  padding: 3px 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  background: var(--red);
  transform: rotate(35deg);
}

.provider-card h3 {
  padding-right: 36px;
  color: var(--deep-red);
}

.provider-card p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.provider-card strong {
  color: #ff8a00;
}

.provider-more {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 6px 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 6px;
  box-shadow: 0 4px 0 #8a000b;
}

.provider-more::after {
  content: "→";
  margin-left: 8px;
}

.voice-card img {
  width: 78px;
  margin-bottom: 12px;
}

.faq-section {
  color: #fff;
  background: linear-gradient(180deg, #6c0009, #1f0908);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

details {
  padding: 16px 18px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--yellow);
  border-radius: 8px;
}

summary {
  color: var(--deep-red);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 10px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(16px, 4vw, 56px);
  color: #fff;
  background: #160807;
}

.site-footer p {
  margin: 4px 0 0;
  color: #ffdfb0;
  font-size: 0.9rem;
}

.footer-cta {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  padding: 10px 14px 12px;
  background: rgba(35, 18, 15, 0.9);
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.22);
}

.sticky-cta .btn {
  width: 100%;
}

.sticky-cta.show {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(20, 5, 4, 0.72);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 28px;
  background: #fff;
  border: 4px solid var(--yellow);
  box-shadow: var(--shadow);
  text-align: center;
}

.muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 38px;
  height: 38px;
  color: var(--deep-red);
  font-size: 1.5rem;
  font-weight: 900;
  background: #fff1cf;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.company-modal {
  --company-accent: #e8590c;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.company-modal-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  max-height: none;
  height: 100vh;
  height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.company-modal .modal-close {
  position: fixed;
  top: 9px;
  right: 12px;
  z-index: 80;
  color: var(--company-accent);
  background: #fff;
  border: 2px solid rgba(35, 18, 15, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.company-modal-body {
  height: 100%;
  max-height: none;
  padding: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
  background:
    linear-gradient(180deg, #fff 0%, #fff9ef 42%, #fff 100%);
}

.company-lp-shell {
  min-height: 100%;
}

.company-lp-bar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 8px 64px 8px clamp(12px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(35, 18, 15, 0.12);
  box-shadow: 0 8px 20px rgba(35, 18, 15, 0.08);
  backdrop-filter: blur(10px);
}

.company-lp-bar strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-weight: 1000;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-back-btn,
.company-mini-cta,
.company-compare-link {
  appearance: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.company-back-btn {
  min-height: 40px;
  padding: 7px 10px;
  color: var(--company-accent);
  background: transparent;
  border: 0;
}

.company-mini-cta {
  min-width: 0;
  min-height: 40px;
  padding: 8px 14px;
  color: #fff;
  background: var(--company-accent);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(35, 18, 15, 0.2);
}

.company-lp-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 12px, transparent 12px 25px),
    var(--company-accent);
}

.company-hero-inner {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 58px);
  align-items: center;
  max-width: 1180px;
  min-height: min(720px, calc(100svh - 58px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 96px) clamp(16px, 5vw, 72px);
}

.company-emblem {
  display: grid;
  place-items: center;
  width: clamp(136px, 20vw, 230px);
  aspect-ratio: 1;
  color: var(--company-accent);
  font-size: clamp(4.2rem, 12vw, 9rem);
  font-weight: 1000;
  line-height: 1;
  background: #fff;
  border: clamp(6px, 1vw, 10px) solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.company-hero-copy {
  min-width: 0;
}

.company-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 4px 12px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 1000;
  background: var(--company-accent);
  border-radius: 6px;
}

.company-lp-hero .company-kicker {
  color: var(--company-accent);
  background: #fff;
}

.company-modal-body h2 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.02;
  color: #fff;
  overflow-wrap: anywhere;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
}

.company-catch {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
}

.company-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.company-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  max-width: 100%;
  padding: 7px 12px;
  color: #fff;
  font-weight: 900;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.company-modal .btn {
  background: var(--company-accent);
  box-shadow: 0 8px 0 rgba(35, 18, 15, 0.28), 0 18px 28px rgba(35, 18, 15, 0.18);
}

.company-modal-cta {
  min-height: 58px;
  padding-inline: 24px;
}

.company-lp-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) clamp(16px, 5vw, 72px) clamp(56px, 8vw, 100px);
}

.company-lp-section {
  margin-top: clamp(44px, 7vw, 82px);
}

.company-lp-section:first-child {
  margin-top: 0;
}

.company-lp-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.company-lp-section h3,
.company-bottom-cta h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.company-feature-grid,
.company-work-grid,
.company-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-feature-card,
.company-work,
.company-review,
.company-flow-step,
.company-area-card {
  background: #fff;
  border: 2px solid rgba(35, 18, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(35, 18, 15, 0.06);
}

.company-feature-card {
  padding: 22px;
}

.company-feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 1000;
  background: var(--company-accent);
  border-radius: 8px;
}

.company-feature-card h4,
.company-work h4,
.company-flow-step h4,
.company-area-card h4 {
  margin: 0 0 8px;
  color: var(--company-accent);
  font-size: 1.12rem;
}

.company-feature-card p,
.company-work p,
.company-review p,
.company-flow-step p,
.company-area-card p {
  margin: 0;
}

.company-pricing-card {
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--company-accent);
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(35, 18, 15, 0.08);
}

.company-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.company-pricing-table th,
.company-pricing-table td {
  padding: 18px clamp(14px, 4vw, 28px);
  border-bottom: 1px solid rgba(35, 18, 15, 0.12);
}

.company-pricing-table tr:last-child th,
.company-pricing-table tr:last-child td {
  border-bottom: 0;
}

.company-pricing-table th {
  width: 34%;
  color: var(--company-accent);
  font-size: 1.08rem;
  text-align: left;
  background: color-mix(in srgb, var(--company-accent) 10%, #fff);
}

.company-pricing-table td {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 1000;
}

.company-work-grid,
.company-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-work,
.company-review {
  padding: 22px;
}

.company-work-place {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.company-work strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--company-accent);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 1000;
  line-height: 1;
}

.company-work span {
  display: inline-flex;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--ink);
  font-weight: 900;
  background: #fff3d1;
  border-radius: 999px;
}

.company-review strong {
  display: block;
  margin-bottom: 10px;
  color: #ff8a00;
}

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

.company-flow-step {
  position: relative;
  padding: 20px;
}

.company-flow-step span {
  display: block;
  margin-bottom: 16px;
  color: var(--company-accent);
  font-size: 2.3rem;
  font-weight: 1000;
  line-height: 1;
}

.company-profile {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(35, 18, 15, 0.1);
  border-radius: 8px;
}

.company-profile div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  border-bottom: 1px solid rgba(35, 18, 15, 0.1);
}

.company-profile div:last-child {
  border-bottom: 0;
}

.company-profile dt,
.company-profile dd {
  margin: 0;
  padding: 13px 16px;
}

.company-profile dt {
  color: var(--company-accent);
  font-weight: 900;
  background: color-mix(in srgb, var(--company-accent) 9%, #fff);
}

.company-profile dd {
  min-width: 0;
}

.company-area-card {
  margin-top: 14px;
  padding: 18px;
}

.company-bottom-cta {
  margin-top: clamp(48px, 8vw, 92px);
  padding: clamp(24px, 5vw, 44px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02)),
    var(--company-accent);
  border-radius: 8px;
}

.company-bottom-cta .company-kicker {
  color: var(--company-accent);
  background: #fff;
}

.company-bottom-cta h3 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #fff;
}

.company-bottom-cta .btn {
  color: var(--company-accent);
  background: #fff;
}

.company-compare-link {
  display: block;
  margin: 16px auto 0;
  padding: 6px 10px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .steps-grid,
  .case-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .company-feature-grid,
  .company-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-work-grid,
  .company-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-header-height: 64px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    align-items: flex-start;
    padding: 10px 12px;
    min-height: var(--mobile-header-height);
  }

  .header-actions {
    justify-content: flex-end;
    gap: 8px;
  }

  .header-note {
    display: none;
  }

  .btn-small {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    min-height: calc(100vh - var(--mobile-header-height));
    min-height: calc(100svh - var(--mobile-header-height));
    padding: clamp(42px, 7vh, 58px) 14px 18px;
    padding: clamp(42px, 7svh, 58px) 14px 18px;
    isolation: isolate;
  }

  .hero::before {
    inset: auto -40% -14% 18%;
    height: 34%;
    z-index: 0;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0%, rgba(255, 248, 236, 0.94) 38%, rgba(255, 248, 236, 0.58) 52%, rgba(255, 248, 236, 0.14) 68%, rgba(255, 248, 236, 0.04) 100%),
      linear-gradient(0deg, rgba(255, 212, 0, 0.28), transparent 48%);
  }

  .hero-copy {
    z-index: 2;
    width: 100%;
    min-width: 0;
    max-width: 460px;
  }

  .urgent-badge {
    min-height: 28px;
    margin: 0 0 10px;
    padding: 3px 8px;
    font-size: 0.78rem;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(1.82rem, 8.8vw, 2.05rem);
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-shadow: 2px 2px 0 var(--yellow);
  }

  .hero-lead {
    margin: 0 0 8px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: inline;
  }

  .demo-note {
    margin: 0 0 12px;
    font-size: 0.8rem;
  }

  .hero-cta-row {
    display: block;
    margin: 0;
  }

  .btn-hero {
    min-height: 64px;
    font-size: 1.06rem;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-cta-row .micro-copy {
    display: none;
  }

  .hero-art {
    position: absolute;
    right: auto;
    top: clamp(132px, 19svh, 150px);
    bottom: auto;
    left: 50%;
    z-index: 0;
    width: min(205vw, 760px);
    max-width: none;
    margin: 0;
    opacity: 0.85;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .hero-art img {
    width: 100%;
    max-width: none;
    filter: drop-shadow(0 18px 18px rgba(74, 24, 0, 0.2));
  }

  .trust-grid-hero {
    display: none;
  }

  .trust-band {
    display: block;
    padding: 18px 14px 28px;
    background: #fff8ec;
  }

  .trust-grid-mobile {
    display: grid;
    max-width: none;
  }

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

  .trust-card {
    grid-template-columns: 54px 1fr;
    align-items: center;
    min-height: auto;
  }

  .trust-card span {
    grid-column: 2;
  }

  .field-row,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-actions .btn {
    width: 100%;
  }

  .site-footer {
    display: block;
  }

  .footer-cta {
    display: inline-block;
    margin-top: 14px;
  }

  .sticky-cta.show {
    display: block;
  }

  .company-modal .modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .company-lp-bar {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    min-height: 54px;
    padding: 7px 50px 7px 8px;
    overflow: hidden;
  }

  .company-lp-bar strong {
    display: none;
  }

  .company-back-btn {
    flex: 0 0 auto;
    min-height: 36px;
    padding-inline: 6px;
    font-size: 0.86rem;
  }

  .company-mini-cta {
    position: fixed;
    top: 9px;
    right: 50px;
    z-index: 76;
    flex: 0 0 58px;
    width: 58px;
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.74rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .company-hero-inner {
    grid-template-columns: 1fr;
    align-content: start;
    width: 100vw;
    max-width: 100vw;
    min-height: calc(100svh - 54px);
    padding: 26px 14px 34px;
    overflow: hidden;
  }

  .company-emblem {
    width: 116px;
  }

  .company-modal-body h2 {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
    line-height: 1.12;
    word-break: break-all;
  }

  .company-catch {
    max-width: calc(100vw - 28px);
    font-size: 1.08rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .company-chip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .company-chip-row span {
    justify-content: center;
    min-height: 34px;
    min-width: 0;
    padding: 6px 10px;
    font-size: 0.84rem;
  }

  .company-lp-main {
    padding: 38px 14px 88px;
  }

  .company-feature-grid,
  .company-work-grid,
  .company-review-grid,
  .company-flow {
    grid-template-columns: 1fr;
  }

  .company-pricing-table th,
  .company-pricing-table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }

  .company-pricing-table th {
    border-bottom: 0;
  }

  .company-profile div {
    grid-template-columns: 1fr;
  }

  .company-profile dt {
    padding-bottom: 4px;
  }

  .company-profile dd {
    padding-top: 4px;
  }

  .company-modal-cta {
    min-height: 64px;
    padding-inline: 12px;
  }
}
