/* =============================================
   NANO SLIM — ketoornot.com
   Design System — Verde Natural + Crem
   Mobile-First, No External Dependencies
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --green-pale:   #B7E4C7;
  --green-mist:   #D8F3DC;
  --cream:        #FEFAE0;
  --cream-dark:   #F4EDD3;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --text:         #2C3E2D;
  --text-muted:   #5A7060;
  --border:       #C8E6C9;
  --shadow:       rgba(27,67,50,0.10);
  --shadow-md:    rgba(27,67,50,0.18);

  --ff-head:  Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  --ff-body:  'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius:   10px;
  --radius-lg:20px;
  --radius-xl:32px;

  --transition: all 0.28s cubic-bezier(.4,0,.2,1);
  --max-w: 1140px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-head);
  color: var(--green-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.logo span.brand-accent { color: var(--green-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--green-mist);
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 4px 10px;
  border: none;
  border-radius: 16px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 1px 4px var(--shadow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px var(--shadow-md);
  padding: 12px 20px 20px;
  gap: 4px;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--green-mist);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--green-mist); color: var(--green-dark); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-color: var(--green-mid);
  box-shadow: 0 4px 14px rgba(45,106,79,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45,106,79,0.45);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-mid);
  border-color: var(--green-light);
}
.btn-secondary:hover {
  background: var(--green-mist);
  border-color: var(--green-mid);
  color: var(--green-dark);
}
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-pale);
}
.hero .lead {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- SECTIONS ---------- */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,0.75); }
.section-mist { background: var(--green-mist); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-header .eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.section-alt .section-header .eyebrow { color: var(--green-mid); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- CARDS ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow-md); }
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-mist);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--green-mid); fill: none; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.925rem; color: var(--text-muted); margin: 0; }

/* ---------- FEATURE ROW (split) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.feature-content .eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.feature-content h2 { margin-bottom: 16px; }
.feature-content p { color: var(--text-muted); margin-bottom: 12px; }

/* Checklist */
.checklist { margin: 20px 0 28px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-mist);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%232D6A4F' d='M7.3 13.6L3.7 10l-1.4 1.4 5 5 10-10-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- STEPS ---------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { margin-bottom: 6px; }
.step-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--ff-head);
  font-size: 4rem;
  color: var(--green-pale);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-mid);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; }
.author-info .meta { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 2px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.cta-banner .btn-secondary:hover { background: var(--green-mist); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FORM ---------- */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 8px 40px var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label span { color: var(--green-light); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.7; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%235A7060' d='M7 7l3 3 3-3z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

.consent-row { display: flex; gap: 10px; align-items: flex-start; }
.consent-row input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green-mid); flex-shrink: 0; }
.consent-row label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.consent-row a { color: var(--green-mid); text-decoration: underline; }

/* Form success / error */
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.form-message.success {
  background: #D8F3DC;
  color: var(--green-dark);
  border: 1px solid var(--green-pale);
  display: block;
}
.form-message.error {
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FECACA;
  display: block;
}

/* ---------- CONTACT INFO ---------- */
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--green-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; stroke: var(--green-mid); fill: none; }
.contact-info-body .label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.contact-info-body .value { font-size: 0.975rem; font-weight: 600; color: var(--green-dark); }

/* ---------- BLOG CARD ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow-md); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px 20px; }
.blog-tag {
  display: inline-block;
  background: var(--green-mist);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.read-more { font-size: 0.875rem; font-weight: 600; color: var(--green-mid); display: inline-flex; align-items: center; gap: 4px; }
.read-more::after { content: '→'; }

/* ---------- PAGE HEADER ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* ---------- CONTENT PAGE ---------- */
.content-body {
  max-width: 780px;
  margin: 0 auto;
}
.content-body h2 { margin: 40px 0 16px; }
.content-body h3 { margin: 28px 0 12px; color: var(--green-mid); }
.content-body p { color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.content-body ul, .content-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-body li { margin-bottom: 8px; color: var(--text); line-height: 1.7; }
.content-body ul li { list-style: disc; }
.content-body ol li { list-style: decimal; }
.info-box {
  background: var(--green-mist);
  border-left: 4px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--green-dark);
}
.warning-box {
  background: #FFF9C4;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: #78350F;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo-icon { background: var(--green-light); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: block;
  padding: 2px 0;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--green-light); fill: none; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--white); }

/* ---------- MISC ---------- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.highlight { color: var(--green-light); }
.highlight-dark { color: var(--green-mid); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider.left { margin-left: 0; }

/* Notification bar */
.notif-bar {
  background: var(--green-mid);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.notif-bar a { color: var(--green-pale); text-decoration: underline; }

/* Price card */
.price-card {
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  position: relative;
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 12px;
}
.price-label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.price-cta { font-size: 1.6rem; font-family: var(--ff-head); color: var(--green-dark); font-weight: 700; margin-bottom: 8px; }
.price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }

/* Accordion */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.accordion-trigger:hover { background: var(--green-mist); color: var(--green-dark); }
.accordion-trigger.open { background: var(--green-mist); color: var(--green-dark); }
.accordion-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 22px 18px; font-size: 0.925rem; color: var(--text-muted); line-height: 1.7; }
.accordion-body.open { display: block; }

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--shadow-md);
  z-index: 500;
  transition: var(--transition);
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: var(--green-dark); transform: translateY(-2px); }

/* =============================================
   RESPONSIVE — MOBILE FIRST
   ============================================= */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-img { max-height: 240px; }
  .cta-banner { padding: 36px 24px; }
  .form-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
  .section { padding: 52px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 14px 28px; font-size: 0.975rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-banner, #scrollTop { display: none; }
}
