:root {
  --primary: #0e7490;
  --primary-dark: #155e75;
  --primary-light: #cffafe;
  --accent: #0ea5e9;
  --text: #1f2937;
  --text-muted: #5b6472;
  --bg: #ffffff;
  --bg-alt: #f4f8fa;
  --border: #e5e7eb;
  --radius: 28px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 0.5em;
}

.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn-ghost:hover { background: var(--primary-light); }
.btn-ghost-light {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 0.85em 1.8em; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240,241,242,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo {
  height: 88px;
  width: auto;
  display: block;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 500; color: var(--text-muted); }
.main-nav a:hover { color: var(--primary-dark); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--primary-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* Hero */
.hero { background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 70%); padding: 64px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.hero-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 1.5em 0; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.9rem; }
.hero-photo { display: flex; justify-content: center; }
.hero-photo img { width: auto; height: 465px; max-width: 100%; display: block; border-radius: 28px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12); }

/* Trust bar */
.trust-bar { background: var(--primary-dark); color: #fff; padding: 22px 0; }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-inner div { display: flex; flex-direction: column; gap: 2px; }
.trust-inner strong { font-family: var(--font-heading); font-size: 1.2rem; }
.trust-inner span { font-size: 0.82rem; opacity: 0.85; }

/* Services */
.services { padding: 80px 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.1rem; margin-bottom: 12px; }
.icon-badge { position: relative; display: inline-block; }
.icon-plus {
  position: absolute;
  bottom: -4px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.card h3 { font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card-link { color: var(--primary-dark); font-weight: 600; font-size: 0.9rem; }

/* Pricing */
.pricing { padding: 80px 0; background: var(--bg-alt); }
.price-table {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-head { background: var(--bg-alt); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted); }
.price-highlight { color: var(--primary-dark); font-weight: 700; }
.price-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 18px; }

/* About */
.about { padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.about p { color: var(--text-muted); }
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  padding-left: 44px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--primary);
  font-weight: 700;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 72px 0;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta p { opacity: 0.9; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 1.5em; }

/* Footer */
.site-footer { background: #111827; color: #cbd5e1; padding: 48px 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-logo { height: 54px; }
.footer-brand p { color: #94a3b8; margin: 4px 0 0; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a, .footer-contact a { color: #cbd5e1; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-bottom {
  padding: 18px 24px;
  font-size: 0.82rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-photo img { width: 100%; height: auto; }
  .about-inner { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
  .brand-logo { height: 42px; }
  .header-cta { gap: 10px; }
  .header-cta .btn { padding: 0.6em 1.1em; font-size: 0.85rem; }
  .price-row { grid-template-columns: 1fr; gap: 4px; }
  .price-row span:first-child { font-weight: 600; }
  .footer-inner { flex-direction: column; }
  .footer-contact { align-items: flex-start; }
}

.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}
