/* ═══════════════════════════════════════════════════════════════
   SCAFFOLD CSS — Structural foundation (not modified by LLM)
   Grid, container, responsive, reset, utilities
   ═══════════════════════════════════════════════════════════════ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section */
.section { padding: var(--section-padding, 80px) 0; width: 100%; }

/* Grid */
.grid { display: grid; gap: var(--grid-gap, 24px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Hero base */
.hero { display: flex; align-items: center; gap: 48px; }
.hero__content { flex: 1; }
.hero__media { flex: 1; display: flex; justify-content: center; }
.hero__media img { border-radius: var(--radius, 8px); max-width: 100%; }

/* Section header */
.section__header { text-align: center; margin-bottom: 48px; }
.section__header p { max-width: 640px; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; }
  .hero__media { order: -1; }
  .section { padding: var(--section-padding-mobile, 48px) 0; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}


:root {
  /* Colors */
  --primary: #006747;
  --primary-hover: #00583c;
  --accent: #669900;
  --bg: #ffffff;
  --surface: #f7f7f7;
  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --text-dark: #1a1a2e;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);

  /* Typography */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.7;
  --heading-weight: 700;

  /* Shape */
  --radius: 8px;
  --card-padding: 32px;
  --grid-gap: 24px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);

  /* Header */
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-text: #0F172A;
  --header-border: rgba(0, 0, 0, 0.05);

  /* Buttons */
  --btn-radius: 4px;
  --btn-padding: 14px 28px;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); font-size: 1.05rem; }
a { color: var(--primary); transition: all 0.25s ease; }
a:hover { color: var(--primary-hover); }
ul, ol { margin-bottom: 1rem; }

.section--dark { background-color: var(--bg); }
.section--light { background-color: var(--surface); }
.section--accent { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--card-padding);
  transition: all 0.25s ease;
}
.card { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.card--dark { background: transparent; border: 1px solid var(--border); }
.card--dark:hover { border-color: var(--primary); }
.card:hover { transform: translateY(-4px); }

.hero { min-height: 70vh; padding: 100px 0; }
.hero .container { display: flex; align-items: center; gap: 48px; }

.hero--dark { background-color: var(--bg); }
.hero--gradient { background: linear-gradient(135deg, var(--bg), var(--primary)); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--btn-padding); border-radius: var(--btn-radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all 0.25s ease; border: none; text-decoration: none;
  font-family: var(--font-body);
}
.btn--primary { background: var(--primary); color: var(--bg); }
.btn--primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--text-primary); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--white { background: var(--white); color: var(--bg); }

.badge {
  display: inline-block; padding: 4px 14px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  background: var(--surface); color: var(--primary);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em;
}

.logo-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; opacity: 0.6; }
.logo-cloud img { height: 32px; filter: grayscale(1) brightness(2); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--grid-gap); }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; text-align: center; }
.pricing-card--featured { border-color: var(--primary); position: relative; }

.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--grid-gap); text-align: center; }
.counter-card .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); display: block; font-family: var(--font-heading); }
.counter-card .label { color: var(--text-secondary); font-size: 0.95rem; }

.timeline { position: relative; padding-left: 32px; border-left: 2px solid var(--border); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -39px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); }

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 1.1rem; color: var(--text-dark); }
.faq-item p { margin-top: 12px; }

.cta {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  text-align: center; border-radius: calc(var(--radius) * 2);
  padding: 64px; margin: 40px 0; border: 1px solid var(--border);
}

/* ── Header ─────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  padding: 0;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.logo {
  font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em;
  color: var(--text-primary); font-family: var(--font-heading);
  text-decoration: none;
}
.nav {
  display: flex; gap: 6px; align-items: center;
  margin: 0 auto;
}
.nav-link {
  color: var(--header-text); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.2s, color 0.2s; text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.07); color: var(--primary);
}
.nav-cta {
  margin-left: 12px; padding: 10px 24px; font-size: 0.85rem;
  border-radius: var(--btn-radius); font-weight: 600;
  background: var(--primary); color: #fff; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--primary-hover); transform: translateY(-1px); color: #fff; }

/* Hamburger */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 8px; transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.07); }
.hamburger {
  display: block; width: 20px; height: 2px; background: var(--header-text);
  position: relative; border-radius: 2px;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--header-text); border-radius: 2px;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Mobile nav — hidden by default */
.mobile-nav {
  display: none; background: var(--header-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  padding: 16px 24px;
}
.mobile-nav.active { display: block; }
.mobile-nav-links {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-link {
  display: block; padding: 12px 16px; border-radius: 8px;
  color: var(--header-text); font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(255,255,255,0.07); color: var(--primary); }
.mobile-nav-cta {
  margin-top: 8px; display: block; text-align: center;
  padding: 12px 24px; border-radius: var(--btn-radius);
  background: var(--primary); color: #fff; font-weight: 600;
  text-decoration: none;
}

/* Header variants */
.header--solid { background: var(--bg); backdrop-filter: none; }
.header--transparent { background: transparent; border-bottom: none; }

@media (max-width: 768px) {
  .nav, .nav-cta { display: none; }
  .mobile-menu-btn { display: inline-flex; }
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px; margin-bottom: 40px;
}
.footer-brand {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .footer-brand { grid-column: auto; }
}
.footer-logo {
  font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em;
  color: var(--text-primary); font-family: var(--font-heading);
  text-decoration: none; display: inline-block; margin-bottom: 12px;
}
.footer-description, .footer-additional {
  color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6;
  max-width: 280px;
}
.footer-column {}
.footer-title {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 16px;
  color: var(--text-primary); font-family: var(--font-heading);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: var(--text-secondary); font-size: 0.85rem;
  text-decoration: none; transition: color 0.2s;
}
.footer-links li a:hover { color: var(--primary); }

.footer-contact {}
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; color: var(--text-secondary); font-size: 0.85rem;
}
.footer-contact-list li a { color: var(--text-secondary); text-decoration: none; }
.footer-contact-list li a:hover { color: var(--primary); }
.contact-icon { font-size: 1rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  text-align: center;
}
.copyright {
  color: var(--text-secondary); font-size: 0.8rem;
}

/* Footer variants */
.footer--simple {}
.footer--detailed .footer-grid { grid-template-columns: 2fr repeat(auto-fit, minmax(140px, 1fr)); }
.card { border-top: 2px solid var(--primary); }