:root {
  --ink: #132a34;
  --muted: #61727a;
  --line: #dce5e6;
  --surface: #ffffff;
  --soft: #f2f7f6;
  --brand: #0d6b68;
  --brand-dark: #084c4b;
  --accent: #d8eee8;
  --shadow: 0 24px 70px rgba(24, 58, 62, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(251, 253, 252, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 229, 230, .8);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand span:last-child { display: grid; line-height: 1.2; }
.brand strong { font-size: 15px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 11px; }
nav { display: flex; align-items: center; gap: 18px; color: #425961; font-size: 14px; font-weight: 600; }
nav > a:not(.button) { white-space: nowrap; }
nav > a:not(.button):hover { color: var(--brand); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--brand); color: white; box-shadow: 0 1px 2px rgba(8, 76, 75, .18); }
.button.primary:hover { background: var(--brand-dark); box-shadow: 0 10px 24px rgba(8, 76, 75, .28); }
.button.ghost { border-color: var(--line); background: white; }
.button.ghost:hover { border-color: var(--brand); }
.button.large { min-height: 50px; padding: 0 24px; }
.button.text { padding-left: 4px; color: var(--brand); }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 680px;
  padding: 84px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: 70px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -140px;
  right: -220px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 107, 104, .14), rgba(13, 107, 104, 0) 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -180px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 238, 232, .8), rgba(216, 238, 232, 0) 70%);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(46px, 6vw, 76px); }
h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 48px); }
h3 { margin-bottom: 12px; font-size: 22px; }
.hero-lead { max-width: 680px; margin: 0; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 32px; }
.hero-actions .button.text { white-space: normal; }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.trust-row span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: #50666e; background: white; font-size: 12px; font-weight: 650; }

.hero-panel {
  border: 1px solid #dbe6e5;
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-panel:hover { transform: translateY(-3px); box-shadow: 0 30px 80px rgba(24, 58, 62, .16); }
.panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.panel-head span { color: var(--muted); font-size: 13px; }
.panel-head strong { font-size: 14px; }
.mini-flow { list-style: none; padding: 8px 0; margin: 0; }
.mini-flow li { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; padding: 15px 0; border-bottom: 1px solid #edf2f2; }
.mini-flow i { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: #eef3f3; color: #64777e; font-style: normal; font-size: 12px; font-weight: 800; }
.mini-flow div { display: grid; }
.mini-flow div strong { font-size: 14px; }
.mini-flow div span { color: var(--muted); font-size: 12px; }
.mini-flow b { color: #85959a; font-size: 11px; }
.mini-flow li.complete i { background: var(--accent); color: var(--brand); }
.mini-flow li.complete b, .mini-flow li.active b { color: var(--brand); }
.mini-flow li.active { margin: 0 -13px; padding: 15px 13px; border-radius: 13px; background: var(--soft); }
.preview-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 15px; }
.preview-kpis div { padding: 14px 12px; border-radius: 12px; background: #f4f8f7; }
.preview-kpis span { display: block; min-height: 34px; color: var(--muted); font-size: 10px; }
.preview-kpis strong { color: var(--brand); font-size: 18px; }

.section { padding: 100px max(20px, calc((100% - 1180px) / 2)); }
.section-heading { max-width: 760px; margin-bottom: 45px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 17px; }
.section-heading.compact { margin-bottom: 34px; }
.process-section { background: #102f35; color: white; }
.process-section .eyebrow { color: #8bd0c6; }
.process-section .section-heading > p:last-child { color: #b9c9cc; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { min-height: 270px; padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.045); }
.step-number { display: inline-block; margin-bottom: 44px; color: #83c8bf; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.process-grid h3 { font-size: 20px; }
.process-grid p { margin: 0; color: #bdcbce; font-size: 14px; }

.methods-section { background: #f2f7f6; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.method-card { position: relative; padding: 38px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.method-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(24, 58, 62, .1); }
.method-card.featured { border-color: #8cc8bf; box-shadow: 0 18px 45px rgba(33, 92, 88, .09); }
.method-tag { display: inline-block; margin-bottom: 28px; padding: 6px 10px; border-radius: 999px; background: var(--accent); color: var(--brand); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.method-tag.neutral { color: #5a6c72; background: #eef2f2; }
.method-card p { color: var(--muted); }
.method-card ul { margin: 23px 0 0; padding: 0; list-style: none; }
.method-card li { position: relative; padding: 9px 0 9px 24px; border-top: 1px solid #edf1f1; font-size: 14px; }
.method-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

.guide-section { display: grid; grid-template-columns: 1fr .86fr; gap: 70px; align-items: center; }
.guide-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.guide-list { margin-top: 28px; }
.guide-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 19px 0; border-top: 1px solid var(--line); }
.guide-list strong { font-size: 14px; }
.guide-list span { color: var(--muted); font-size: 14px; }
.report-preview { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow); }
.report-preview h3 { max-width: 380px; margin-bottom: 30px; font-size: 28px; }
.report-row { display: grid; grid-template-columns: 1.25fr repeat(3, .8fr); gap: 12px; padding: 12px 0; border-bottom: 1px solid #edf1f1; color: var(--muted); font-size: 11px; }
.report-row b { text-align: right; }
.report-row.data { color: #425960; font-size: 12px; }
.report-row.total { color: var(--ink); font-size: 12px; font-weight: 800; }
.report-row.total b:last-child { color: var(--brand); }
.report-note { margin: 22px 0 0; color: var(--muted); font-size: 12px; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: #dcefeb; }
.final-cta div { max-width: 760px; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p:last-child { margin: 0; color: #4f686c; }
footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }

@media (max-width: 980px) {
  nav > a:not(.button), nav .ghost { display: none; }
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 65px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .guide-section { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { width: min(100% - 28px, 1180px); }
  .brand small { display: none; }
  nav { gap: 8px; }
  .button { padding: 0 13px; }
  .hero { width: min(100% - 28px, 1180px); padding: 50px 0; }
  h1 { font-size: 45px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-panel { padding: 18px; }
  .preview-kpis { grid-template-columns: 1fr; }
  .section { padding: 72px 18px; }
  .process-grid, .method-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .step-number { margin-bottom: 24px; }
  .method-card { padding: 28px; }
  .guide-list div { grid-template-columns: 1fr; gap: 5px; }
  .report-row { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 6px; font-size: 9px; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  footer { width: min(100% - 28px, 1180px); }
}

/* Financial Control interest capture — sits under the roadmap grid.
   The only path on the site for an interested hotel to make contact
   without first registering an account. */
.control-interest {
  margin-top: 2rem;
  padding: 1.75rem;
  border: 1px solid rgba(31, 53, 85, 0.16);
  border-left: 4px solid #1f3555;
  border-radius: 12px;
  background: rgba(31, 53, 85, 0.04);
  display: grid;
  gap: 1.25rem;
}
.control-interest h3 { margin: 0.35rem 0 0.6rem; }
.control-interest p { margin: 0; }
.control-interest .hero-actions { margin: 0; }

@media (min-width: 880px) {
  .control-interest {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
  }
}
