:root {
  --navy: #141414;
  --accent: #4A4A4A;
  --light: #F0F0F0;
  --grey: #595959;
  --bg: #FAFAFA;
  --border: #E5E5E5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  font-size: 17px;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Header */
header.site {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 25px;
  color: var(--navy);
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.8; }
.logo img { height: 34px; width: auto; display: block; }
nav.links {
  display: flex;
  gap: 28px;
  font-size: 17px;
  font-weight: 500;
}
nav.links a { color: var(--grey); position: relative; padding-bottom: 4px; }
nav.links a:hover, nav.links a.active { color: var(--navy); }
nav.links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}
nav.links a:hover::after, nav.links a.active::after { right: 0; }
.btn-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-cta:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(20,20,20,0.22); }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 1px 1px, rgba(20,20,20,0.06) 1.5px, transparent 0) 0 0/28px 28px,
    linear-gradient(180deg, var(--light), #fff);
  padding: 96px 24px 72px;
  text-align: center;
}
.hero h1 {
  font-size: 50px;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.7s ease both;
}
.hero p.sub {
  font-size: 21px;
  color: var(--grey);
  max-width: 660px;
  margin: 0 auto 34px;
  animation: fadeInUp 0.7s ease both 0.12s;
}
.hero .btn-cta {
  padding: 16px 34px;
  font-size: 17px;
  display: inline-block;
  animation: fadeInUp 0.7s ease both 0.24s;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
  margin-top: 44px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  animation: fadeInUp 0.7s ease both 0.36s;
}
.trust-row span {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(20,20,20,0.05);
}
.trust-row span::before { content: "✓ "; color: var(--accent); font-weight: 700; }

/* Sections */
section { padding: 72px 24px; }
section.alt { background: var(--bg); }
h2.section-title {
  font-size: 34px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}
p.section-lead {
  text-align: center;
  color: var(--grey);
  font-size: 18px;
  max-width: 680px;
  margin: -26px auto 44px;
}

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 3px 12px rgba(20,20,20,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(20,20,20,0.09);
  border-color: var(--accent);
}
.card h3 { color: var(--navy); font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--grey); font-size: 16px; }
.card.addon { background: var(--light); border-color: var(--light); }
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(20,20,20,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(20,20,20,0.09); }
.price-card.featured {
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(20,20,20,0.12);
  transform: translateY(-6px);
}
.price-card.featured:hover { transform: translateY(-9px); }
.price-card h3 { color: var(--navy); font-size: 23px; margin-bottom: 8px; }
.price-card .range { font-size: 25px; font-weight: 700; color: var(--accent); margin: 16px 0 6px; }
.price-card .label { font-size: 14px; color: var(--grey); margin-bottom: 20px; }
.price-card ul { list-style: none; text-align: left; font-size: 16px; color: var(--grey); }
.price-card li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* About */
.about-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
}
.about-text p { margin-bottom: 20px; }
.highlight-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  max-width: 780px;
  margin: 34px auto 0;
}

/* Contact */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrap p.sub { color: var(--grey); font-size: 19px; margin-bottom: 32px; }
.contact-email {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
#calendly-embed {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 50px 20px;
  color: var(--grey);
  font-size: 14px;
  background: var(--bg);
}

/* Footer */
footer.site {
  background: var(--navy);
  color: #d5d5d5;
  padding: 44px 24px;
  text-align: center;
  font-size: 15.5px;
  margin-top: 40px;
}
footer.site .foot-logo { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-weight: 700; font-size: 22px; margin-bottom: 12px; }
footer.site .foot-logo img { height: 30px; width: auto; display: block; }
footer.site a { color: #d5d5d5; }
footer.site a:hover { color: #fff; }
footer.site p:nth-of-type(2) a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
footer.site p:nth-of-type(2) a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .nav-wrap { flex-wrap: wrap; gap: 12px; }
  nav.links { gap: 16px; font-size: 14.5px; order: 3; width: 100%; justify-content: center; }
  .hero h1 { font-size: 32px; }
  .hero p.sub { font-size: 18px; }
  h2.section-title { font-size: 27px; }
  .price-card.featured { transform: none; }
}
