/* ================================================================
   CSS VARIABLES
================================================================ */
:root {
  --forest:      #2d6a4f;
  --forest-dark: #1e4d38;
  --sage:        #52b788;
  --mint:        #d8f3dc;
  --terra:       #C97B5E;
  --sand:        #F5EFE6;
  --ink:         #1F2A24;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white:    #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Geist', system-ui, sans-serif;

  --radius-sm: 0.75rem;
  --radius:    1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(45,106,79,0.22);
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
[data-lucide] { display: inline-block; vertical-align: middle; }

/* ================================================================
   LAYOUT HELPERS
================================================================ */
.container    { max-width: 1152px; margin: 0 auto; padding: 0 1.25rem; }
.container-md { max-width: 900px;  margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 680px;  margin: 0 auto; padding: 0 1.25rem; }

.section-pad { padding: 7rem 0; }

.section-heading { text-align: center; margin-bottom: 4rem; }
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}
.section-heading p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); }

.btn-outline { background: #ecfdf5; color: var(--forest); border: 1px solid #bbf7d0; }
.btn-outline:hover { background: var(--mint); }

.btn-hero {
  background: var(--white);
  color: var(--forest);
  padding: 1.2rem 2.75rem;
  font-size: 1.05rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.btn-hero:hover { background: #f0fdf4; }

.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--gray-100); }

.btn-block {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-block-primary { background: var(--forest); color: var(--white); }
.btn-block-primary:hover { background: var(--forest-dark); box-shadow: 0 4px 16px rgba(45,106,79,0.3); }
.btn-block-outline { background: #ecfdf5; color: var(--forest); border: 1px solid #bbf7d0; }
.btn-block-outline:hover { background: var(--mint); }
.btn-block-white { background: var(--white); color: var(--ink); }
.btn-block-white:hover { background: var(--gray-100); }

/* ================================================================
   FADE-IN ON SCROLL
================================================================ */
/* Alapból látható (JS nélküli fallback) */
.fade-in { opacity: 1; transform: none; }

/* Ha a JS betöltött, animál */
.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-loaded .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   STICKY MOBILE CTA BAR
================================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-cta.hidden-bar { transform: translateY(100%); opacity: 0; }
.sticky-cta-label .name { font-weight: 600; font-size: 0.875rem; color: var(--gray-800); display: block; }
.sticky-cta-label .sub  { font-size: 0.7rem; color: var(--gray-500); }
.sticky-cta-btn {
  flex-shrink: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--forest);
}
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.nav-links .elementor-nav-menu a,
.nav-links ul li a {
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: var(--gray-500) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links .elementor-nav-menu a:hover,
.nav-links ul li a:hover {
  color: var(--forest) !important;
}
.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 999px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  text-decoration: none !important;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--ink) !important;
  color: #fff !important;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.25rem 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
  border: 1px solid rgba(134,239,172,0.4);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
.hero-cta-pulse { animation: gentle-pulse 2.4s ease 1.8s 3; }

/* ================================================================
   HOW IT WORKS
================================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}
.step { text-align: center; }
.step-icon {
  width: 5rem; height: 5rem;
  background: var(--mint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-size: 0.7rem; font-weight: 700;
  color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.step h3 { font-weight: 600; font-size: 1.15rem; color: var(--gray-900); margin-bottom: 0.75rem; }
.step p   { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

.usda-teaser {
  margin-top: 4rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 32rem;
  margin-left: auto; margin-right: auto;
}
.usda-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}
.usda-row { display: flex; gap: 0.75rem; }
.usda-input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.usda-input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.usda-input::placeholder { color: var(--gray-400); }
.usda-btn {
  background: var(--forest); color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s;
}
.usda-btn:hover { background: var(--forest-dark); }
.usda-result { margin-top: 0.75rem; font-size: 0.875rem; color: var(--gray-500); min-height: 1.25rem; }

@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   GALLERY
================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-card:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; color: var(--white);
}
.gallery-info .g-title { font-weight: 600; font-size: 0.875rem; }
.gallery-info .g-loc   { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin: 0.125rem 0 0.5rem; }
.gallery-badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.7rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.625rem;
}
.gallery-cta { text-align: center; margin-top: 3rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   SAMPLE PLAN PREVIEW
================================================================ */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.sample-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.sample-card:hover {
  border-color: var(--forest);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sample-thumb {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
  overflow: hidden;
  flex-shrink: 0;
}

.sample-thumb--bg {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.6s ease;
}
.sample-card:hover .sample-thumb--bg {
  background-size: 108%;
}

.sample-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.sample-thumb-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(45,106,79,0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}

.sample-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 0.75rem;
  overflow: hidden;
}
.sample-inner-label {
  font-size: 0.625rem; font-weight: 700; color: var(--forest);
  border-bottom: 1px solid var(--gray-100); padding-bottom: 0.375rem; margin-bottom: 0.5rem;
}
.sample-footer {
  padding: 0.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.sample-footer span { font-size: 0.75rem; font-weight: 500; color: var(--gray-700); }
.sample-hint { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 1.5rem; }
@media (min-width: 768px) { .sample-grid { grid-template-columns: repeat(4, 1fr); } }

/* plant list rows in sample thumb */
.plant-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.plant-dot { width: 1.5rem; height: 1.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plant-names p { font-size: 0.625rem; font-weight: 600; color: var(--gray-700); }
.plant-names small { font-size: 0.5625rem; color: var(--gray-400); }
.plant-row-ghost { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; opacity: 0.35; }
.plant-dot-ghost { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--gray-100); flex-shrink: 0; }
.plant-name-ghost { flex: 1; height: 0.5rem; background: var(--gray-100); border-radius: 4px; }

/* calendar thumb grid */
.cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.25rem; }
.cal-cell { border-radius: 4px; padding: 0.25rem; text-align: center; }
.cal-cell .m  { font-size: 0.5rem; font-weight: 700; }
.cal-cell .t  { font-size: 0.5rem; margin-top: 0.125rem; }
.cal-cell--gray { background: var(--gray-50); }
.cal-cell--gray .m { color: var(--gray-400); }
.cal-cell--gray .t { color: var(--gray-500); }
.cal-cell--green { background: #f0fdf4; }
.cal-cell--green .m { color: var(--forest); }
.cal-cell--green .t { color: #15803d; }
.cal-cell--ghost { background: var(--gray-50); opacity: 0.35; grid-column: span 3; }
.cal-cell--ghost .t { font-size: 0.5rem; color: var(--gray-400); }

/* ================================================================
   TRUST STRIPE
================================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.trust-icon {
  width: 3rem; height: 3rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item h3 { font-weight: 700; color: var(--white); font-size: 1.05rem; line-height: 1.3; }
.trust-item p  { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.25rem; }
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .trust-item { flex-direction: row; align-items: flex-start; }
}

/* ================================================================
   FEATURES
================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(216,243,220,0.4); }
.feature-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.feature-card h3 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; font-size: 0.9375rem; }
.feature-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }
.feature-tag { font-size: 0.7rem; color: var(--gray-400); font-weight: 400; margin-left: 0.25rem; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   FOR WHOM
================================================================ */
.forwho-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.forwho-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.forwho-icon {
  width: 3rem; height: 3rem;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.forwho-card h3 { font-weight: 600; color: var(--gray-900); font-size: 1.05rem; margin-bottom: 0.5rem; }
.forwho-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }
@media (min-width: 768px) { .forwho-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   COMPARISON TABLE
================================================================ */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.comparison-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.comparison-table thead tr { background: var(--forest); color: var(--white); }
.comparison-table th { padding: 1rem 1.5rem; font-weight: 600; text-align: center; }
.comparison-table th:first-child { text-align: left; }
.comparison-table .th-muted { color: rgba(255,255,255,0.7); }
.comparison-table .th-icon { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.comparison-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background 0.15s; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--gray-50); }
.comparison-table td { padding: 1rem 1.5rem; color: var(--gray-700); }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .td-muted { color: var(--gray-500); font-size: 0.75rem; }
.comparison-badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: #f0fdf4; color: var(--forest);
  font-weight: 600; font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ================================================================
   PRICING
================================================================ */
.pricing-intro { text-align: center; margin-bottom: 4rem; }
.pricing-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}
.pricing-intro .sub { font-size: 0.875rem; color: var(--gray-600); margin-top: 1.25rem; max-width: 38rem; margin-left: auto; margin-right: auto; }
.pricing-intro .free-note { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.75rem; line-height: 1.6; max-width: 38rem; margin-left: auto; margin-right: auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  padding-bottom: 2rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.pricing-card--popular {
  border: 2px solid var(--forest);
  position: relative;
  transform: scale(1.06);
  box-shadow: 0 24px 64px rgba(45,106,79,0.2);
}
.pricing-card--popular:hover { transform: scale(1.06) translateY(-4px); }

.pricing-card--dark {
  background: var(--terra);
  border: 2px solid rgba(255,255,255,0.08);
}
.pricing-card--dark:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }

.pricing-recommended {
  position: absolute; top: -1rem; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 0.375rem;
}

.pricing-tier {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.pricing-tier--green  { color: #16a34a; }
.pricing-tier--forest { color: var(--forest); }
.pricing-tier--lime   { color: #4ade80; }

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
}
.pricing-card--dark .pricing-amount { color: var(--white); }
.pricing-currency { color: var(--gray-400); margin-left: 0.25rem; font-size: 0.875rem; }
.pricing-card--dark .pricing-currency { color: rgba(255,255,255,0.5); }
.pricing-period { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; margin-bottom: 1.5rem; }
.pricing-card--dark .pricing-period { color: rgba(255,255,255,0.45); }

.pricing-features { list-style: none; margin-bottom: 2.25rem; min-height: 10rem; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--gray-600);
  margin-bottom: 0.875rem;
}
.pricing-features li.inherited { color: var(--gray-400); font-style: italic; }
.pricing-features li.strong    { color: var(--gray-700); font-weight: 500; }
.pricing-card--dark .pricing-features li          { color: #d1d5db; }
.pricing-card--dark .pricing-features li.inherited { color: rgba(255,255,255,0.4); }
.pricing-features .li-note { font-size: 0.7rem; font-weight: 400; margin-left: 0.25rem; }
.pricing-features .li-note--light { color: var(--gray-400); }
.pricing-features .li-note--dark  { color: rgba(255,255,255,0.45); }

.pricing-footer { text-align: center; font-size: 0.75rem; color: var(--gray-500); margin-top: 0.5rem; }

@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { display: flex; gap: 0.125rem; margin-bottom: 1.25rem; }
.testimonial-text {
  font-size: 0.875rem; color: var(--gray-700);
  line-height: 1.75; font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.testimonial-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.875rem; flex-shrink: 0;
}
.ta--terra  { background: rgba(201,123,94,0.15); color: var(--terra); }
.ta--blue   { background: #dbeafe; color: #1d4ed8; }
.ta--purple { background: #ede9fe; color: #6d28d9; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-800); }
.testimonial-meta { font-size: 0.75rem; color: var(--gray-500); }
.testimonials-note { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-bottom: 3.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   FAQ
================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left; background: none; cursor: pointer;
  transition: background 0.2s;
}
.faq-btn:hover { background: var(--gray-50); }
.faq-question { font-weight: 500; color: var(--gray-900); font-size: 0.875rem; padding-right: 1rem; }
.faq-arrow { flex-shrink: 0; color: var(--gray-400); transition: transform 0.3s; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-body.open { max-height: 16rem; }
.faq-answer { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

/* ================================================================
   FINAL CTA
================================================================ */
.final-cta {
  position: relative;
  padding: 9rem 1.25rem;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(45,106,79,0.84); }
.final-cta-content {
  position: relative; z-index: 10;
  color: var(--white);
  max-width: 44rem; margin: 0 auto;
}
.final-cta-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #86efac; margin-bottom: 1.5rem;
}
.final-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.75rem;
}
.final-cta-lead { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 2.75rem; }
.final-cta-checks {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 1.75rem; margin-top: 2.5rem;
}
.final-check {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
}

/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--ink); padding: 4rem 1.25rem; }
.footer-subscribe {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  margin-bottom: 3rem;
}
.footer-subscribe h3 {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.5rem;
}
.footer-subscribe p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer-sub-form {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 28rem; margin: 0 auto;
}
.footer-email {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem; font-family: var(--font-body);
  color: var(--white); outline: none;
  transition: border-color 0.2s;
}
.footer-email::placeholder { color: rgba(255,255,255,0.3); }
.footer-email:focus { border-color: var(--sage); }
.footer-sub-btn {
  background: var(--sage); color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  flex-shrink: 0; cursor: pointer;
  transition: background 0.2s;
}
.footer-sub-btn:hover { background: var(--mint); }
.footer-mid {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.375rem; color: var(--white);
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem; list-style: none;
}
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}
@media (min-width: 640px) {
  .footer-sub-form { flex-direction: row; }
  .footer-mid { flex-direction: row; justify-content: space-between; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ================================================================
   LIGHTBOX
================================================================ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(31,42,36,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px; width: 92%;
  max-height: 88vh; overflow-y: auto;
  padding: 2.5rem; position: relative;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover { background: var(--gray-200); }
.lightbox-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: 0.5rem;
}
.lightbox-content .lb-sub { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.lightbox-note { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 1rem; }

/* care calendar in lightbox */
.cal-lightbox { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (min-width: 480px) { .cal-lightbox { grid-template-columns: repeat(4, 1fr); } }
.cal-lb-cell { background: var(--gray-50); border-radius: var(--radius-sm); padding: 0.75rem; }
.cal-lb-cell .m { font-size: 0.75rem; font-weight: 700; color: var(--forest); margin-bottom: 0.25rem; }
.cal-lb-cell .t { font-size: 0.75rem; color: var(--gray-600); line-height: 1.4; }

/* planting map in lightbox */
.planting-map {
  background: #f0fdf4;
  border-radius: var(--radius);
  aspect-ratio: 1;
  max-width: 22rem; margin: 0 auto;
  position: relative;
  border: 2px dashed var(--gray-200);
}
.map-dot {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; border: 2px solid;
}
.map-compass {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  font-size: 0.7rem; color: var(--gray-400);
  background: rgba(255,255,255,0.7);
  border-radius: 4px; padding: 0.125rem 0.375rem;
}

/* pricing dots */
.care-dots { display: flex; gap: 3px; }
.care-dot { width: 8px; height: 8px; border-radius: 50%; }
.care-dot--on  { background: #22c55e; }
.care-dot--off { background: var(--gray-200); }

/* plant table in lightbox */
.plant-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.plant-table thead tr { border-bottom: 1px solid var(--gray-100); }
.plant-table th { text-align: left; padding-bottom: 0.5rem; font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; padding-right: 1rem; }
.plant-table tbody tr { border-bottom: 1px solid var(--gray-50); }
.plant-table tbody tr:last-child { border: none; }
.plant-table td { padding: 0.625rem 1rem 0.625rem 0; color: var(--gray-700); }
.plant-table td.latin { color: var(--gray-400); font-style: italic; font-size: 0.75rem; }
.plant-table td.ht { color: var(--gray-500); }

/* ================================================================
   HOGYAN MŰKÖDIK PAGE
================================================================ */

/* --- Hero --- */
.how-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 68px;
}
.how-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.how-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(0,0,0,0.05) 0%,
    rgba(31,42,36,0.88) 100%
  );
}
.how-hero-content {
  position: relative; z-index: 10;
  color: var(--white);
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}
.how-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 1rem 0 1.5rem;
}
.how-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
/* 01 → 02 → 03 navigáció a hero-ban */
.how-hero-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.how-hero-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.how-hero-nav-item:hover { color: rgba(255,255,255,0.9); }
.how-hero-nav-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage);
}
.how-hero-nav-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
}

/* --- Szekció elválasztó (01 / 02 / 03) --- */
.how-section-marker {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--gray-100);
}
.how-section-marker--sand {
  background: var(--sand);
  border-top-color: rgba(0,0,0,0.06);
}
.how-section-marker-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.how-section-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.how-section-num--light { color: rgba(255,255,255,0.15); }
.how-section-label h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0.375rem 0 0.875rem;
}
.how-section-label--light h2 { color: var(--white); }
.how-section-label p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 44rem;
}

