:root {
  --navy: #0b2f6b;
  --blue: #1565c0;
  --teal: #4fc3f7;
  --green: #2f9d59;
  --bg: #f5f9ff;
  --card: #ffffff;
  --text: #18314f;
  --muted: #60738e;
  --border: rgba(11, 47, 107, 0.1);
  --shadow: 0 18px 40px rgba(12, 42, 94, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 1.4rem)); margin: 0 auto; }
.topbar {
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}
.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.header-brand {
  display: flex;
  justify-content: center;
  padding: 16px 0 10px;
}
.brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.brand-logo {
  width: 320px;
  max-width: min(90vw, 320px);
  height: auto;
}
.brand-subtitle {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 14px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.cta-button,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.button.secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: none;
}
.hero,
.section { padding: 68px 0; }
.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.page-grid {
  display: grid;
  gap: 24px;
}
.hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.page-grid { grid-template-columns: repeat(3, 1fr); }
.pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(79,195,247,0.14);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 18px 0;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 14px;
}
h3 { color: var(--navy); margin-bottom: 10px; }
.lead,
.section-intro,
.muted { color: var(--muted); }
.card,
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(79,195,247,0.14));
}
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: rgba(47,157,89,0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-top: 2px;
}
.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.price small { font-size: 0.95rem; color: var(--muted); }
.service-card,
.plan-card,
.page-card { position: relative; overflow: hidden; }
.service-card::before,
.plan-card::before,
.page-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.page-card h3 { margin-top: 12px; }
.split-hero {
  background: linear-gradient(140deg, rgba(11,47,107,0.98), rgba(21,101,192,0.92));
  color: #fff;
}
.split-hero h2,
.split-hero h3,
.split-hero p,
.split-hero li { color: #fff; }
.contact-stack { display: grid; gap: 14px; }
.contact-chip {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 700;
}
.site-footer {
  padding: 28px 0 48px;
  color: var(--muted);
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.cta-band {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.calendly-frame {
  width: 100%;
  min-height: 700px;
  border: 0;
  border-radius: 22px;
  background: #fff;
}
.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(79,195,247,0.08);
  border: 1px solid var(--border);
  color: var(--muted);
}
@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .page-grid,
  .nav-row { grid-template-columns: 1fr; }
  .hero-grid,
  .page-grid,
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .nav-row {
    display: grid;
    justify-items: center;
  }
  .nav-links { justify-content: center; }
}
@media (max-width: 640px) {
  .hero,
  .section { padding: 54px 0; }
  h1 { font-size: 2.35rem; }
  .card,
  .panel { padding: 24px; }
  .brand-logo { max-width: 260px; }
  .cta-button { width: 100%; }
}

@media (max-width: 1100px) {
  .page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .site-header { position: static; }
  .nav-links { gap: 14px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1rem, 100% - 1rem); }
  .topbar { font-size: 0.82rem; padding: 9px 12px; }
  .header-brand { padding: 12px 0 8px; }
  .brand-subtitle { font-size: 0.82rem; padding: 0 10px; }
  .nav-row { gap: 12px; padding-bottom: 12px; }
  .nav-links { gap: 10px 14px; font-size: 0.95rem; }
  .nav-links a { padding: 4px 0; }
  .cta-button,
  .button,
  .button.secondary { width: 100%; }
  .cta-band { flex-direction: column; }
  .calendly-frame { min-height: 620px; }
  .page-grid { grid-template-columns: 1fr; }
}
