/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #1A1A1A;
  background: #FFFFFF;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #D8EDE9;
  padding: 0 24px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
}
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.header-nav a:hover { color: #0A6E6E; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  background: #0A6E6E;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 24px 72px;
}
.hero h1 {
  font-size: 38.4px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}
.hero p {
  font-size: 17px;
  color: #B2DADA;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: #FFFFFF;
  color: #0A6E6E;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #E0F4F4; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: #0A6E6E;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.1s;
}
.btn-secondary:hover { background: #085858; transform: translateY(-1px); }

/* ── SECTIONS ── */
.section { padding: 72px 24px; background: #FFFFFF; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}
.section-sub {
  font-size: 15px;
  color: #5a7a7a;
  margin-bottom: 48px;
}
.section-alt { background: #EEF8F8; }

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: #FFFFFF;
  border: 1px solid #C8E8E8;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10,110,110,0.06);
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0A6E6E;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}
.feature-card p {
  font-size: 14px;
  color: #4a6060;
  line-height: 1.7;
}

/* ── INTRO TEXT BLOCK ── */
.intro-block {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}
.intro-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}
.intro-block p {
  font-size: 15px;
  color: #3a5050;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #F0FAF9;
  color: #1A1A1A;
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid #C8E8E8;
  border-bottom: 1px solid #C8E8E8;
}
.trust-strip h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  color: #1A1A1A;
}
.trust-strip p {
  font-size: 15px;
  color: #5a7a7a;
  max-width: 600px;
  margin: 0 auto 28px;
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #0A6E6E;
  font-family: 'Georgia', serif;
}
.stat-label {
  font-size: 13px;
  color: #5a7a7a;
  margin-top: 4px;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
}
.step-num {
  width: 52px;
  height: 52px;
  background: #0A6E6E;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Georgia', serif;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}
.step-card p {
  font-size: 14px;
  color: #4a6060;
}

/* ── CTA SECTION ── */
.cta-section {
  background: #0A6E6E;
  color: #FFFFFF;
  text-align: center;
  padding: 72px 24px;
}
.cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Georgia', serif;
}
.cta-section p {
  font-size: 15px;
  color: #B2DADA;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: #0A6E6E;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 24px 52px;
}
.page-hero h1 {
  font-size: 38.4px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}
.page-hero p {
  font-size: 15px;
  color: #B2DADA;
}

/* ── PAGE CONTENT ── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0A6E6E;
  margin: 36px 0 12px;
  font-family: 'Georgia', serif;
}
.page-content p { margin-bottom: 16px; color: #2a3a3a; line-height: 1.8; }
.page-content ul { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 8px; color: #2a3a3a; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #1A1A1A; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #C8E8E8;
  border-radius: 6px;
  font-size: 14px;
  color: #1A1A1A;
  background: #FFFFFF;
  transition: border-color 0.2s;
  font-family: 'Arial', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: #0A6E6E; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.site-footer {
  background: #FFFFFF;
  color: #5a7a7a;
  padding: 56px 24px 24px;
  text-align: center;
  border-top: 2px solid #C8E8E8;
}
.footer-main {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.footer-logo { margin-bottom: 20px; text-align: center; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: inline-block;
}
.footer-desc {
  font-size: 14px;
  color: #5a7a7a;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}
.footer-nav a {
  color: #1A1A1A;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #0A6E6E; }
.footer-disclosure {
  border-top: 1px solid #D8EDE9;
  max-width: 960px;
  margin: 0 auto 20px;
  padding-top: 20px;
  text-align: center;
}
.footer-disclosure p {
  font-size: 11px;
  color: #9aacac;
  line-height: 1.6;
  margin-bottom: 8px;
  white-space: nowrap;
}
.footer-copy {
  font-size: 12px;
  color: #aaaaaa;
  border-top: 1px solid #D8EDE9;
  padding-top: 16px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: #FFFFFF; border-bottom: 1px solid #D8EDE9; z-index: 100; }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 14px 24px; border-bottom: 1px solid #D8EDE9; }
  .header-inner { position: relative; }
  .hamburger { display: flex; }
  .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .trust-stats { gap: 32px; }
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .footer-disclosure p { white-space: normal; }
}