/* --- 6 adatpont kártya grid --- */
.data-attrs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.data-attr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.data-attr-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.data-attr-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.data-attr-icon--climate { background: #fef3c7; }
.data-attr-icon--size    { background: var(--mint); }
.data-attr-icon--care    { background: #ede9fe; }
.data-attr-icon--soil    { background: rgba(201,123,94,0.12); }
.data-attr-icon--water   { background: #dbeafe; }
.data-attr-icon--sun     { background: #fef9c3; }
.data-attr-card h3 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.data-attr-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}
@media (min-width: 640px)  { .data-attrs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .data-attrs-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Kérdőív szekció (kétoszlopos layout) --- */
.how-quiz-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .how-quiz-section { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.how-quiz-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
}
.how-quiz-text > p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.how-questions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
.how-q-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.how-q-icon {
  width: 1.75rem; height: 1.75rem;
  background: rgba(82,183,136,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.how-q-item strong { color: var(--gray-900); }
.how-q-item span   { color: var(--gray-500); }
.how-time-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  background: rgba(45,106,79,0.08);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
}
.how-time-note strong { color: var(--forest); }

/* --- Quiz app mockup kártya --- */
.how-quiz-mockup-wrap {
  display: flex;
  justify-content: center;
}
.quiz-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.16);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}
.quiz-mockup-header {
  background: var(--forest);
  padding: 1.25rem 1.5rem 1rem;
}
.quiz-brand {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.quiz-progressbar {
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.quiz-progressbar-fill {
  height: 100%;
  background: var(--sage);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz-step-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
}
.quiz-mockup-body { padding: 1.75rem 1.5rem 1.25rem; }
.quiz-q-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.quiz-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quiz-choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.quiz-choice--active {
  border-color: var(--forest);
  background: rgba(45,106,79,0.06);
  color: var(--forest);
  font-weight: 500;
}
.quiz-mockup-footer { padding: 0 1.5rem 1.5rem; }
.quiz-next-btn {
  display: block;
  width: 100%;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}
.quiz-next-btn:hover { background: var(--forest-dark); }

/* --- Kertstílusok grid --- */
.garden-styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}
.garden-style-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.garden-style-card:hover { transform: scale(1.02); }
.garden-style-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%);
  transition: opacity 0.3s;
}
.garden-style-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.125rem;
  z-index: 1;
}
.garden-style-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.garden-style-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
/* 7. kártya: kétszer akkora mobilon is */
.garden-style-card--wide { grid-column: span 2; }
@media (min-width: 768px) {
  .garden-styles-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }
  .garden-style-card { height: 260px; }
  .garden-style-card--wide {
    grid-column: span 1; /* reset */
  }
}

