:root {
  --bg: #d7f5df;
  --surface: rgba(246, 251, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #10263a;
  --muted: #385975;
  --line: rgba(16, 38, 58, 0.12);
  --lime: #75df38;
  --teal: #2088e5;
  --orange: #ffd64f;
  --sand: #d8edff;
  --shadow: 0 24px 60px rgba(32, 84, 148, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(193, 255, 214, 0.95), transparent 26%),
    radial-gradient(circle at top right, rgba(82, 145, 255, 0.34), transparent 34%),
    linear-gradient(120deg, #d8ffe3 0%, #b7e6f5 48%, #8fb2ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 38, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 58, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  position: sticky;
  top: 16px;
  z-index: 10;
  background: rgba(244, 250, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 38, 58, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(32, 84, 148, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #0c7bdc, #2b9cff);
  font-weight: 700;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-solid {
  color: #ffffff;
  background: linear-gradient(135deg, #0d7dde, #2aa1ff);
  box-shadow: 0 10px 24px rgba(32, 136, 229, 0.35);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(16, 38, 58, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 60px 0 30px;
}

.hero-copy,
.hero-card,
.feature-strip,
.service-card,
.process-grid article,
.plan-card,
.contact-panel,
.booking-form,
.request-preview {
  background: var(--surface);
  border: 1px solid rgba(16, 38, 58, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 223, 56, 0.45), transparent 70%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  color: var(--teal);
  margin: 0 0 18px;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  max-width: 9ch;
}

.hero h1 span {
  color: #0d7dde;
}

.hero-text,
.section-heading p,
.contact-panel p,
.service-card p,
.process-grid p,
.plan-card p,
.preview-intro {
  color: var(--muted);
  line-height: 1.65;
}

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

.hero-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.hero-pricing article {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 38, 58, 0.08);
}

.hero-pricing span {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0d7dde;
}

.hero-pricing p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 500;
}

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

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 214, 79, 0.2);
}

.hero-card {
  padding: 28px;
  border-radius: calc(var(--radius-lg) + 4px);
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

.hero-card-top p,
.preview-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 700;
}

.hero-card-top strong {
  font-size: 1.35rem;
  line-height: 1.25;
}

.brand-showcase {
  align-content: start;
  gap: 18px;
}

.brand-image {
  width: 100%;
  display: block;
  margin-top: -8px;
  border-radius: 22px;
  border: 1px solid rgba(16, 38, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.metric-grid article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid rgba(21, 33, 25, 0.06);
}

.metric-grid span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-grid p,
.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-note {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(117, 223, 56, 0.18), rgba(255, 255, 255, 0.72));
}

.mission-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 38, 58, 0.08);
}

.mission-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.feature-strip article {
  padding: 14px;
}

.feature-strip h2,
.service-card h3,
.process-grid h3,
.plan-card h3,
.request-preview h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.services-grid,
.process-grid,
.plan-grid,
.schedule-layout {
  display: grid;
  gap: 22px;
}

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

.service-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.6;
}

.accent-lime::after {
  background: radial-gradient(circle, rgba(117, 223, 56, 0.8), transparent 70%);
}

.accent-blue::after {
  background: radial-gradient(circle, rgba(32, 136, 229, 0.7), transparent 70%);
}

.accent-orange::after {
  background: radial-gradient(circle, rgba(255, 214, 79, 0.8), transparent 70%);
}

.process-section {
  position: relative;
}

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

.process-grid article {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.process-grid span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(117, 223, 56, 0.2);
  font-weight: 700;
}

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

.plan-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.featured-plan {
  background:
    linear-gradient(180deg, rgba(117, 223, 56, 0.16), rgba(246, 251, 255, 0.92)),
    var(--surface);
  transform: translateY(-8px);
}

.plan-tag {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.plan-select {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  background: var(--sand);
  cursor: pointer;
}

.plan-select:hover,
.plan-select:focus-visible {
  background: #9ce95c;
}

.contact-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 360px;
}

.contact-badges span {
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid rgba(21, 33, 25, 0.08);
  font-weight: 500;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-links a {
  color: #0d7dde;
  text-decoration: none;
  font-weight: 700;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  text-decoration: underline;
}

.payment-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 38, 58, 0.08);
}

.payment-note strong {
  display: block;
  margin-bottom: 6px;
}

.payment-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-preview {
  width: min(100%, 360px);
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(16, 38, 58, 0.08);
  box-shadow: 0 18px 36px rgba(32, 84, 148, 0.12);
}

.plan-price-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-price-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 38, 58, 0.08);
  font-weight: 700;
}

.schedule-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.booking-form,
.request-preview {
  padding: 28px;
  border-radius: var(--radius-lg);
}

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

.booking-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 38, 58, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(32, 136, 229, 0.25);
  border-color: var(--teal);
}

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

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: #0d7dde;
  font-weight: 700;
}

.bot-field,
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-preview {
  position: sticky;
  top: 112px;
}

.request-preview pre {
  margin: 18px 0 22px;
  padding: 20px;
  min-height: 360px;
  border-radius: var(--radius-md);
  background: #15283f;
  color: #edf5ff;
  overflow-x: auto;
  white-space: pre-wrap;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
}

.price-preview {
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(216, 237, 255, 0.7);
  border: 1px solid rgba(16, 38, 58, 0.08);
}

.price-preview strong {
  display: block;
  font-size: 2rem;
  color: #0d7dde;
}

.full-link {
  width: 100%;
}

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

.thank-you-card {
  width: min(760px, 100%);
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(16, 38, 58, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.thank-you-card h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
  .topbar,
  .contact-panel {
    border-radius: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-preview {
    width: 100%;
  }

  .nav {
    display: none;
  }

  .hero,
  .services-grid,
  .process-grid,
  .plan-grid,
  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    transform: none;
  }

  .request-preview {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 20px, 100%);
  }

  .topbar {
    padding: 16px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy,
  .hero-card,
  .feature-strip,
  .service-card,
  .process-grid article,
  .plan-card,
  .contact-panel,
  .booking-form,
  .request-preview {
    border-radius: 24px;
  }

  .hero-copy,
  .hero-card,
  .booking-form,
  .request-preview,
  .contact-panel,
  .thank-you-card {
    padding: 22px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-pricing {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: none;
  }
}
