:root {
  --background: #ffffff;
  --primary: #0b1c3e;
  --secondary: #3b82f6;
  --accent: #60a5fa;
  --gold: #d6a94e;
  --gold-soft: #fff7dc;
  --text: #111827;
  --muted: #5d6678;
  --gray: #f5f7fa;
  --border: #e5e7eb;
  --surface: #ffffff;
  --shadow: 0 18px 48px rgba(11, 28, 62, 0.1);
  --shadow-soft: 0 10px 28px rgba(11, 28, 62, 0.08);
  --radius: 16px;
  --radius-large: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 112px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(253, 230, 138, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.62), rgba(245, 247, 250, 0.95)),
    var(--gray);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(96, 165, 250, 0.26), transparent 32%),
    linear-gradient(135deg, #091936 0%, #0b1c3e 62%, #12326e 100%);
  color: #ffffff;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

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

.section-heading h2,
.incentive-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p,
.incentive-copy p,
.faq-intro p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.heading-nowrap {
  white-space: nowrap;
}

.section-heading-invert h2,
.section-heading-invert p {
  color: #ffffff;
}

.section-heading-invert p {
  opacity: 0.78;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-dark .eyebrow {
  color: #93c5fd;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(11, 28, 62, 0.22);
}

.button-primary:hover {
  background: #12326e;
  box-shadow: 0 16px 34px rgba(11, 28, 62, 0.28);
}

.button-secondary {
  border-color: rgba(11, 28, 62, 0.12);
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(11, 28, 62, 0.08);
}

.button-secondary:hover {
  border-color: rgba(59, 130, 246, 0.34);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.12);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 231, 235, 0);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(229, 231, 235, 0.9);
  box-shadow: 0 12px 30px rgba(11, 28, 62, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  flex: 0 0 auto;
}

.brand-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(11, 28, 62, 0.08));
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(11, 28, 62, 0.18);
}

.brand-text {
  font-size: 1.18rem;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #394255;
  font-size: 0.94rem;
  font-weight: 700;
}

.header-nav a {
  transition: color 180ms ease;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  background:
    radial-gradient(circle at 86% 18%, rgba(253, 230, 138, 0.34), transparent 26%),
    radial-gradient(circle at 68% 42%, rgba(96, 165, 250, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.92), rgba(255, 255, 255, 1) 62%),
    #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 62%);
}

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

.hero-copy h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #384154;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px 0 0;
}

.hero-metrics div {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.86)),
    #ffffff;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(59, 130, 246, 0.13);
}

.hero-metrics dt {
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: #364154;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(96, 165, 250, 0.04));
  filter: blur(28px);
  opacity: 0;
}

.hero-visual-card,
.section-visual,
.service-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.78)),
    #ffffff;
  box-shadow: 0 22px 60px rgba(11, 28, 62, 0.12);
}

.hero-visual-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-floating-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(11, 28, 62, 0.14));
}

.hero-visual-card .hero-floating-logo,
.hero-visual-card .hero-illustration,
.problem-visual > svg,
.flow-visual > svg,
.service-showcase > .showcase-illustration {
  display: none;
}

.generated-illustration {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.hero-generated-image {
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.hero-illustration {
  position: relative;
  width: 100%;
  height: auto;
}

.isometric-illustration {
  min-height: 430px;
}

.iso-shadow {
  filter: drop-shadow(0 16px 18px rgba(11, 28, 62, 0.14));
}

.visual-caption {
  position: relative;
  margin: -14px 8px 0;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: 34px;
}

.problem-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.problem-layout .problem-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.problem-layout .problem-grid .card:last-child {
  grid-column: auto;
}

.problem-grid .card:first-child,
.problem-grid .card:nth-child(2) {
  grid-column: span 1;
}

.section-visual {
  display: grid;
  align-content: start;
  padding: 26px;
}

.problem-visual {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.problem-visual svg {
  margin-top: -10px;
}

.section-visual svg,
.flow-visual svg,
.showcase-illustration {
  width: 100%;
  height: auto;
}

.section-visual p {
  margin: 8px 0 0;
  color: #364154;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.7;
}

.problem-layout .card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  min-height: auto;
  column-gap: 18px;
  padding: 20px 22px;
}

.problem-layout .card-icon {
  grid-row: span 2;
}

.problem-layout .card h3 {
  margin: 0;
}

.problem-layout .card p {
  margin: 8px 0 0;
}

.card,
.feature-card,
.step-card,
.flow-item,
.incentive-panel,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.feature-card:hover,
.step-card:hover,
.flow-item:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: var(--shadow);
}

.card {
  min-height: 218px;
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 900;
}

.card h3,
.feature-card h3,
.step-card h3,
.flow-item h3 {
  margin: 20px 0 0;
  color: var(--primary);
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.card p,
.feature-card p,
.step-card p,
.flow-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.solution-visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 4% 18%, rgba(253, 230, 138, 0.26), transparent 32%),
    linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.solution-visual-band h3 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.solution-visual-band p:not(.showcase-label) {
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-card {
  min-height: 258px;
  padding: 28px;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  color: var(--secondary);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.18);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  padding: 32px 34px;
}

.service-showcase::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(253, 230, 138, 0.34);
}

.service-showcase > * {
  position: relative;
  z-index: 1;
}