/* --- Folyamatábra szekció (sötét) --- */
.process-section {
  background: var(--forest);
  padding: 6rem 1.25rem;
}
.how-section-marker-inner--light .eyebrow { color: var(--sage); }
.how-section-marker-inner--light h2       { color: var(--white); }
.how-section-marker-inner--light p        { color: rgba(255,255,255,0.6); }

/* Folyamatábra */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
/* Vertikális összekötő vonal mobilon */
.process-flow::before {
  content: '';
  position: absolute;
  left: 2.375rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 2px;
  background: rgba(255,255,255,0.12);
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0 0 2.5rem;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }

.process-step-icon-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.process-step-icon {
  width: 4.75rem; height: 4.75rem;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-step-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 1.375rem; height: 1.375rem;
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.process-step-content { padding-top: 0.75rem; }
.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.process-time {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
}

/* Desktop: vízszintes flow */
@media (min-width: 768px) {
  .process-flow {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Vízszintes összekötő vonal */
  .process-flow::before {
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    top: 2.375rem;
    bottom: auto;
    width: auto;
    height: 2px;
  }
  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem 0;
  }
  .process-step-icon { margin-bottom: 1.25rem; }
  .process-step-content { padding-top: 0; }
  /* Nyíl a lépések között */
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -0.625rem;
    top: 1.5rem;
    color: rgba(255,255,255,0.25);
    font-size: 1.25rem;
    z-index: 2;
  }
}

