/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2e4a;
  --blue:    #2e5599;
  --accent:  #3a7bd5;
  --light:   #f4f7fb;
  --border:  #dde4ef;
  --text:    #1c2b3a;
  --muted:   #5a6b7e;
  --white:   #ffffff;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1 { font-size: 2.6rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 2rem; }
h3 { font-size: 1.2rem; font-weight: 600; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue); text-decoration: none; }

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--blue); text-decoration: none; }

/* ── Nav ── */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav ul a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
nav ul a:hover { color: var(--accent); text-decoration: none; }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  text-align: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.subhead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ── Who This Is For ── */
.for-who {
  background: var(--light);
  padding: 72px 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card-simple {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.card-simple .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card-simple p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Services ── */
.services {
  padding: 80px 0;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.tier {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  text-align: right;
}

.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.service-desc {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.deliverables {
  list-style: none;
  margin-bottom: 16px;
}

.deliverables li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 0.93rem;
  color: var(--text);
}

.deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.ideal {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

/* ── Add-ons ── */
.addons {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 8px;
}

.addons h3 {
  margin-bottom: 20px;
  color: var(--navy);
}

.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.addon-item:last-child { border-bottom: none; }

.addon-item span:last-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

/* ── About ── */
.about {
  background: var(--light);
  padding: 80px 0;
}

.about-inner {
  max-width: 720px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.97rem;
}

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.certs span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Contact ── */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact h2 { margin-bottom: 12px; }

.contact p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .service-header { flex-direction: column; }
  .price { text-align: left; }
  nav ul { gap: 16px; }
  nav ul li:not(:last-child) { display: none; }
}
