:root {
  --primary: #1B4D3E;
  --primary-light: #2A7A5E;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --bg: #FAFAF8;
  --bg-alt: #F1F0EC;
  --bg-dark: #14342A;
  --text: #1E1E1E;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border: #E5E5E3;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,.08), 0 16px 40px rgba(0,0,0,.1);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: .25s ease;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  padding: .7rem 1.5rem;
  font-size: .95rem;
  line-height: 1.4;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg-alt); transform: translateY(-1px); }
.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 1.75rem;
}
.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta { margin-left: .5rem; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(160deg, #e8f5e9 0%, var(--bg) 50%, #fef9ef 100%);
  text-align: center;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--primary);
}
.trust-badge svg { opacity: .7; }

/* --- Section Head --- */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Cards --- */
.services-preview { padding: 5rem 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: #e8f5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: var(--text);
}
.card p {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.card-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: color var(--transition);
}
.card-link:hover { color: var(--accent); }

/* --- Steps --- */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}
.step { padding: 1.5rem; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--text-muted); }

/* --- Stats --- */
.stats-bar {
  padding: 3.5rem 0;
  background: var(--primary);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .85rem;
  opacity: .8;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-preview { padding: 5rem 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 18px;
}
.testimonial p {
  padding-top: 1.5rem;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: .85rem;
  color: var(--primary);
}

/* --- CTA Band --- */
.cta-band {
  padding: 5rem 0;
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: .5rem;
}
.cta-band p {
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: .75rem;
}
.footer-col p { font-size: .88rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a {
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  opacity: .6;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 90;
  box-shadow: 0 -2px 16px rgba(0,0,0,.06);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.cookie-banner a { color: var(--primary); text-decoration: underline; }

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }

/* --- About page --- */
.page-header {
  padding: 8rem 0 3rem;
  background: var(--bg-alt);
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: .5rem;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.page-body { padding: 4rem 0; }
.page-body .container { max-width: 760px; }
.page-body h2 { font-family: var(--font-display); color: var(--primary); margin: 2rem 0 .75rem; font-size: 1.5rem; }
.page-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }

/* --- Contact form --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-card {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-card svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { font-size: .95rem; margin-bottom: .2rem; }
.contact-info-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: .35rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .mobile-toggle { display: block; }
  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .cookie-banner { flex-direction: column; text-align: center; gap: .75rem; }
}