/* --- AI feature lista --- */
.how-ai-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.how-ai-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.how-ai-list li i { flex-shrink: 0; margin-top: 0.2rem; }
.how-ai-list strong { color: var(--gray-900); }

/* --- Teljes szélességű kép + szöveg overlay (AI látványterv) --- */
.how-image-feature {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.how-image-feature-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.how-image-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(31,42,36,0.92) 0%,
    rgba(31,42,36,0.6) 55%,
    rgba(31,42,36,0.1) 100%
  );
}
.how-image-feature-content {
  position: relative; z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.25rem;
  color: var(--white);
}
.how-image-feature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0.75rem 0 1.5rem;
  max-width: 22rem;
}
.how-image-feature-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 32rem;
}

/* --- AI idézet blokk --- */
.how-ai-quote {
  background: var(--sand);
  padding: 4rem 1.25rem;
}
.how-ai-quote-inner {
  position: relative;
  padding: 0 0 0 3rem;
  max-width: 640px;
}
.how-ai-quote-mark {
  position: absolute;
  left: -0.25rem;
  top: -1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--mint);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.how-ai-quote-inner p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.85;
  font-style: italic;
}
.how-ai-quote-inner strong { color: var(--gray-900); font-style: normal; }
.how-ai-quote-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-top: 1.5rem;
  background: rgba(45,106,79,0.08);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
}
.how-ai-quote-time strong { color: var(--forest); }