.showcase-label {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-showcase h3 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.service-showcase p:not(.showcase-label) {
  margin: 14px 0 0;
  color: var(--muted);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.flow-visual {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  padding: 24px;
}

.flow-visual .generated-illustration {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

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

.flow-item {
  display: grid;
  grid-template-columns: 42px minmax(116px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  position: relative;
  min-height: auto;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: none;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: -20px;
  left: 40px;
  width: 2px;
  height: 24px;
  background: rgba(147, 197, 253, 0.75);
}

.flow-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-weight: 900;
}

.flow-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.04rem;
}

.flow-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.comparison-visual {
  display: grid;
  align-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.comparison-column {
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: #ffffff;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.comparison-column.after {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow);
}

.comparison-header span {
  display: inline-flex;
  border-radius: 999px;
  background: #eef2f7;
  color: #566174;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.comparison-column.after .comparison-header span {
  background: #dbeafe;
  color: var(--secondary);
}

.comparison-header h3 {
  margin: 18px 0 0;
  color: var(--primary);
  font-size: clamp(1.14rem, 1.6vw, 1.48rem);
  line-height: 1.24;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #334155;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: inset 0 0 0 5px #dbeafe;
}

.check-list-muted li::before {
  background: #94a3b8;
  box-shadow: inset 0 0 0 5px #e5e7eb;
}

.incentive-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 58px;
}

.incentive-copy .button {
  margin-top: 28px;
}

.incentive-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.incentive-panel {
  padding: 34px;
  border-radius: var(--radius-large);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.74)),
    #ffffff;
}

.incentive-illustration {
  margin-bottom: 22px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-row:first-child {
  padding-top: 0;
}

.pricing-row span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-row strong {
  color: var(--primary);
  font-size: 1.24rem;
  text-align: right;
}

.incentive-panel p {
  margin: 22px 0 0;
  color: var(--muted);
}

.step-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-visual {
  display: grid;
  grid-row: 1 / span 4;
  grid-column: auto;
  align-content: center;
  justify-self: center;
  width: 100%;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.step-card {
  display: grid;
  grid-template-columns: 92px minmax(120px, 0.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: auto;
  padding: 20px 24px;
}

.step-card span {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-card h3,
.step-card p {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 48px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: #ffffff;
  color: var(--primary);
  padding: 24px 26px;
  text-align: left;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.5;
}

.accordion-trigger:hover {
  background: #f8fbff;
}

.accordion-trigger span {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.accordion-trigger span::before,
.accordion-trigger span::after {
  content: "";
  position: absolute;
  inset: 9px 3px auto;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  transition: transform 180ms ease;
}

.accordion-trigger span::after {
  transform: rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel p {
  padding-bottom: 24px;
}

.contact-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 28, 62, 0.96), rgba(18, 50, 110, 0.94)),
    var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 46px;
  align-items: start;
}

.contact-copy h2,
.contact-copy p {
  color: #ffffff;
}

.contact-copy p {
  opacity: 0.82;
}

.contact-note {
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.contact-illustration {
  margin-top: 28px;
  max-width: 360px;
  box-shadow: none;
}

.contact-note strong {
  display: block;
  margin-bottom: 12px;
}

.contact-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-large);
}

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

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

.contact-form label span {
  font-size: 0.9rem;
}

.required-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--secondary);
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.4;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  outline: 0;
}

.full-field {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.site-footer {
  background: #071229;
  color: #ffffff;
  padding: 52px 0 26px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand .brand-logo {
  width: 190px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2));
}

.site-footer p {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.64);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(253, 230, 138, 0.36), transparent 26%),
    radial-gradient(circle at 16% 76%, rgba(96, 165, 250, 0.24), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 68%);
}

.thanks-section {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 48px 0;
}

.thanks-card {
  width: min(100% - 32px, 720px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(11, 28, 62, 0.14);
  padding: 42px;
  text-align: center;
}

.thanks-brand {
  justify-content: center;
}

.thanks-visual {
  display: grid;
  width: min(100%, 260px);
  margin: 24px auto 10px;
  place-items: center;
}

.thanks-card .eyebrow {
  justify-content: center;
  margin-top: 10px;
}

.thanks-card h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.thanks-card p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.thanks-card .button {
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .problem-layout,
  .flow-layout,
  .solution-visual-band,
  .service-showcase,
  .incentive-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }

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

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

  .step-visual {
    grid-row: auto;
  }

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

  .comparison-visual {
    grid-column: 1 / -1;
  }

  .problem-layout .problem-grid {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-item::after {
    display: none;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

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

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

  .brand-logo {
    width: 138px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-metrics,
  .comparison,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .solution-grid,
  .solution-visual-band,
  .step-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .comparison-visual {
    grid-column: auto;
  }

  .step-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .problem-layout .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-layout .problem-grid .card:last-child {
    grid-column: auto;
  }

  .comparison-column,
  .section-visual,
  .solution-visual-band,
  .service-showcase,
  .incentive-panel,
  .contact-form {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-visual-card,
  .problem-visual {
    padding: 0;
    border-radius: 0;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.05rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .button-small {
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .card,
  .feature-card,
  .step-card,
  .flow-item {
    min-height: auto;
    padding: 22px;
  }

  .flow-item,
  .step-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .problem-layout .card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .problem-layout .card-icon {
    grid-row: auto;
  }

  .hero-generated-image {
    border-radius: 0;
  }

  .hero-illustration {
    min-width: 440px;
    transform: translateX(-50px);
  }

  .hero-visual {
    overflow: hidden;
    border-radius: var(--radius-large);
  }

  .hero-floating-logo {
    width: 56px;
    height: 56px;
  }

  .visual-caption {
    margin-top: -8px;
  }

  .generated-illustration {
    border-radius: 18px;
  }

  .contact-illustration {
    max-width: 100%;
  }

  .pricing-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pricing-row strong {
    text-align: left;
  }

  .accordion-trigger {
    padding: 20px;
  }

  .accordion-panel p {
    padding-inline: 20px;
  }

  .thanks-card {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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