@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600&display=swap');

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

:root {
  --green: #1a6b3a;
  --green-light: #e8f5ee;
  --green-mid: #2d8a50;
  --accent: #0fce68;
  --ink: #0d0f0b;
  --ink-60: rgba(13,15,11,0.6);
  --ink-30: rgba(13,15,11,0.3);
  --ink-5: rgba(13,15,11,0.04);
  --white: #ffffff;
  --off-white: #f7f9f5;
  --border: rgba(13,15,11,0.09);
  --px: clamp(1.25rem, 5vw, 3rem);
}

html { scroll-behavior: smooth; }
body { font-family: 'Geist', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px); height: 60px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; font-size: 1rem; color: var(--ink); letter-spacing: -0.02em; flex-shrink: 0; }
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo-mark svg { width: 32px; height: 32px; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links a { font-size: 0.85rem; color: var(--ink-60); text-decoration: none; padding: 0.4rem 0.75rem; border-radius: 8px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: var(--ink-5); color: var(--ink); }
.nav-cta { background: var(--green) !important; color: white !important; font-weight: 500 !important; padding: 0.4rem 1rem !important; border-radius: 8px !important; margin-left: 0.5rem; }
.nav-cta:hover { background: var(--green-mid) !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; }
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99; background: white; border-bottom: 1px solid var(--border); padding: 1rem var(--px) 1.5rem; flex-direction: column; gap: 0.25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.95rem; color: var(--ink-60); text-decoration: none; padding: 0.6rem 0.75rem; border-radius: 8px; transition: background 0.15s, color 0.15s; }
.mobile-menu a:hover { background: var(--ink-5); color: var(--ink); }
.mobile-menu .mob-cta { background: var(--green); color: white !important; font-weight: 500; margin-top: 0.5rem; text-align: center; border-radius: 9px; padding: 0.75rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; font-family: 'Geist', sans-serif; font-size: 0.875rem; font-weight: 500; text-decoration: none; border-radius: 9px; padding: 0.7rem 1.35rem; transition: all 0.15s; cursor: pointer; border: none; white-space: nowrap; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #1f2419; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink-60); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(13,15,11,0.2); color: var(--ink); background: var(--ink-5); }
.btn-green { background: var(--green); color: white; font-weight: 500; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-lime { background: var(--accent); color: var(--ink); font-weight: 600; }
.btn-lime:hover { background: #0eb85d; transform: translateY(-1px); }

/* ── SECTION COMMONS ── */
section { padding: clamp(3.5rem, 8vw, 6rem) var(--px); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; display: block; }
h1 { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h1 em { font-style: italic; color: var(--green); }
h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.7rem, 3.5vw, 2.7rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
h2 em { font-style: italic; color: var(--green); }
h3 { font-family: 'Geist', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); }
.section-sub { font-size: 0.95rem; font-weight: 300; color: var(--ink-60); line-height: 1.75; max-width: 560px; }
p { font-size: 0.95rem; color: var(--ink-60); line-height: 1.75; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: clamp(5rem,10vw,8rem) var(--px) clamp(3rem,6vw,5rem); background: var(--off-white); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--ink-30); margin-bottom: 1.5rem; flex-wrap: wrap; }
.page-hero .breadcrumb a { color: var(--ink-30); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--green); }
.page-hero .breadcrumb span { color: var(--ink-30); }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero .section-sub { margin-bottom: 2rem; }
.page-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar { padding: 1.25rem var(--px); background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; min-width: max-content; }
.trust-bar-label { font-size: 0.68rem; font-weight: 500; color: var(--ink-30); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; align-items: center; gap: 2rem; }
.trust-logo-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ink-30); white-space: nowrap; }
.trust-logo-item svg { width: 13px; height: 13px; stroke: var(--ink-30); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── CARDS / GRIDS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 32px rgba(13,15,11,0.07); transform: translateY(-2px); }
.card-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 0.4rem; }
.card p { font-size: 0.82rem; }

/* icon row */
.icon-box { width: 36px; height: 36px; background: var(--green-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon-box.dark { background: var(--green); }
.icon-box.dark svg { stroke: white; }

/* stat block */
.stat-block { text-align: center; }
.stat-num { font-family: 'Instrument Serif', serif; font-size: clamp(2rem,4vw,3rem); color: var(--green); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--ink-30); margin-top: 0.3rem; }

/* check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--ink-60); line-height: 1.55; }
.check-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.check-icon svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* price tag */
.price-tag { display: flex; align-items: center; justify-content: space-between; background: var(--off-white); border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 0.8rem; gap: 0.5rem; }
.price-tag-label { color: var(--ink-60); }
.price-tag-value { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--ink); border-radius: 18px; padding: clamp(2.5rem,5vw,4rem); display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; margin: 0 var(--px); }
.cta-banner-eyebrow { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.625rem; }
.cta-banner h2 { color: white; max-width: 440px; }
.cta-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; line-height: 1.7; max-width: 380px; }
.cta-banner-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }

/* ── FOOTER ── */
footer { padding: 3rem var(--px) 2rem; border-top: 1px solid var(--border); background: var(--white); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-weight: 600; font-size: 0.95rem; color: var(--ink); display: flex; align-items: center; gap: 9px; margin-bottom: 0.875rem; }
.footer-brand svg { width: 24px; height: 24px; }
.footer-desc { font-size: 0.8rem; color: var(--ink-30); line-height: 1.65; max-width: 220px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.8rem; color: var(--ink-30); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.72rem; color: var(--ink-30); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: var(--ink-30); text-decoration: none; }
.footer-legal a:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .three-col { grid-template-columns: 1fr; gap: 1rem; }
  .two-col-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner-right { align-items: flex-start; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