/* --- Feature csoportok (03) --- */
.hw-features-section {}
.hw-features-group {
  padding: 5rem 1.25rem;
  background: var(--white);
}
.hw-features-group--light  { background: var(--gray-50); }
.hw-features-group--terra  { background: rgba(201,123,94,0.06); }

.hw-group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hw-group-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}
.tier-badge--all    { background: #f0fdf4; color: var(--forest); }
.tier-badge--full   { background: #eff6ff; color: #1d4ed8; }
.tier-badge--master { background: rgba(201,123,94,0.14); color: var(--terra); }

.hw-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.hw-features-grid--3 { /* override ha 3 kártya */ }
@media (min-width: 640px)  { .hw-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .hw-features-grid     { grid-template-columns: repeat(3, 1fr); }
  /* 5 kártyánál az utolsó sor 2 kártya középre, ugyanaz a trükk mint a belief-grid */
  .hw-features-grid:not(.hw-features-grid--3) { grid-template-columns: repeat(6, 1fr); }
  .hw-features-grid:not(.hw-features-grid--3) .hw-feature-card { grid-column: span 2; }
  .hw-features-grid:not(.hw-features-grid--3) .hw-feature-card:nth-child(4) { grid-column: 2 / span 2; }
  .hw-features-grid:not(.hw-features-grid--3) .hw-feature-card:nth-child(5) { grid-column: 4 / span 2; }
}

.hw-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hw-features-group--light .hw-feature-card { background: var(--white); }
.hw-features-group--terra .hw-feature-card { background: var(--white); }
.hw-feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.hw-feature-icon {
  width: 3rem; height: 3rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hw-features-group--light .hw-feature-icon { background: #eff6ff; }
.hw-features-group--terra .hw-feature-icon { background: rgba(201,123,94,0.1); }
.hw-feature-body h4 {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.hw-feature-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.hw-feature-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

/* --- Final CTA --- */
.how-final-cta {
  position: relative;
  padding: 9rem 1.25rem;
  text-align: center;
  overflow: hidden;
}
.how-final-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.how-final-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(30,77,56,0.87);
}
.how-final-cta-content {
  position: relative; z-index: 10;
  max-width: 44rem;
  margin: 0 auto;
  color: var(--white);
}
.how-final-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0.75rem 0 1.5rem;
}
.how-final-cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ================================================================
   A GeneratePress container constraint feloldása teljes szélességű oldalakon */
body.full-width-content #page.container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ================================================================
   RÓLUNK (ABOUT) PAGE
================================================================ */

/* --- Page Hero --- */
.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 68px;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.08) 0%,
    rgba(45,106,79,0.85) 100%
  );
}
.about-hero-content {
  position: relative; z-index: 10;
  color: var(--white);
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 1rem 0 1.5rem;
}
.about-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* --- Split sections (szöveg + kép egymás mellett) --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
.about-split--light { background: var(--gray-50); }
.about-split--sand  { background: var(--sand); }

