:root {
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #111111;
  --muted: #5f5f64;
  --line: rgba(17, 17, 17, 0.08);
  --shadow: 0 24px 80px rgba(15, 15, 15, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(245,245,247,0.88) 38%, rgba(236,236,238,0.95) 100%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), rgba(255,255,255,0));
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.05);
}

.brand {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.topbar-cta,
.button-dark {
  background: #111111;
  color: #ffffff;
}

.topbar-cta {
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 64px 0 48px;
  min-height: calc(100vh - 120px);
}

.hero-copy h1,
.section-intro h2,
.split-layout h2,
.consultation-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.trust-line,
.feature-card p,
.bullet-copy,
.consultation-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  margin: 24px 0 0;
  font-size: 1.2rem;
  max-width: 40rem;
}

.trust-line {
  margin: 18px 0 0;
  max-width: 42rem;
}

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

.button {
  padding: 15px 22px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button:hover,
.topbar-cta:hover {
  transform: translateY(-1px);
}

.button-light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-card,
.feature-card,
.bullet-panel,
.benefit-card,
.consultation-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
  border-radius: 40px;
}

.glass-panel {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.55));
}

.card-label {
  margin: 0 0 18px;
  font-weight: 600;
}

.glass-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.glass-panel li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.glass-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111111;
}

.section {
  padding: 48px 0;
}

.section-soft {
  padding: 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.section-intro {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-intro h2,
.split-layout h2,
.consultation-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

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

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.bullet-panel {
  padding: 8px 24px;
  border-radius: 30px;
}

.bullet-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.bullet-row:last-child {
  border-bottom: none;
}

.bullet-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.narrow {
  max-width: 680px;
}

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

.consultation-section {
  padding-bottom: 0;
}

.consultation-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  padding: 30px;
  border-radius: 40px;
  background: var(--surface-strong);
}

.consultation-form {
  display: grid;
  gap: 16px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.consultation-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
}

.consultation-form input:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.button-full {
  width: 100%;
  border: none;
  cursor: pointer;
}

.button-full:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #0f7b46;
}

.form-status.is-error {
  color: #b42318;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .consultation-card,
  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    max-width: 100%;
  }
}

.thank-you-shell {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.thank-you-main {
  width: 100%;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.thank-you-text {
  max-width: 38rem;
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 12px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand {
    font-size: 14px;
  }

  .topbar-cta {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    gap: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .section-soft,
  .consultation-card,
  .hero-card {
    border-radius: 28px;
  }

  .section-soft,
  .consultation-card,
  .glass-panel,
  .feature-card,
  .benefit-card {
    padding: 20px;
  }
}
