:root {
  --graphite: #15191d;
  --steel: #5e6872;
  --silver: #eef1f2;
  --white: #fafaf7;
  --vermilion: #e3432f;
  --teal: #0e7c78;
  --amber: #d59b2d;
  --blue: #2f6f9f;
  --line: rgba(21, 25, 29, .12);
  --shadow: 0 24px 70px rgba(21, 25, 29, .16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@keyframes aspFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(18px, -12px, 0) rotate(-2deg); }
}
@keyframes aspPulse {
  0%, 100% { opacity: .72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes aspCardLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(227, 67, 47, .15), transparent 25%),
    radial-gradient(circle at 82% 6%, rgba(14, 124, 120, .16), transparent 28%),
    linear-gradient(180deg, #fafaf7 0%, #eef1f2 58%, #fafaf7 100%);
  color: var(--graphite);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: Sora, Inter, sans-serif; line-height: 1.08; letter-spacing: 0; margin: 0 0 18px; }
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: 20px; }
p { margin: 0 0 18px; color: rgba(21, 25, 29, .76); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(250, 250, 247, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Sora, sans-serif; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  font-weight: 800;
}
.brand em { display: block; color: var(--vermilion); font-style: normal; font-size: 12px; margin-top: -3px; }
.primary-nav { display: flex; gap: 18px; color: var(--steel); font-weight: 700; font-size: 14px; }
.primary-nav a:hover { color: var(--graphite); }
.header-actions, .hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); padding: 10px 12px; border-radius: var(--radius); font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}
.btn-primary { background: var(--vermilion); color: white; box-shadow: 0 12px 28px rgba(227, 67, 47, .22); }
.btn-primary { background: linear-gradient(135deg, #e3432f, #f36b45); }
.btn-secondary { border-color: var(--line); background: var(--white); }
.ghost-link { display: inline-flex; align-items: center; gap: 8px; color: var(--steel); font-weight: 800; font-size: 14px; }
.asp-icon { width: 20px; height: 20px; flex: 0 0 auto; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 104px) clamp(18px, 4vw, 56px) 54px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(115deg, rgba(250,250,247,.98) 0%, rgba(250,250,247,.9) 42%, rgba(238,241,242,.35) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,67,47,.2), transparent 68%);
  pointer-events: none;
  animation: aspPulse 7s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 54vw;
  height: 150px;
  left: 8vw;
  bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14,124,120,.13), rgba(213,155,45,.13), rgba(227,67,47,.1));
  transform: rotate(-4deg);
  pointer-events: none;
  animation: aspFloat 9s ease-in-out infinite;
}
.hero-copy { max-width: 760px; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
  text-transform: none;
  margin-bottom: 14px;
}
.hero-text { font-size: clamp(18px, 2vw, 22px); max-width: 690px; }
.hero-media {
  min-height: 620px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
  outline: 1px solid rgba(255,255,255,.55);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(21,25,29,.12), rgba(21,25,29,.48));
  border-radius: inherit;
  z-index: -1;
}
.booking-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  background: rgba(250,250,247,.94);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.68);
  animation: aspCardLift 6s ease-in-out infinite;
}
.status-dot { display: inline-block; width: 10px; height: 10px; background: var(--teal); border-radius: 50%; margin-right: 8px; }
.trust-strip {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-weight: 800;
  font-size: 13px;
}

.section, .split-section, .page-hero, .final-cta {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
}
.choice-section {
  padding: 34px clamp(18px, 4vw, 56px) clamp(58px, 8vw, 96px);
  background: linear-gradient(180deg, var(--white), var(--silver));
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.choice-grid a {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(21,25,29,.9), rgba(21,25,29,.5)),
    radial-gradient(circle at top right, rgba(227,67,47,.48), transparent 38%),
    radial-gradient(circle at bottom left, rgba(14,124,120,.32), transparent 38%),
    var(--graphite);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(21,25,29,.14);
  transition: transform .18s ease, box-shadow .18s ease;
}
.choice-grid a::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #83d6cf, #d59b2d, #f36b45);
  opacity: .86;
}
.choice-grid a:hover { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(21,25,29,.22); }
.choice-grid .asp-icon {
  width: 46px;
  height: 46px;
  color: #fff;
  margin-bottom: auto;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.choice-grid p { color: rgba(255,255,255,.76); margin-bottom: 0; }
.section-head { max-width: 850px; margin-bottom: 34px; }
.section-head p { max-width: 680px; font-size: 18px; }
.band { background: var(--silver); }
.narrow { max-width: 920px; margin: 0 auto; }
.page-hero { background: var(--graphite); color: white; }
.page-hero p { color: rgba(255,255,255,.74); max-width: 800px; font-size: 19px; }
.page-hero .eyebrow { color: #83d6cf; }

.feature-grid, .service-grid, .content-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card, .service-tile, .content-cards article, .service-detail, .form-panel {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
}
.feature-card .asp-icon, .service-tile .asp-icon { color: var(--vermilion); width: 28px; height: 28px; margin-bottom: 18px; }
.service-tile { display: flex; flex-direction: column; min-height: 190px; transition: transform .18s ease, box-shadow .18s ease; }
.service-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(21,25,29,.1); }
.service-tile strong { font-family: Sora, sans-serif; font-size: 18px; margin-bottom: 8px; }
.service-tile span { color: var(--steel); }
.detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-detail ul, .check-list { padding-left: 20px; color: var(--steel); }
.text-link, .content-cards a { font-weight: 900; color: var(--vermilion); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .65fr);
  gap: clamp(24px, 6vw, 82px);
  align-items: start;
}
.form-panel { box-shadow: var(--shadow); background: white; }
.asp-form h2 { font-size: 26px; }
.asp-hp { display: none !important; }
.asp-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--graphite);
  font-weight: 900;
  font-size: 14px;
}
.asp-form input,
.asp-form select,
.asp-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  min-height: 46px;
  padding: 11px 12px;
  color: var(--graphite);
  font: inherit;
}
.asp-form textarea { resize: vertical; }
.asp-form input:focus,
.asp-form select:focus,
.asp-form textarea:focus {
  outline: 3px solid rgba(14,124,120,.16);
  border-color: var(--teal);
}
.asp-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.asp-consent {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  color: var(--steel) !important;
  font-weight: 700 !important;
}
.asp-consent input { min-height: auto; margin-top: 4px; }
body:has(.asp-form) .page-hero + .split-section { padding-top: 52px; }

