/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1E2D3A;
  background: #F0F4F1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.125rem; font-family: 'Inter', sans-serif; font-weight: 700; }
p { color: rgba(30,45,58,0.7); }
em { font-family: 'DM Serif Display', Georgia, serif; font-style: italic; color: #6B9E78; }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(30,45,58,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; z-index: 50;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon img { width: 32px; height: 32px; display: block; }
.nav-logo-icon .nav-icon-dark { display: none; }
.nav.scrolled .nav-logo-icon .nav-icon-light { display: none; }
.nav.scrolled .nav-logo-icon .nav-icon-dark { display: block; }
.nav-logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.375rem; color: #1E2D3A;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo-text { color: #fff; }
.nav-badge img { height: 40px; width: auto; display: block; }
@media (max-width: 480px) { .nav-badge img { height: 34px; } }

/* ===== Hero ===== */
.hero {
  padding: 160px 0 80px;
  background: #F0F4F1;
  position: relative; overflow: hidden;
}
.hero-blob-1 {
  position: absolute; top: 0; right: 0;
  width: 700px; height: 700px;
  background: rgba(107,158,120,0.1);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(25%, -50%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: 0; left: 0;
  width: 500px; height: 500px;
  background: rgba(30,45,58,0.05);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-25%, 33%);
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(30,45,58,0.05);
  border: 1px solid rgba(30,45,58,0.1);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #1E2D3A;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6B9E78;
}
.hero h1 { color: #1E2D3A; margin-bottom: 20px; line-height: 1.05; }
.hero-desc {
  font-size: 1.125rem; color: rgba(30,45,58,0.7);
  margin-bottom: 36px; max-width: 480px; line-height: 1.7;
}
.hero-badge img { height: 56px; width: auto; }
.hero-trust {
  display: flex; gap: 24px; margin-top: 40px;
  font-size: 0.875rem; font-weight: 500; color: rgba(30,45,58,0.6);
  flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust-icon { color: #6B9E78; font-size: 1rem; }

/* Phone Pair - Hero */
.hero-phones {
  display: flex; justify-content: flex-end; align-items: flex-end;
  position: relative;
}
.phone-shot {
  border-radius: 36px;
  border: 5px solid #000;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.phone-shot img {
  display: block; width: 100%; height: auto;
}
.hero-phone-back {
  width: 240px;
  transform: rotate(-6deg) translateX(28px) translateY(12px);
  z-index: 0; position: relative;
}
.hero-phone-front {
  width: 270px;
  transform: rotate(3deg) translateX(-20px);
  z-index: 1; position: relative;
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badge { display: flex; justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-phones { justify-content: center; margin-top: 40px; }
  .hero-phone-back { width: 200px; }
  .hero-phone-front { width: 230px; }
}
@media (max-width: 600px) {
  .hero { padding: 130px 0 60px; }
  .hero-phone-back { width: 150px; }
  .hero-phone-front { width: 175px; }
}

/* ===== Feature Sections ===== */
.feature-section { padding: 96px 0; }
.feature-section.bg-white { background: #fff; }
.feature-section.bg-dark { background: #1E2D3A; }
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(107,158,120,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-section.bg-dark .feature-icon-wrap { background: rgba(255,255,255,0.1); }
.feature-section h2 { margin-bottom: 20px; }
.feature-section.bg-dark h2 { color: #fff; }
.feature-desc { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 28px; }
.feature-section.bg-dark .feature-desc { color: rgba(255,255,255,0.7); }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-list-bullet {
  width: 20px; height: 20px; border-radius: 50%;
  background: #1E2D3A;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.feature-list-bullet::after {
  content: '✓'; font-size: 10px; color: #fff; font-weight: 700;
}
.feature-list-item span { font-size: 0.9375rem; font-weight: 500; color: rgba(30,45,58,0.8); }
.feature-section.bg-dark .feature-list-item span { color: rgba(255,255,255,0.8); }

/* Pro Contact card */
.pro-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(8px);
  margin-top: 8px;
}
.pro-card-title { color: #fff; font-weight: 600; font-size: 0.9375rem; margin-bottom: 16px; }
.pro-card-rows { display: flex; flex-direction: column; gap: 14px; }
.pro-card-row { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.pro-card-icon { color: #6B9E78; font-size: 1.1rem; flex-shrink: 0; }

/* Phone Pair - Feature */
.feature-phones {
  display: flex; align-items: flex-end; justify-content: center;
}
.feature-phone-back {
  width: 200px;
  transform: translateX(20px) translateY(20px) rotate(-6deg);
  z-index: 0; position: relative;
}
.feature-phone-front {
  width: 230px;
  transform: translateX(-12px);
  z-index: 1; position: relative;
}

@media (max-width: 1024px) {
  .feature-split { grid-template-columns: 1fr; gap: 48px; }
  .feature-phones { order: -1; }
  .feature-phone-back { width: 160px; }
  .feature-phone-front { width: 190px; }
}

/* ===== Household Section ===== */
.household-section { background: #F0F4F1; padding: 96px 0; }
.household-section .section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.household-section .section-header h2 { margin-bottom: 16px; }
.household-section .section-header p { font-size: 1.0625rem; line-height: 1.7; }
.household-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: #fff; box-shadow: 0 2px 12px rgba(30,45,58,0.06);
  border: 1px solid rgba(30,45,58,0.05);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 1.75rem;
}
.household-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.household-card {
  background: #fff; border-radius: 24px; padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.household-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.household-card-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(30,45,58,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 20px;
}
.household-card-icon.green { background: rgba(107,158,120,0.1); }
.household-card h3 { margin-bottom: 10px; }
.household-card p { font-size: 0.875rem; line-height: 1.65; }
@media (max-width: 900px) { .household-cards { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta-section { background: #fff; padding: 96px 0 120px; text-align: center; }
.cta-section h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; margin-bottom: 24px; }
.cta-section p { font-size: 1.125rem; max-width: 420px; margin: 0 auto 40px; line-height: 1.7; }
.cta-badge { display: flex; justify-content: center; }
.cta-badge img { height: 64px; width: auto; }
.cta-note { font-size: 0.875rem; font-weight: 500; color: rgba(30,45,58,0.5); margin-top: 20px; }

/* ===== Footer ===== */
.footer {
  background: #1E2D3A; color: rgba(255,255,255,0.5);
  padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem; color: #fff;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.8125rem; }

/* ===== Legal / Support Pages ===== */
.page-header {
  background: #1E2D3A; padding: 20px 0;
}
.page-header .container { display: flex; align-items: center; gap: 10px; }
.page-header-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.page-header-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-header-logo-icon img { width: 32px; height: 32px; display: block; }
.page-header-logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.375rem; color: #fff;
}

.page-hero {
  background: #F0F4F1; padding: 56px 0 40px;
  border-bottom: 1px solid rgba(30,45,58,0.06);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.page-hero .effective { font-size: 0.875rem; color: rgba(30,45,58,0.5); font-weight: 500; }
.page-hero .page-intro { font-size: 1.0625rem; margin-top: 10px; color: rgba(30,45,58,0.6); }

.page-body { background: #F0F4F1; padding: 48px 0 96px; }
.page-content { max-width: 760px; margin: 0 auto; }

/* Legal prose */
.legal h2 { font-size: 1.5rem; margin: 48px 0 14px; padding-top: 8px; color: #1E2D3A; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 0.9375rem; color: rgba(30,45,58,0.75); margin-bottom: 12px; line-height: 1.75; }
.legal ul { padding-left: 20px; margin-bottom: 16px; }
.legal ul li { list-style: disc; margin-bottom: 6px; }
.legal ol { padding-left: 20px; margin-bottom: 16px; }
.legal ol li { list-style: decimal; margin-bottom: 6px; }
.legal a { color: #4A7C6F; text-decoration: underline; }
.legal a:hover { color: #6B9E78; }
.legal-callout {
  background: rgba(30,45,58,0.05);
  border: 1px solid rgba(30,45,58,0.1);
  border-radius: 12px; padding: 20px 24px;
  margin: 8px 0 20px;
}
.legal-callout p { font-size: 0.875rem; font-weight: 500; margin: 0; }

/* ===== FAQ / Accordion ===== */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem; margin-bottom: 16px; color: #1E2D3A;
}
.faq-list { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.05); }
.faq-item { border-bottom: 1px solid rgba(30,45,58,0.08); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 18px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.9375rem; color: #1E2D3A;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; transition: color 0.15s;
}
.faq-item summary:hover { color: #4A7C6F; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.375rem; color: #6B9E78; font-weight: 300; flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 24px 18px; font-size: 0.9375rem; color: rgba(30,45,58,0.7); line-height: 1.7; }
.faq-answer a { color: #4A7C6F; text-decoration: underline; }

/* Contact CTA */
.contact-cta {
  text-align: center; padding: 56px 40px; margin-top: 16px;
  background: #1E2D3A; border-radius: 24px;
}
.contact-cta-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(107,158,120,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto 20px;
}
.contact-cta h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.75rem; color: #fff; margin-bottom: 10px; }
.contact-cta p { color: rgba(255,255,255,0.6); margin-bottom: 24px; max-width: 320px; margin-left: auto; margin-right: auto; }
.contact-cta a.btn-email {
  display: inline-flex; align-items: center; gap: 8px;
  background: #6B9E78; color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.9375rem;
  transition: background 0.2s;
}
.contact-cta a.btn-email:hover { background: #4A7C6F; }

/* Page footer */
.page-footer {
  background: #1E2D3A; color: rgba(255,255,255,0.5);
  padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.page-footer .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.page-footer-logo { display: flex; align-items: center; gap: 8px; }
.page-footer-logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem; color: #fff;
}
.page-footer-links { display: flex; gap: 24px; }
.page-footer-links a { font-size: 0.8125rem; transition: color 0.2s; }
.page-footer-links a:hover { color: #fff; }
.page-footer-copy { font-size: 0.8125rem; }