.about-split-text {
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0.5rem 0 1.5rem;
}
.about-split-text p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about-split-text p:last-of-type { margin-bottom: 0; }

.about-split-image {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

/* Mobil: kép mindig a szöveg UTÁN */
.about-split-image { order: 2; }
.about-split-text  { order: 1; }

/* Desktop: 50-50 elrendezés */
@media (min-width: 768px) {
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-split-text  { padding: 5rem 4rem; order: unset; }
  .about-split-image { min-height: unset; order: unset; }
  /* Fordított: kép bal, szöveg jobb */
  .about-split--reverse .about-split-image { order: 1; }
  .about-split--reverse .about-split-text  { order: 2; }
}
@media (min-width: 1024px) {
  .about-split-text { padding: 6rem 5rem; }
}

/* Idézet-sor a szövegen belül */
.about-story-aside {
  font-style: italic;
  color: var(--gray-400) !important;
  border-left: 3px solid var(--mint);
  padding-left: 1rem;
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}

/* --- Teljes szélességű képsáv --- */
.about-image-strip {
  position: relative;
  height: 48vh;
  background-size: cover;
  background-position: center 65%;
  display: flex;
  align-items: flex-end;
}
.about-image-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
}
.about-image-strip-caption {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-style: italic;
  padding: 1.25rem 1.5rem;
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
}

