:root {
  --navy: #132c46;
  --navy-2: #21435f;
  --teal: #119da6;
  --teal-dark: #0b7f89;
  --aqua: #44c6c2;
  --green: #58b86b;
  --orange: #ff7a00;
  --orange-dark: #df6300;
  --yellow: #ffc34d;
  --cream: #fff8ed;
  --cream-2: #fff1dc;
  --paper: #ffffff;
  --canvas: #fffaf3;
  --ink: #183047;
  --muted: #66788a;
  --line: #dfe8eb;
  --amber: #e49a19;
  --red: #bd4545;
  --shadow: 0 18px 48px rgba(19, 44, 70, .09);
  --shadow-soft: 0 8px 24px rgba(19, 44, 70, .07);
  --radius: 22px;
  --radius-sm: 14px;
  font-family: "Nunito", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 7%, rgba(68,198,194,.12), transparent 26rem),
    radial-gradient(circle at 95% 13%, rgba(255,195,77,.17), transparent 22rem),
    var(--canvas);
}
a { color: var(--teal-dark); }
img { max-width: 100%; }

.site-header {
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(19,44,70,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  min-width: 190px;
}
.brand-logo { display: block; width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.main-nav a, .link-button {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: .96rem;
}
.main-nav a:hover, .link-button:hover { color: var(--orange); }
.link-button { border: 0; background: none; padding: 0; font: inherit; cursor: pointer; }
.inline-form { display: inline; }

.container { width: min(1180px, 92vw); margin: 42px auto 76px; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 52px;
  align-items: center;
  padding: 54px 0 62px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -14%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(17,157,166,.08);
  z-index: -1;
}
h1 {
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: .22em 0;
  font-weight: 900;
}
h2 { color: var(--navy); letter-spacing: -.02em; }
h3 { color: var(--navy); }
.lead { font-size: 1.2rem; line-height: 1.65; color: var(--muted); max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  background: rgba(17,157,166,.10);
  padding: 7px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 900;
  font-size: .77rem;
}
.hero-highlight { color: var(--teal-dark); }
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}
.hero-note::before { content: "✓"; display:grid; place-items:center; width:24px; height:24px; border-radius:50%; color:white; background:var(--green); font-size:.82rem; }

.card, .status-preview {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(19,44,70,.10);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.card { transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(17,157,166,.22); }
.status-preview {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px;
}
.status-preview::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -62px;
  top: -68px;
  border-radius: 50%;
  background: var(--cream-2);
}
.status-preview::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  left: -50px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(68,198,194,.12);
}
.progress-ring {
  margin: 18px auto;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 15px solid #daf0e0;
  border-top-color: var(--green);
  border-right-color: var(--green);
  color: var(--navy);
  background: white;
  font-size: 2rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(19,44,70,.04);
}
.clean-list { list-style: none; padding: 0; text-align: left; line-height: 2.05; position:relative; z-index:1; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 10px; }
.green { background: var(--green); } .amber { background: var(--amber); } .red { background: var(--red); }

.feature-grid, .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid .card:nth-child(1) { border-top: 5px solid var(--teal); }
.feature-grid .card:nth-child(2) { border-top: 5px solid var(--orange); }
.feature-grid .card:nth-child(3) { border-top: 5px solid var(--green); }
.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--cream-2);
  color: var(--orange-dark);
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--teal); color: white; box-shadow: 0 8px 18px rgba(17,157,166,.20); }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { background: white; color: var(--navy); border-color: #cbd9df; }
.button.secondary:hover { border-color: var(--orange); color: var(--orange-dark); }
.button.danger { background: var(--red); color: white; }
.button.small { min-height: 35px; padding: 0 12px; font-size: .9rem; }

.messages { width: min(1180px,92vw); margin: 20px auto 0; }
.message { padding: 14px 16px; border-radius: 14px; background: white; border: 1px solid var(--line); box-shadow:var(--shadow-soft); }
.message-success { border-left: 5px solid var(--green); }
.message-error { border-left: 5px solid var(--red); }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 4vw;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #dfe9ef;
  background: var(--navy);
}
.footer-brand { display:flex; align-items:center; gap:12px; font-weight:800; }
.footer-mark { width: 36px; height:36px; }

.narrow { max-width: 680px; margin: 0 auto; }
form .field { display: grid; gap: 6px; margin-bottom: 16px; }
label { font-weight: 850; color: var(--navy); }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b9c9d1;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 4px solid rgba(17,157,166,.14); border-color: var(--teal); }
.helptext { color: var(--muted); font-size: .88rem; }
.errorlist { color: var(--red); }
.table-wrap { overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow:var(--shadow-soft); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; background:#fbfdfd; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #e9f0f3; color:var(--navy-2); font-size: .81rem; font-weight: 850; }
.badge.ok { background: #dff3e4; color: #27723c; }
.badge.pending { background: #fff0cf; color: #8a5b08; }
.badge.problem { background: #fae0e0; color: #872525; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 20px 0; }
.stat { background: white; border: 1px solid var(--line); border-radius: 17px; padding: 18px; box-shadow:var(--shadow-soft); }
.stat strong { display: block; font-size: 1.8rem; color:var(--navy); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.muted { color: var(--muted); }
.actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.price { color:var(--navy); font-size:1.28rem; font-weight:950; }

@media (max-width: 820px) {
  .hero, .split { grid-template-columns: 1fr; }
  .feature-grid, .grid, .stat-grid { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; padding-top: 12px; padding-bottom: 12px; }
  .brand-logo { width: 165px; }
  .main-nav { justify-content: flex-end; gap: 12px; }
  .site-footer { flex-direction: column; align-items:flex-start; }
  .container { margin-top: 28px; }
}

@media (max-width: 560px) {
  .site-header { position: static; flex-direction: column; }
  .main-nav { width:100%; justify-content:flex-start; padding-bottom:4px; }
  .hero { padding-top: 26px; }
  .status-preview { padding:22px; }
}
