﻿:root {
  --ink: #111827;
  --muted: #5b6473;
  --line: #d8e2ee;
  --paper: #ffffff;
  --soft: #f5f9fc;
  --blue: #006ee6;
  --blue-dark: #053a8a;
  --cyan: #12b8ff;
  --gold: #f5a623;
  --green: #14a36f;
  --shadow: 0 20px 50px rgba(8, 33, 74, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 8px; border: 2px solid var(--blue); }
nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
nav a { padding: 9px 12px; color: #243244; font-weight: 700; font-size: 14px; border-radius: 6px; }
nav a:hover { background: #e8f4ff; color: var(--blue-dark); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  min-height: calc(100vh - 87px);
  background: radial-gradient(circle at 20% 15%, rgba(18,184,255,.28), transparent 34%), linear-gradient(135deg, #041b4f 0%, #006ee6 44%, #001f68 100%);
  color: white;
  overflow: hidden;
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: clamp(14px, 2vw, 26px);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
}
.hero-copy {
  align-self: center;
  padding: clamp(30px, 6vw, 72px);
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0; font-weight: 800; color: var(--gold); font-size: 13px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(42px, 7vw, 78px); line-height: .95; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.2; }
.lead { max-width: 620px; margin: 22px 0 0; font-size: 19px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
}
.button.primary { color: #06172f; background: linear-gradient(135deg, #ffd36a, var(--gold)); box-shadow: 0 14px 30px rgba(0,0,0,.24); }
.button.secondary { color: white; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.12); }
.button.full { width: 100%; border: 0; }
.quick-contact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; color: rgba(255,255,255,.9); font-weight: 700; }
.quick-contact a,
.contact-stack a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.contact-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
}
.contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-contact .contact-icon {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.38);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip div { padding: 22px clamp(20px, 4vw, 56px); background: white; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); font-size: 14px; }

.mission-section {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(320px, 1.3fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: white;
  border-bottom: 1px solid var(--line);
}
.mission-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}
.mission-heading .eyebrow,
.feedback-section .eyebrow {
  color: var(--blue);
}
.mission-copy {
  display: grid;
  gap: 18px;
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 4px solid var(--cyan);
}
.mission-copy p {
  margin: 0;
  color: #3f4b5d;
  font-size: 17px;
}

.section { padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px); }
.section-heading { max-width: 780px; margin-bottom: 30px; }
.section-heading .eyebrow, .section .eyebrow, .booking-band .eyebrow { color: var(--blue); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card, .booking-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 33, 74, .08);
}
.service-card { padding: 24px; }
.service-card p, .booking-copy p { color: var(--muted); margin: 0; }
.service-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #243244;
}
.service-card li::marker {
  color: var(--blue);
}
.service-price {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px !important;
  padding: 6px 9px;
  border-radius: 6px;
  background: #e8f4ff;
  color: var(--blue-dark) !important;
  font-weight: 800;
  font-size: 13px;
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--blue);
  border-radius: 6px;
  font-size: 25px;
  font-weight: 800;
}

.service-details {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  color: white;
  background: var(--blue-dark);
  border-left: 6px solid var(--gold);
  border-radius: 6px;
}
.pricing-note strong {
  color: #ffd36a;
  font-size: 17px;
  white-space: nowrap;
}
.pricing-note p {
  margin: 0;
  color: rgba(255,255,255,.9);
}

.detail-panel {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 33, 74, .08);
}

.addon-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.addon-list span,
.service-promises span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 6px;
  background: #f5f9fc;
  color: #243244;
  font-weight: 700;
}

.addon-list strong {
  color: var(--blue-dark);
  white-space: nowrap;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.membership-grid div {
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  border: 1px solid var(--line);
}

.membership-grid h4 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 17px;
}

.membership-grid p {
  margin: 0;
  color: var(--muted);
}

.service-promises {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-promises span {
  justify-content: center;
  text-align: center;
  background: var(--blue-dark);
  color: white;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-copy { align-self: start; position: sticky; top: 112px; }
.contact-stack { display: grid; gap: 10px; margin-top: 26px; }
.contact-stack a { padding: 14px 16px; border-radius: 6px; background: #e8f4ff; color: var(--blue-dark); font-weight: 800; }
.booking-form,
.feedback-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}
.booking-form label,
.feedback-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: #243244;
}
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 14px; text-align: center; }
.hidden-field { display: none; }
input, select, textarea {
  width: 100%;
  border: 1px solid #b8c7d8;
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.feedback-section {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: #eef7ff;
  border-top: 1px solid var(--line);
}
.feedback-copy p {
  max-width: 620px;
  color: var(--muted);
}
.feedback-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 33, 74, .08);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #06172f;
  color: white;
}
.footer span { display: block; color: rgba(255,255,255,.72); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; font-weight: 800; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: radial-gradient(circle at 22% 20%, rgba(18,184,255,.24), transparent 34%), linear-gradient(135deg, #041b4f 0%, #006ee6 48%, #06172f 100%);
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card img {
  width: min(360px, 100%);
  margin: 0 auto 24px;
  border-radius: 8px;
}

.thanks-card p {
  margin: 16px auto 0;
  max-width: 560px;
  color: var(--muted);
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.thanks-actions .button.secondary {
  color: var(--blue-dark);
  border-color: var(--blue);
  background: white;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; }
  .mission-section { grid-template-columns: 1fr; }
  .mission-heading { position: static; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addon-list, .membership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-promises { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-band, .feedback-section { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
}

@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .brand img { width: 48px; height: 48px; }
  .hero { min-height: auto; }
  .hero-media { min-height: 240px; }
  .hero-copy { padding: 28px 18px 42px; }
  .trust-strip { grid-template-columns: 1fr; }
  .mission-copy { padding-left: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .pricing-note { grid-template-columns: 1fr; }
  .pricing-note strong { white-space: normal; }
  .addon-list, .membership-grid, .service-promises { grid-template-columns: 1fr; }
  .addon-list span { align-items: flex-start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