.dashboard-preview {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.dashboard-preview aside {
  background: var(--graphite);
  color: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-preview aside span { color: rgba(255,255,255,.62); padding: 9px 10px; border-radius: var(--radius); }
.dashboard-preview aside .active { background: rgba(255,255,255,.1); color: white; }
.dash-main { padding: 22px; overflow: auto; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.metric-row div {
  background: var(--silver);
  border-radius: var(--radius);
  padding: 14px;
}
.metric-row small { display: block; color: var(--steel); font-weight: 800; }
.metric-row b { font-size: 32px; font-family: Sora, sans-serif; }
.lead-table { min-width: 620px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.lead-table > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr .8fr;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
.lead-table > div:first-child { background: var(--graphite); color: white; }
.lead-table mark { justify-self: start; background: rgba(213,155,45,.18); color: #7a5300; padding: 4px 8px; border-radius: 999px; font-weight: 900; }
.lead-table mark.good { background: rgba(14,124,120,.14); color: var(--teal); }

.person-card .avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--graphite);
  color: white;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}
.photo-card {
  min-height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.service-photo { min-height: 280px; margin-bottom: 16px; }
.service-inline-form { box-shadow: none; }
.footer-logo-img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.14);
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tool-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: white;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.tool-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(14,124,120,.12);
  color: var(--teal);
  margin-bottom: 18px;
}
.tool-card small {
  display: block;
  color: var(--steel);
  font-weight: 800;
  margin: auto 0 16px;
}
.legal-stack h2 { margin-top: 34px; }
.review-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--silver);
  margin-bottom: 22px;
}
.qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
  min-width: 230px;
}
.qr-card img {
  width: 180px;
  height: 180px;
  display: block;
}
.qr-card span {
  color: var(--steel);
  font-weight: 900;
  font-size: 13px;
}
.final-cta { background: var(--graphite); color: white; text-align: center; }
.final-cta p { color: rgba(255,255,255,.72); }
.hero-actions.center { justify-content: center; }
.site-footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(227,67,47,.16), transparent 30%),
    radial-gradient(circle at 10% 12%, rgba(14,124,120,.16), transparent 34%),
    var(--graphite);
  color: white;
  padding: 0 clamp(18px, 4vw, 56px) 28px;
}
.site-footer p,
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: white; }
.footer-cta {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(38px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta h2 {
  max-width: 900px;
  color: white;
  font-size: clamp(30px, 4vw, 56px);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, .7fr));
  gap: clamp(22px, 4vw, 54px);
  padding: 38px 0 28px;
}
.footer-grid h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
  font-weight: 800;
}
.footer-brand { margin-bottom: 12px; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
}
.footer-bottom span:last-child {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dark-showcase {
  background:
    linear-gradient(135deg, rgba(21,25,29,.96), rgba(21,25,29,.88)),
    radial-gradient(circle at 20% 0%, rgba(14,124,120,.25), transparent 38%);
  color: white;
}
.dark-showcase p,
.dark-showcase .section-head p { color: rgba(255,255,255,.72); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.showcase-grid article {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.showcase-grid span {
  color: var(--amber);
  font-family: Sora, sans-serif;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: auto;
}

.mobile-action-bar { display: none; }
.service-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
}
.assistant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  background: var(--graphite);
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(21,25,29,.24);
  cursor: pointer;
}
.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(330px, calc(100vw - 36px));
  border-radius: var(--radius);
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.assistant-panel p { margin-bottom: 12px; }
.assistant-panel a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
  color: var(--vermilion);
}
.success-banner {
  margin: 14px clamp(18px, 4vw, 56px) 0;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: rgba(14,124,120,.12);
  color: var(--teal);
  font-weight: 900;
  border: 1px solid rgba(14,124,120,.2);
}

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 430px; }
  .feature-grid, .service-grid, .content-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid, .showcase-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .primary-nav { display: none; position: absolute; left: 18px; right: 18px; top: 74px; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; flex-direction: column; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header-actions .ghost-link { display: none; }
  .footer-cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .site-header { padding: 12px 16px; }
  .brand span:last-child { display: none; }
  .hero { padding-top: 34px; min-height: auto; }
  .hero-media { min-height: 330px; transform: none; }
  .feature-grid, .service-grid, .content-cards, .detailed { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .dashboard-preview { grid-template-columns: 1fr; }
  .dashboard-preview aside { flex-direction: row; overflow-x: auto; }
  .metric-row { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .asp-form-row { grid-template-columns: 1fr; }
  .review-hero { flex-direction: column; align-items: flex-start; }
  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--graphite);
    color: white;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .service-assistant { right: 12px; bottom: 84px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-action-bar a { display: grid; place-items: center; gap: 2px; padding: 8px 4px; font-size: 12px; font-weight: 800; }
  .mobile-action-bar .asp-icon { width: 19px; height: 19px; color: #fff; }
}
