:root {
  --bg: #f5f7f8;
  --ink: #15202b;
  --muted: #52606d;
  --line: #e2e8f0;
  --card: #ffffff;
  --teal: #0f766e;
  --teal-bright: #0d9488;
  --teal-soft: #e7f6f3;
  --shadow: 0 12px 32px rgba(21, 32, 43, 0.07);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, #dff3ef 0%, transparent 55%),
    radial-gradient(ellipse 55% 35% at 100% 0%, #e8eef8 0%, transparent 50%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0.78rem 1.2rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: #243447;
}

.btn-accent {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.btn-accent:hover {
  background: var(--teal-bright);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-light {
  background: #fff;
  color: var(--teal);
}

.btn-light:hover {
  background: #f0fdfa;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  margin: 0.25rem auto 1.5rem;
  width: min(1080px, calc(100% - 2rem));
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #0f766e 0%, #0f5f5a 55%, #134e4a 100%);
  color: #fff;
  min-height: min(68vh, 520px);
  display: grid;
  align-items: center;
  box-shadow: var(--shadow);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #99f6e4;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.hero h1,
.band h2 {
  color: #fff;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
}

.lede {
  font-size: 1.12rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.4rem;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
}

.hero-panel strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  line-height: 1.2;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.guarantee {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  color: #ccfbf1;
  font-weight: 700;
  line-height: 1.4;
}

section {
  padding: 3rem 0;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.3rem 1.4rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.example {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.example img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.example figcaption {
  padding: 0.85rem 1rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
}

.price-card.featured {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.price-card.featured h3,
.price-card.featured .price {
  color: #fff;
}

.price-card.featured .note,
.price-card.featured ul {
  color: rgba(255, 255, 255, 0.88);
}

.price-card.featured .btn-ghost {
  border-color: transparent;
  background: #fff;
  color: var(--teal);
}

.price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 0.1rem;
  color: var(--ink);
  line-height: 1.1;
}

.price small {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
}

.price-card ul {
  margin: 0.9rem 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 0.25rem;
}

.band {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.band p {
  margin: 0.35rem 0 0;
  opacity: 0.82;
  max-width: 42ch;
}

.site-footer {
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-footer a {
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  max-width: 620px;
}

.wizard-progress {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.wizard-progress i {
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: var(--line);
}

.wizard-progress i.on {
  background: var(--teal-bright);
}

.choice-grid {
  display: grid;
  gap: 0.7rem;
}

.choice {
  text-align: left;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.choice:hover,
.choice.selected {
  border-color: var(--teal);
  background: #fff;
}

.choice strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.choice span {
  color: var(--muted);
  font-size: 0.98rem;
}

.summary {
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  margin: 1rem 0;
}

.summary p {
  margin: 0.3rem 0;
}

label {
  display: block;
  font-weight: 700;
  margin: 0.85rem 0 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(13, 148, 136, 0.35);
  border-color: var(--teal-bright);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.hidden {
  display: none !important;
}

.page-top {
  padding: 2rem 0 3.5rem;
}

.page-top h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  max-width: none;
}

.success-label {
  color: var(--teal);
  letter-spacing: 0.06em;
}

@media (max-width: 800px) {
  .hero-inner,
  .steps,
  .pricing,
  .examples {
    grid-template-columns: 1fr;
  }

  .nav .hide-sm {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: none;
  }
}
