:root {
  --bg: #f4fbfa;
  --bg-soft: #eef8ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #10212b;
  --muted: #4f6772;
  --line: rgba(16, 33, 43, 0.1);
  --blue: #1e78c8;
  --blue-deep: #145a96;
  --green: #20a87b;
  --green-soft: #dff7ee;
  --shadow: 0 18px 60px rgba(17, 65, 93, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(32, 168, 123, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(30, 120, 200, 0.14), transparent 35%),
    linear-gradient(180deg, #fbfffe 0%, var(--bg) 100%);
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(17, 65, 93, 0.06);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  font-size: 1.6rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.hero,
.section-grid,
.booking-grid,
.info-grid,
.content-columns,
.cta-band,
.image-strip,
.process-section,
.assurance-grid,
.plans-section,
.hook-band,
.comparison-section,
.calculator-promo,
.budget-layout {
  margin-top: 32px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 32px 0 8px;
}

.hero-copy,
.hero-card,
.feature-panel,
.cta-band,
.page-intro,
.info-card,
.content-card,
.calendar-card,
.form-card,
.process-card,
.assurance-card,
.plan-card,
.hook-card,
.comparison-card,
.calculator-promo-card,
.budget-card,
.budget-summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
}

.hero-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 249, 243, 0.9)),
    var(--surface);
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1,
h2,
h3,
strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.lead,
p,
li,
label,
input,
select,
textarea,
button {
  font-size: 1.04rem;
  line-height: 1.6;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-meta,
.cta-meta {
  margin: 18px 0 0;
  color: var(--blue-deep);
  font-weight: 700;
}

.cta-text {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 30px rgba(27, 126, 161, 0.25);
}

.button-secondary {
  color: var(--text);
  background: white;
  border: 1px solid var(--line);
}

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

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 32px;
}

.trust-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 5px rgba(32, 168, 123, 0.12);
}

.stat-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
}

.focus-panel {
  height: 100%;
  padding: 18px;
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    linear-gradient(180deg, rgba(30, 120, 200, 0.08), rgba(32, 168, 123, 0.08)),
    white;
}

.focus-panel-head {
  padding: 4px 4px 18px;
}

.focus-panel-text {
  margin: 0;
  color: var(--muted);
}

.focus-links {
  display: grid;
  gap: 12px;
}

.focus-link {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(16, 33, 43, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.focus-link:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 120, 200, 0.28);
  box-shadow: 0 12px 28px rgba(17, 65, 93, 0.08);
}

.focus-link strong {
  font-size: 1.05rem;
}

.focus-link span {
  color: var(--muted);
}

.detail-hero {
  margin-top: 32px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-top: 24px;
}

.detail-card,
.detail-side {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.detail-list li {
  position: relative;
  padding-left: 28px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.detail-highlight {
  padding: 18px;
  border-radius: 20px;
  background: var(--bg-soft);
}

.detail-nav {
  display: grid;
  gap: 10px;
}

.detail-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
}

.hook-band,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hook-card,
.comparison-card {
  padding: 32px;
}

.hook-card {
  background:
    linear-gradient(135deg, rgba(30, 120, 200, 0.05), rgba(32, 168, 123, 0.08)),
    white;
}

.problem-card,
.faq-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.problem-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.08rem;
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 5px rgba(30, 120, 200, 0.1);
}

.problem-close {
  margin: 24px 0 0;
  color: var(--blue-deep);
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.comparison-card-highlight {
  background:
    linear-gradient(180deg, rgba(30, 120, 200, 0.08), rgba(32, 168, 123, 0.12)),
    white;
}

.calculator-promo-card,
.budget-card,
.budget-summary-card {
  padding: 32px;
}

.calculator-promo-card {
  background:
    linear-gradient(135deg, rgba(30, 120, 200, 0.08), rgba(32, 168, 123, 0.12)),
    white;
}

.budget-free-note {
  margin-top: 18px;
  color: var(--blue-deep);
  font-weight: 700;
}

.budget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

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

.budget-input {
  margin-top: 8px;
}

.budget-section-head {
  margin-bottom: 18px;
}

.budget-summary-card {
  position: sticky;
  top: 120px;
  background:
    linear-gradient(180deg, rgba(30, 120, 200, 0.05), rgba(32, 168, 123, 0.08)),
    white;
}

.budget-summary-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.budget-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 33, 43, 0.08);
}