/* --- Eredet fact-kártya --- */
.about-origin-fact {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.about-origin-fact-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--mint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-origin-fact strong { color: var(--gray-900); }

/* --- Értékeink kártyák (5 db: 3+2, utolsó sor centrálva) --- */
.belief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.belief-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--mint);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.belief-card:hover {
  border-color: var(--sage);
  background: rgba(216,243,220,0.2);
  box-shadow: var(--shadow);
}
.belief-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.belief-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.belief-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
}
@media (min-width: 640px) {
  .belief-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  /* 6 virtuális oszlop: 3+2, utolsó sor középre */
  .belief-grid { grid-template-columns: repeat(6, 1fr); }
  .belief-card { grid-column: span 2; }
  .belief-card:nth-child(4) { grid-column: 2 / span 2; }
  .belief-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* --- Fotómozaik (3 kép) --- */
.about-photo-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.about-photo-mosaic-item {
  background-size: cover;
  background-position: center;
  min-height: 260px;
  transition: opacity 0.3s;
}
.about-photo-mosaic-item:hover { opacity: 0.92; }

@media (min-width: 640px) {
  /* Nagy kép bal (portrait), két kis kép jobbra egymás alatt */
  .about-photo-mosaic {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 280px 280px;
    height: 560px;
  }
  .about-photo-mosaic-item--tall {
    grid-row: span 2;
    min-height: unset;
  }
  .about-photo-mosaic-item:not(.about-photo-mosaic-item--tall) {
    min-height: unset;
  }
}

/* --- Remény szekció — teljes kép + overlay --- */
.about-hope-section {
  position: relative;
  padding: 9rem 1.25rem;
  text-align: center;
  overflow: hidden;
}
.about-hope-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.about-hope-overlay {
  position: absolute; inset: 0;
  background: rgba(30,77,56,0.88);
}
.about-hope-content {
  position: relative; z-index: 10;
  max-width: 42rem;
  margin: 0 auto;
}
.about-hope-leaf {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.25rem;
}
.about-hope-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2.25rem;
}
.about-hope-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-hope-content p:last-child { margin-bottom: 0; }
.about-hope-content strong { color: var(--white); }

/* --- Számok szekció --- */
.about-stats-section {
  background: var(--ink);
  padding: 5rem 1.25rem;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 1.5rem;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.about-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
@media (min-width: 640px) {
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .about-stats-grid { grid-template-columns: repeat(5, 1fr); }
}

/* --- Kapcsolat kártya --- */
.about-contact-card {
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-contact-icon {
  width: 4rem; height: 4rem;
  background: var(--mint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.about-contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.about-contact-card > p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 30rem;
  margin: 0 auto 2rem;
}
.about-email-link {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--sage);
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.about-email-link:hover { color: var(--forest-dark); }
.about-contact-note {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
  line-height: 1.7;
}