:root {
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --border-subtle: #e5e7eb;
  --text: #111827;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --danger: #b91c1c;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.09);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* Global Reset / Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.logo-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #4b5563;
  font-weight: 500;
}

.nav a:hover {
  color: #111827;
}

.header-cta {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: #111827;
  color: #f9fafb;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.header-cta:hover {
  background: #030712;
  text-decoration: none;
}

/* Mobile Menu Toggle (hamburger) */
/* Mobile Menu Toggle (hamburger + "Menu" text) */
.menu-toggle {
  display: none; /* shown on mobile in media query */
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 0.4rem;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
}

/* Animate burger into X when nav is open */
body.nav-open .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}




/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: #111827;
  color: #f9fafb;
}

.btn.primary:hover {
  background: #030712;
  text-decoration: none;
}

.btn.secondary {
  background: #e5edff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.btn.secondary:hover {
  background: #dbeafe;
  text-decoration: none;
}

.btn.full-width {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hero-note {
  font-size: 0.85rem;
  color: #4b5563;
  background: rgba(239, 246, 255, 0.9);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #dbeafe;
}

/* Hero Card */
.hero-card {
  background: radial-gradient(circle at top right, #eff6ff, #ffffff);
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.hero-card h3 {
  margin-top: 1.2rem;
  font-size: 1rem;
}

.checklist,
.xlist {
  list-style: none;
  padding: 0;
  margin: 0.65rem 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.checklist li,
.xlist li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.checklist li::before {
  content: "✓";
  color: #15803d;
  font-weight: 600;
  margin-top: 0.1rem;
}

.xlist li::before {
  content: "✕";
  color: var(--danger);
  font-weight: 600;
  margin-top: 0.1rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-intro {
  margin: 0 auto 2rem;
  max-width: 34rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-subtle);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.price-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.price-range {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.95rem;
  color: #111827;
}

.price-range span {
  font-weight: 700;
}

.price-note {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: #4b5563;
}

.price-card ul li {
  margin-bottom: 0.3rem;
}

.fine-print {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-subtle);
}

.area-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.area-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.benefit {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border-subtle);
}

.benefit h3 {
  margin-top: 0;
  font-size: 0.98rem;
}

.benefit p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  background: radial-gradient(circle at top, #e5edff, #f5f5f7);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-highlights li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.contact-highlights li::before {
  content: "•";
  color: #2563eb;
  font-weight: 700;
}

.contact-direct {
  font-size: 0.9rem;
  color: #111827;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row {
  display: flex;
  gap: 0.9rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #bfdbfe;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.form-footnote {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.4rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: #4b5563;
}

.footer-meta {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Responsive: tablet / small desktop */
@media (max-width: 900px) {
  .header-inner {
    justify-content: space-between;
  }

  /* Show hamburger, hide desktop CTAs for space */
  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1.25rem;
    left: 1.25rem;
    margin-top: 0.4rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 0.7rem 0.9rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.92rem;
    z-index: 15;
  }

  .nav a {
    padding: 0.45rem 0.3rem;
    border-radius: 8px;
    color: #111827;
  }

  .nav a:hover {
    background: #f3f4f6;
  }

  /* When nav-open is on body, show mobile nav */
  body.nav-open .nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.5rem 1.3rem;
  }
}

/* Responsive: small phones */
@media (max-width: 640px) {
  .header-inner {
    justify-content: space-between;
  }

  .logo-text {
    max-width: 8.5rem;
    white-space: normal;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row {
    flex-direction: column;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 1.25rem 1.15rem;
  }
}