.budget-summary-result {
  background: linear-gradient(135deg, rgba(30, 120, 200, 0.1), rgba(32, 168, 123, 0.12));
}

.budget-message {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--muted);
}

.budget-message.is-positive {
  background: #e8f8f0;
  color: #125f46;
}

.budget-message.is-negative {
  background: #fff0ee;
  color: #9b3e2d;
}

.budget-actions {
  margin-top: 18px;
}

.section-grid,
.info-grid,
.content-columns,
.booking-grid,
.image-strip,
.assurance-grid,
.plans-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.section-grid,
.info-grid,
.content-columns,
.image-strip,
.assurance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel,
.info-card,
.content-card,
.calendar-card,
.form-card,
.page-intro,
.process-card,
.assurance-card,
.plan-card {
  padding: 32px;
}

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

.service-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

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

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

.image-card {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.image-card-a {
  background-image:
    linear-gradient(180deg, rgba(14, 29, 37, 0.12), rgba(14, 29, 37, 0.64)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80");
}

.image-card-b {
  background-image:
    linear-gradient(180deg, rgba(14, 29, 37, 0.12), rgba(14, 29, 37, 0.64)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80");
}

.image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: white;
}

.image-overlay .panel-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.image-overlay h2 {
  margin: 0;
  max-width: 16ch;
}

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

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

.process-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  border-radius: 999px;
  margin-bottom: 18px;
  padding: 0 14px;
  color: var(--blue-deep);
  background: var(--bg-soft);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

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

.plan-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.plan-card-active {
  background:
    linear-gradient(180deg, rgba(30, 120, 200, 0.04), rgba(32, 168, 123, 0.08)),
    white;
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #0f6d4d;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.plan-badge-soon {
  background: var(--bg-soft);
  color: var(--blue-deep);
}

.plan-price {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.cta-band {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(30, 120, 200, 0.08), rgba(32, 168, 123, 0.12)),
    white;
}

.page-stack,
.booking-layout {
  padding-top: 32px;
}

.booking-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.booking-intro {
  margin-bottom: 8px;
}

.booking-private-note {
  margin-top: 18px;
  color: var(--blue-deep);
  font-weight: 700;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.calendar-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  font-size: 1.1rem;
}

.calendar-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-weekdays {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.calendar-day,
.calendar-empty {
  aspect-ratio: 1;
}

.calendar-day {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.calendar-day:hover {
  border-color: rgba(30, 120, 200, 0.4);
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px rgba(30, 120, 200, 0.25);
}

.calendar-day.is-selected {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.calendar-day.is-past {
  opacity: 0.42;
  cursor: not-allowed;
}

.selected-date {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: grid;
  gap: 4px;
}

.selected-date span,
.form-note {
  color: var(--muted);
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
}

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

.contact-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--green-soft);
}

.contact-box p,
.success-message {
  margin: 6px 0 0;
}

.success-message {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #e8f8f0;
  color: #125f46;
  font-weight: 600;
}

.site-footer {
  margin-top: 36px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.92));
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero,
  .section-grid,
  .info-grid,
  .content-columns,
  .booking-grid,
  .cta-band,
  .image-strip,
  .assurance-grid,
  .plans-grid,
  .process-grid,
  .hook-band,
  .comparison-grid,
  .detail-layout,
  .budget-layout,
  .service-grid,
  .faq-grid,
  .process-grid-three {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .topbar {
    border-radius: 28px;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: center;
  }

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

  .budget-summary-card {
    position: static;
  }
}

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

  .hero-copy,
  .hero-card,
  .feature-panel,
  .info-card,
  .content-card,
  .calendar-card,
  .form-card,
  .page-intro,
  .cta-band,
  .detail-card,
  .detail-side,
  .site-footer {
    padding: 24px;
  }

  .calculator-promo-card,
  .budget-card,
  .budget-summary-card,
  .hook-card,
  .comparison-card,
  .problem-card,
  .faq-card {
    padding: 24px;
  }

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

  h1 {
    font-size: 2.5rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 6px;
  }
}
