:root {
  --navy: #1f3a5f;
  --accent: #2b5fa8;
  --accent-soft: #eaf1fb;
  --ink: #1a2432;
  --body: #495568;
  --muted: #8a94a6;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --border: #e4e9f2;
  --radius: 12px;
  --maxw: 1080px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { color: var(--ink); font-weight: 600; line-height: 1.2; margin: 0; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.05rem; }
p { margin: 0; }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: #17304f; }
.btn--primary:active { transform: scale(.98); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--muted); background: var(--bg-soft); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--bg-soft); border: 1px solid var(--border); }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.brand__domain { font-size: 0.75rem; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { color: var(--body); font-size: 0.93rem; font-weight: 500; }
.nav__links a:hover { color: var(--ink); }
.nav__links .btn { padding: 8px 16px; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--bg-soft), #fff); padding: 84px 0 64px; text-align: center; }
.eyebrow { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }
.hero h1 { max-width: 620px; margin: 0 auto 18px; }
.lede { max-width: 560px; margin: 0 auto 30px; font-size: 1.12rem; color: var(--body); }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Trusted */
.trusted { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trusted__label { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.trusted__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.trusted__list li { background: var(--bg-soft); border: 1px solid var(--border); color: var(--body); font-size: 0.85rem; font-weight: 500; padding: 6px 14px; border-radius: 20px; }

/* Gap strip */
.gap-strip { padding: 48px 0; text-align: center; }
.gap-strip p { max-width: 620px; margin: 0 auto; font-size: 1.15rem; color: var(--body); }

/* Section basics */
.section-sub { color: var(--muted); margin: 6px 0 0; }

/* Services */
.services { padding: 56px 0; background: var(--bg-soft); }
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 30px; }
.card { flex: 1 1 300px; max-width: 360px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); margin-bottom: 14px; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--body); font-size: 0.95rem; }

/* About */
.about { padding: 64px 0; }
.about__inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about__photo-wrap { flex-shrink: 0; }
.about__photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; background: var(--bg-soft); border: 1px solid var(--border); }
.about__body { flex: 1; min-width: 280px; }
.about__body h2 { margin-bottom: 14px; }
.about__body p { color: var(--body); margin-bottom: 22px; }
.stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 20px; }
.stat__num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.stat__label { font-size: 0.82rem; color: var(--muted); }

/* Promise */
.promise { padding: 48px 0; }
.promise__inner { display: flex; gap: 20px; align-items: flex-start; background: var(--accent-soft); border-radius: 16px; padding: 32px; }
.promise__icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: #fff; color: var(--accent); }
.promise h2 { margin-bottom: 8px; }
.promise p { color: var(--body); }

/* Pricing */
.pricing { padding: 64px 0; background: var(--bg-soft); }
.payg { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin: 30px 0 20px; }
.payg h3 { margin-bottom: 2px; }
.payg p { color: var(--body); font-size: 0.95rem; }
.price { white-space: nowrap; }
.price__num { font-size: 1.7rem; font-weight: 700; color: var(--ink); }
.price__unit { font-size: 0.9rem; color: var(--muted); }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.tier { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.tier--featured { border: 2px solid var(--accent); }
.tier__badge { position: absolute; top: -12px; left: 24px; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.tier h3 { margin-bottom: 2px; }
.tier__for { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }
.tier .price { display: block; margin-bottom: 6px; }
.tier__hours { color: var(--body); font-size: 0.85rem; }
.pricing__notes { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.pricing__notes li { position: relative; padding-left: 24px; color: var(--body); font-size: 0.9rem; }
.pricing__notes li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.website-care { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; margin-top: 26px; }
.website-care__icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); }
.website-care__body { flex: 1; min-width: 220px; }
.website-care__body h3 { margin-bottom: 4px; }
.website-care__body p { color: var(--body); font-size: 0.92rem; }

/* Why */
.why { padding: 64px 0; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 28px; }
.why__item h3 { margin-bottom: 6px; }
.why__item p { color: var(--body); font-size: 0.95rem; }

/* Contact */
.contact { padding: 72px 0; background: var(--navy); color: #fff; }
.contact__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact h2 { color: #fff; margin-bottom: 10px; }
.contact > .contact__inner > p { color: #c7d4e6; margin-bottom: 28px; }
.contact__form { text-align: left; background: #fff; border-radius: 16px; padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--body); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; }
.contact__form .btn { width: 100%; }
.hidden { display: none; }

/* Footer */
.footer { padding: 28px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 640px) {
  .nav__links a:not(.btn) { display: none; }
  .hero { padding: 56px 0 48px; }
  .about__inner { justify-content: center; text-align: center; }
  .about__photo { width: 140px; height: 140px; }
  .stats { justify-content: center; }
  .footer__inner { justify-content: center; text-align: center; }
}
