/* =========================================================
   EKOHORYZONT — Design System
   Fonts: Plus Jakarta Sans (body) + Sora (display)
   Primary: #009749  Accent: #AFCC39
   ========================================================= */

/* Fonts loaded async via <link> in HTML */

/* ============ SKIP LINK (a11y + SEO) ============ */
.skip-link {
  position: fixed; top: -9999px; left: var(--s4);
  background: var(--color-primary); color: #fff;
  padding: var(--s2) var(--s4); border-radius: var(--r-md);
  font-weight: 600; font-size: 14px; z-index: 10000;
  text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: var(--s4); }

/* ============ DESIGN TOKENS ============ */
:root {
  /* Brand */
  --green-50:  #F0FAF5;
  --green-100: #D9F0E5;
  --green-200: #A8D9BF;
  --green-500: #009749;
  --green-600: #007D3E;
  --green-700: #006B3C;
  --green-800: #004D2A;
  --green-900: #0D2B1A;
  --lime-400:  #AFCC39;
  --lime-500:  #8CC63F;

  /* Semantic */
  --color-primary:       #009749;
  --color-primary-dark:  #006B3C;
  --color-primary-light: #F0FAF5;
  --color-accent:        #AFCC39;
  --color-accent-hover:  #8CC63F;
  --color-dark:          #0D2B1A;
  --color-text:          #1A2B1E;
  --color-text-sec:      #2e4236;
  --color-text-muted:    #5f7a68;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F7FBF8;
  --color-border:        #E0EDE5;

  /* Typography */
  --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing (4pt scale) */
  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 20px;  --s6: 24px;  --s8: 32px;  --s10: 40px;
  --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;
  --s32: 128px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,107,60,.08);
  --shadow-md:   0 4px 16px rgba(0,107,60,.10);
  --shadow-lg:   0 8px 32px rgba(0,107,60,.14);
  --shadow-xl:   0 16px 48px rgba(0,107,60,.18);
  --shadow-card: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);

  /* Easing */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Transitions */
  --t-fast:   150ms var(--ease-out);
  --t-base:   250ms var(--ease-out);
  --t-slow:   400ms var(--ease-out);
  --t-spring: 350ms var(--ease-spring);

  /* Container */
  --max-w: 1200px;
  --px: clamp(16px, 4vw, 40px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ============ LAYOUT ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; }
p { color: var(--color-text-sec); line-height: 1.75; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 12px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--t-base);
  touch-action: manipulation; white-space: nowrap;
  min-height: 44px;
}
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary-light); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--color-primary-dark); border-color: #fff; }
.btn-white:hover { background: var(--green-50); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--t-base);
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s6); }

.nav-logo {
  display: flex; align-items: center; gap: var(--s3);
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: #fff; transition: var(--t-fast); flex-shrink: 0;
}
.nav.scrolled .nav-logo { color: var(--color-primary-dark); }
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--color-accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--t-fast);
}
.nav.scrolled .nav-logo-img { filter: none; }
.nav-logo-img--white { filter: brightness(0) invert(1) !important; }

.nav-menu { display: flex; align-items: center; gap: var(--s1); }
.nav-link {
  padding: 8px 13px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.9); transition: var(--t-fast);
}
.nav.scrolled .nav-link { color: var(--color-text-sec); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav.scrolled .nav-link:hover { color: var(--color-primary); background: var(--color-primary-light); }
.nav-link.active { color: #fff; background: rgba(255,255,255,.15); }
.nav.scrolled .nav-link.active { color: var(--color-primary); background: var(--color-primary-light); }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-toggle { display: flex; align-items: center; gap: 3px; cursor: pointer; }
.nav-dd-icon { transition: var(--t-fast); }
.nav-dd:hover .nav-dd-icon { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--color-border);
  min-width: 230px; padding: var(--s2);
  opacity: 0; pointer-events: none; transition: var(--t-base);
}
.nav-dd:hover .nav-dd-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a {
  display: flex; align-items: center; gap: var(--s3);
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 14px; color: var(--color-text); transition: var(--t-fast);
}
.nav-dd-menu a:hover { background: var(--color-primary-light); color: var(--color-primary); }
.nav-dd-menu a svg { color: var(--color-primary); flex-shrink: 0; }

.nav-right { display: flex; align-items: center; gap: var(--s4); }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600;
  transition: var(--t-fast); white-space: nowrap;
}
.nav.scrolled .nav-phone { color: var(--color-primary); }
.nav-phone:hover { color: #fff; }
.nav.scrolled .nav-phone:hover { color: var(--color-primary-dark); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: var(--r-sm);
  background: none; border: none; color: inherit;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--t-fast);
}
.nav.scrolled .nav-burger span { background: var(--color-text); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999; background: var(--color-dark);
  padding: 90px var(--px) 40px; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--s2); }
.mobile-nav-links a {
  display: block; padding: 14px 16px; border-radius: var(--r-md);
  font-size: 18px; font-weight: 600; color: #fff; transition: var(--t-fast);
}
.mobile-nav-links a:hover { background: rgba(255,255,255,.08); color: var(--color-accent); }
.mobile-nav-sub { padding-left: var(--s6); }
.mobile-nav-sub a { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.7); padding: 10px 16px; }
.mobile-menu-foot {
  margin-top: auto; padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: var(--s3);
}
.mobile-menu-foot a { display: flex; align-items: center; gap: var(--s3); color: rgba(255,255,255,.7); font-size: 15px; }
.mobile-menu-foot a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, #0D2B1A 0%, var(--green-700) 55%, var(--green-500) 100%);
  overflow: hidden; padding: 120px 0 80px;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px); opacity: .18; z-index: 3;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--color-accent); top: -15%; right: -10%; }
.hero-orb-2 { width: 320px; height: 320px; background: var(--green-500); bottom: -10%; left: -5%; }
@media (max-width: 768px) { .hero-orb { display: none; } }
/* grid bg removed — replaced with botanical deco */
.hero-content { position: relative; z-index: 10; max-width: 700px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: rgba(175,204,57,.15); border: 1px solid rgba(175,204,57,.3);
  color: var(--color-accent); padding: 6px 16px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: var(--s6);
  animation: heroUp .6s ease .1s both;
}
.hero h1 { color: #fff; margin-bottom: var(--s5); animation: heroUp .7s ease .2s both; }
.hero h1 em { color: var(--color-accent); font-style: normal; }
.hero-lead {
  font-size: 18px; color: rgba(255,255,255,.75); max-width: 580px;
  margin-bottom: var(--s8); line-height: 1.7;
  animation: heroUp .7s ease .3s both;
}
.hero-actions { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s12); animation: heroUp .7s ease .4s both; }
.hero-trust { display: flex; align-items: center; gap: var(--s8); flex-wrap: wrap; animation: heroUp .7s ease .5s both; }
.hero-trust-item { display: flex; align-items: center; gap: var(--s2); color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
.hero-trust-item svg { color: var(--color-accent); flex-shrink: 0; }

@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============ STATS BAR ============ */
.stats-bar { background: #fff; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: var(--s6) var(--s8); text-align: center; border-right: 1px solid var(--color-border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: #4A6050; font-weight: 500; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--color-border); }
  .stat-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .stat-num { font-size: 2rem; }
}

/* ============ SECTION LAYOUT ============ */
.section { padding: 112px 0; }
.section-sm { padding: var(--s16) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.65); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--s12); }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--s3);
}
.section-dark .eyebrow { color: var(--color-accent); }
.section-header h2 { margin-bottom: var(--s4); }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ============ SERVICE CARDS ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s6); }
.service-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--r-xl); padding: var(--s8);
  transition: var(--t-base); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0); transform-origin: left; transition: var(--t-base);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px; background: var(--color-primary-light);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5); color: var(--color-primary); transition: var(--t-base);
}
.service-card:hover .svc-icon { background: var(--color-primary); color: #fff; }
.service-card h3 { font-size: 1.1rem; margin-bottom: var(--s3); }
.service-card p { font-size: 14px; line-height: 1.7; margin-bottom: var(--s5); }
.svc-link { display: inline-flex; align-items: center; gap: var(--s2); font-size: 14px; font-weight: 600; color: var(--color-primary); transition: var(--t-fast); }
.svc-link:hover { gap: var(--s3); }

/* ============ ABOUT SECTION ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center; }
.about-img-wrap { position: relative; }
.about-photo {
  width: 100%; border-radius: var(--r-2xl); aspect-ratio: 4/5;
  object-fit: cover;
}
.about-photo-placeholder {
  width: 100%; border-radius: var(--r-2xl); aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.about-badge {
  position: absolute; bottom: var(--s6); right: -20px;
  background: #fff; border-radius: var(--r-lg); padding: var(--s4) var(--s6);
  box-shadow: var(--shadow-xl); display: flex; flex-direction: column;
  align-items: center; gap: 2px; min-width: 120px;
}
.about-badge-n { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--color-primary); line-height: 1; }
.about-badge-l { font-size: 12px; color: var(--color-text-muted); font-weight: 500; text-align: center; }
.about-text { display: flex; flex-direction: column; gap: var(--s6); }
.about-feats { display: flex; flex-direction: column; gap: var(--s4); margin-top: var(--s2); }
.about-feat { display: flex; gap: var(--s4); align-items: flex-start; }
.about-feat-icon {
  width: 40px; height: 40px; min-width: 40px; background: var(--color-primary-light);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.about-feat h3, .about-feat h4, .about-feat-title { font-size: .95rem; margin-bottom: 2px; font-weight: 600; }
.about-feat p { font-size: 14px; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .about-badge { right: var(--s4); }
}

/* ============ TRUST SECTION ============ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--s6); }
.trust-card { text-align: center; padding: var(--s8) var(--s6); }
.trust-icon {
  width: 64px; height: 64px;
  background: rgba(175,204,57,.12); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s5); color: var(--color-accent);
}
.trust-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: var(--s3); }

/* ============ PRICING ============ */
.pricing-table {
  background: #fff; border-radius: var(--r-2xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border); max-width: 780px; margin: 0 auto;
}
.pricing-head {
  display: grid; grid-template-columns: 1fr 160px;
  background: var(--color-primary); padding: var(--s4) var(--s8);
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.pricing-head span:last-child { text-align: right; }
.pricing-row {
  display: grid; grid-template-columns: 1fr 160px;
  align-items: center; padding: var(--s5) var(--s8);
  border-bottom: 1px solid var(--color-border); transition: var(--t-fast);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--color-primary-light); }
.pricing-name { font-size: 15px; font-weight: 500; color: var(--color-text); }
.pricing-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-primary); text-align: right; white-space: nowrap; }
.pricing-row.featured { background: var(--green-50); }
.pricing-row.featured .pricing-name { font-weight: 600; }
.pricing-note {
  padding: var(--s4) var(--s8); font-size: 13px; color: var(--color-text-muted);
  background: var(--green-50); border-top: 1px solid var(--color-border);
  display: flex; align-items: center; gap: var(--s2);
}
@media (max-width: 520px) {
  .pricing-head, .pricing-row { grid-template-columns: 1fr; gap: 4px; padding: var(--s4); }
  .pricing-head span:last-child, .pricing-price { text-align: left; }
}

/* ============ BLOG CARDS ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--s6); }
.blog-card { background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--color-border); transition: var(--t-base); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-slow); }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: var(--s6); }
.blog-tag { display: inline-block; background: var(--color-primary-light); color: var(--color-primary); padding: 4px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; margin-bottom: var(--s3); }
.blog-card h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: var(--s3); }
.blog-card h3 a:hover { color: var(--color-primary); }
.blog-card p { font-size: 14px; margin-bottom: var(--s4); line-height: 1.7; }
.blog-meta { display: flex; align-items: center; gap: var(--s4); font-size: 13px; color: var(--color-text-muted); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: var(--s3); max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--r-lg); background: #fff; overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s4); padding: var(--s5) var(--s6);
  cursor: pointer; font-weight: 600; color: var(--color-dark);
  font-size: 15px; user-select: none; transition: var(--t-fast);
}
.faq-q:hover { color: var(--color-primary); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--color-primary-light); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); transition: var(--t-base);
  font-size: 20px; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 var(--s6) var(--s5); border-top: 1px solid var(--color-border); padding-top: var(--s5); color: var(--color-text-sec); font-size: 15px; line-height: 1.75; }

/* ============ CTA BANNER ============ */
.cta-section {
  background: linear-gradient(140deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: var(--s20) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; pointer-events: none;
  background: radial-gradient(circle, rgba(175,204,57,.08) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: var(--s4); position: relative; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 18px; max-width: 560px; margin: 0 auto var(--s8); position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: var(--s4); flex-wrap: wrap; position: relative; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--s12); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: var(--s6); }
.contact-item { display: flex; gap: var(--s4); align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; min-width: 44px; background: var(--color-primary-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.contact-item-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-muted); margin-bottom: 3px; }
.contact-item-val { font-weight: 600; color: var(--color-dark); font-size: 16px; }
.contact-item-val a:hover { color: var(--color-primary); }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--r-2xl); padding: var(--s10);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: var(--s5); }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--color-text); margin-bottom: var(--s2); }
.form-label em { color: var(--color-primary); font-style: normal; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--color-border); border-radius: var(--r-md);
  font-size: 15px; color: var(--color-text); background: #fff;
  transition: var(--t-fast); outline: none; min-height: 44px;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(0,151,73,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-success { background: #DCFCE7; border: 1px solid #86EFAC; color: #166534; padding: var(--s4) var(--s5); border-radius: var(--r-md); font-size: 14px; margin-bottom: var(--s5); display: none; }
.form-error-msg { background: #FEF2F2; border: 1px solid #FCA5A5; color: #991B1B; padding: var(--s4) var(--s5); border-radius: var(--r-md); font-size: 14px; margin-bottom: var(--s5); display: none; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact-form-wrap { padding: var(--s6); } }

/* ============ LOCATION CHIPS ============ */
.location-chips { display: flex; gap: var(--s2); flex-wrap: wrap; margin-top: var(--s6); }
.loc-chip {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); padding: 6px 14px;
  border-radius: var(--r-full); font-size: 13px; font-weight: 500;
  transition: var(--t-fast);
}
.loc-chip:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ============ FOOTER ============ */
.footer { background: var(--color-dark); color: rgba(255,255,255,.82); padding: var(--s16) 0 var(--s8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s10); margin-bottom: var(--s12); }
.footer-brand p { font-size: 14px; margin: var(--s4) 0 var(--s5); max-width: 280px; line-height: 1.7; }
.footer-socials { display: flex; gap: var(--s3); }
.footer-socials a { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.82); transition: var(--t-fast); }
.footer-socials a:hover { background: var(--color-primary); color: #fff; }
.footer-col h4, .footer-col-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: var(--s4); text-transform: uppercase; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.82); transition: var(--t-fast); }
.footer-links a:hover { color: var(--color-accent); }
.footer-bot { padding-top: var(--s6); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: var(--s4); flex-wrap: wrap; font-size: 13px; }
.footer-bot a:hover { color: var(--color-accent); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  background: linear-gradient(140deg, var(--green-900), var(--green-700));
  padding: 120px 0 60px;
}
.page-hero h1 { color: #fff; margin-bottom: var(--s4); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 620px; }
.page-hero .breadcrumb { color: rgba(255,255,255,.55); margin-bottom: var(--s5); display: flex; gap: 8px; align-items: center; font-size: 14px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb a:hover { color: var(--color-accent); }

/* ============ BLOG POST ============ */
.post-wrap { max-width: 800px; margin: 0 auto; }
.post-meta { display: flex; align-items: center; gap: var(--s6); margin-bottom: var(--s6); flex-wrap: wrap; }
.post-meta-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-text-muted); }
.post-content h2 { font-size: 1.75rem; margin-top: var(--s10); margin-bottom: var(--s5); }
.post-content h3 { font-size: 1.375rem; margin-top: var(--s8); margin-bottom: var(--s4); }
.post-content p { margin-bottom: var(--s5); font-size: 16px; line-height: 1.8; color: var(--color-text-sec); }
.post-content ul, .post-content ol { margin-bottom: var(--s5); padding-left: var(--s6); }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: var(--s2); font-size: 16px; color: var(--color-text-sec); line-height: 1.75; }
.post-content a { color: var(--color-primary); text-decoration: underline; text-decoration-color: transparent; transition: var(--t-fast); }
.post-content a:hover { text-decoration-color: var(--color-primary); }
.post-callout { background: var(--color-primary-light); border-left: 4px solid var(--color-primary); border-radius: 0 var(--r-md) var(--r-md) 0; padding: var(--s5) var(--s6); margin: var(--s8) 0; }
.post-callout p { font-weight: 500; color: var(--color-primary-dark); margin: 0; }
.post-sidebar { position: sticky; top: 100px; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal   { opacity: 0; transform: translateY(32px);  transition: opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1); }
.reveal-r { opacity: 0; transform: translateX(28px);  transition: opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1); }
.show { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: .08s !important; }
.d2 { transition-delay: .16s !important; }
.d3 { transition-delay: .24s !important; }
.d4 { transition-delay: .32s !important; }
.d5 { transition-delay: .42s !important; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; transition: none; } }

/* ============ SCROLL-TO-TOP ============ */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; background: var(--color-primary);
  color: #fff; border-radius: var(--r-full); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: var(--t-base); box-shadow: var(--shadow-lg); z-index: 50;
}
.scroll-top.vis { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary-dark); transform: translateY(-2px) !important; }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s4); }
.mt-8 { margin-top: var(--s8); }
.mb-4 { margin-bottom: var(--s4); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.green { color: var(--color-primary); }
.accent { color: var(--color-accent); }

/* ============ SPIN (loading button) ============ */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .8s linear infinite; display: inline-block; }

/* ============ SERVICE DETAIL PAGE ============ */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: var(--s12); align-items: start; }
.detail-sidebar { background: #fff; border: 1px solid var(--color-border); border-radius: var(--r-xl); padding: var(--s8); box-shadow: var(--shadow-card); }
.detail-sidebar h3 { font-size: 1.1rem; margin-bottom: var(--s5); padding-bottom: var(--s4); border-bottom: 1px solid var(--color-border); }
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a { display: flex; align-items: center; gap: var(--s3); padding: 10px 12px; border-radius: var(--r-sm); font-size: 14px; color: var(--color-text-sec); transition: var(--t-fast); font-weight: 500; }
.sidebar-links a:hover, .sidebar-links a.active { background: var(--color-primary-light); color: var(--color-primary); }
.sidebar-links a svg { color: var(--color-primary); flex-shrink: 0; }
.detail-cta-box { background: linear-gradient(135deg, var(--green-700), var(--green-500)); border-radius: var(--r-xl); padding: var(--s8); color: #fff; margin-top: var(--s6); text-align: center; }
.detail-cta-box h4 { color: #fff; margin-bottom: var(--s3); }
.detail-cta-box p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: var(--s5); }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } .post-sidebar { position: static; } }

/* ============ STEPS LIST ============ */
.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step { display: flex; gap: var(--s6); padding: var(--s8) 0; border-bottom: 1px solid var(--color-border); }
.step:last-child { border-bottom: none; }
.step-num { width: 48px; height: 48px; min-width: 48px; background: var(--color-primary); color: #fff; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.step h3 { font-size: 1.1rem; margin-bottom: var(--s2); }
.step p { font-size: 14px; }

/* ============ ALERT BOXES ============ */
.alert-box { padding: var(--s5) var(--s6); border-radius: var(--r-lg); margin: var(--s6) 0; display: flex; gap: var(--s4); align-items: flex-start; }
.alert-box--info { background: var(--color-primary-light); border-left: 4px solid var(--color-primary); }
.alert-box--info svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.alert-box--warning { background: #FEF9EC; border-left: 4px solid #D97706; }
.alert-box--warning svg { color: #D97706; flex-shrink: 0; margin-top: 2px; }
.alert-box p { margin: 0; font-size: 15px; }
.alert-box--info p { color: var(--color-primary-dark); }
.alert-box--warning p { color: #92400E; }

/* ============ CHECK LIST ============ */
.check-list { display: flex; flex-direction: column; gap: var(--s3); }
.check-list li { display: flex; align-items: flex-start; gap: var(--s3); font-size: 15px; color: var(--color-text-sec); line-height: 1.6; }
.check-list li::before { content: ''; width: 20px; height: 20px; min-width: 20px; background: var(--color-primary); border-radius: var(--r-full); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ============ FEATURES GRID ============ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--s5); }
.feature-item { display: flex; gap: var(--s4); align-items: flex-start; padding: var(--s5); background: #fff; border: 1px solid var(--color-border); border-radius: var(--r-lg); transition: var(--t-base); }
.feature-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-item-icon { width: 44px; height: 44px; min-width: 44px; background: var(--color-primary-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.feature-item h4 { font-size: .95rem; margin-bottom: 4px; }
.feature-item p { font-size: 13px; }

/* ============ PROCESS STEPS (inline grid) ============ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--s6); }
.process-step { text-align: center; padding: var(--s6); }
.process-step-num { width: 52px; height: 52px; background: var(--color-primary); color: #fff; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin: 0 auto var(--s4); }
.process-step h3 { font-size: 1rem; margin-bottom: var(--s2); }
.process-step p { font-size: 14px; }

/* ============ INFO CARDS ============ */
.info-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s5); }
.info-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--r-lg); padding: var(--s6); }
.info-card h4 { margin-bottom: var(--s3); }
.info-card p { font-size: 14px; }

/* ============ TAGS ============ */
.tags { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s6); }

/* ============ HERO BOTANICAL DECORATION ============ */
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 4; }

/* Large botanical leaf silhouettes */
.hero-deco-leaf { position: absolute; }
.hero-deco-leaf--tr {
  width: 580px; height: 580px;
  top: -160px; right: -140px;
  color: rgba(175,204,57,.13);
  animation: leafBreathTR 15s ease-in-out infinite;
}
.hero-deco-leaf--bl {
  width: 440px; height: 440px;
  bottom: -120px; left: -110px;
  color: rgba(255,255,255,.065);
  animation: leafBreathBL 21s ease-in-out 5s infinite;
}
.hero-deco-leaf--rc {
  width: 240px; height: 240px;
  top: 28%; right: 6%;
  color: rgba(175,204,57,.07);
  animation: leafBreathRC 25s ease-in-out 9s infinite;
}

@keyframes leafBreathTR {
  0%, 100% { transform: rotate(22deg) scale(1);    }
  50%       { transform: rotate(30deg) scale(1.07); }
}
@keyframes leafBreathBL {
  0%, 100% { transform: rotate(198deg) scale(1);    }
  50%       { transform: rotate(190deg) scale(1.08); }
}
@keyframes leafBreathRC {
  0%, 100% { transform: rotate(-18deg) scale(1);    }
  50%       { transform: rotate(-10deg) scale(1.05); }
}

/* Rising glow particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles span {
  position: absolute; bottom: -12px; display: block; border-radius: 50%;
  background: radial-gradient(circle, rgba(175,204,57,.6) 0%, transparent 70%);
  animation: particleRise linear infinite;
}
.hero-particles span:nth-child(1)  { width:7px;  height:7px;  left:6%;   animation-duration:12s;   animation-delay:0s;   }
.hero-particles span:nth-child(2)  { width:4px;  height:4px;  left:16%;  animation-duration:9s;    animation-delay:2.8s; background:radial-gradient(circle,rgba(255,255,255,.5) 0%,transparent 70%); }
.hero-particles span:nth-child(3)  { width:10px; height:10px; left:26%;  animation-duration:14s;   animation-delay:5.2s; }
.hero-particles span:nth-child(4)  { width:3px;  height:3px;  left:36%;  animation-duration:10s;   animation-delay:1.4s; background:radial-gradient(circle,rgba(255,255,255,.45) 0%,transparent 70%); }
.hero-particles span:nth-child(5)  { width:6px;  height:6px;  left:47%;  animation-duration:15s;   animation-delay:3.8s; }
.hero-particles span:nth-child(6)  { width:5px;  height:5px;  left:57%;  animation-duration:11s;   animation-delay:7s;   background:radial-gradient(circle,rgba(255,255,255,.55) 0%,transparent 70%); }
.hero-particles span:nth-child(7)  { width:8px;  height:8px;  left:67%;  animation-duration:13.5s; animation-delay:4.5s; }
.hero-particles span:nth-child(8)  { width:4px;  height:4px;  left:75%;  animation-duration:16s;   animation-delay:8s;   background:radial-gradient(circle,rgba(175,204,57,.45) 0%,transparent 70%); }
.hero-particles span:nth-child(9)  { width:6px;  height:6px;  left:84%;  animation-duration:9.5s;  animation-delay:2s;   }
.hero-particles span:nth-child(10) { width:3px;  height:3px;  left:93%;  animation-duration:12.5s; animation-delay:6s;   background:radial-gradient(circle,rgba(255,255,255,.4) 0%,transparent 70%); }

@keyframes particleRise {
  0%   { transform: translateY(0) scale(1);       opacity: 0;  }
  8%   { opacity: 1;                                            }
  90%  { opacity: .35;                                          }
  100% { transform: translateY(-110vh) scale(.25); opacity: 0;  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-deco-leaf { animation: none !important; }
  .hero-particles span { animation: none !important; opacity: 0 !important; }
}

/* ============ HERO WAVE DIVIDER ============ */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 3; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 56px; }

.hero-eyebrow { animation: heroUp .6s ease .1s both; }

/* ============ GOOGLE REVIEWS ============ */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) { .gr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gr-grid { grid-template-columns: 1fr; } }

.gr-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.gr-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.gr-stars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 3px; line-height: 1; }

.gr-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  flex: 1;
  margin: 0;
}
.gr-text::before { content: '\201C'; }
.gr-text::after  { content: '\201D'; }

.gr-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.gr-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.gr-info { flex: 1; min-width: 0; overflow: hidden; }
.gr-name { font-weight: 600; font-size: 14px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-when { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.gr-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
}
.gr-badge svg { width: 16px !important; height: 16px !important; flex-shrink: 0; }

/* Summary bar */
.gr-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 40px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.gr-sum-score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #FBBC04;
  line-height: 1;
}
.gr-sum-right { display: flex; flex-direction: column; gap: 4px; }
.gr-sum-stars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 3px; line-height: 1; }
.gr-sum-label { font-size: 12px; color: #70757a; }
.gr-sum-divider { width: 1px; height: 40px; background: #e0e0e0; }
.gr-sum-brand { display: flex; align-items: center; gap: 8px; }
.gr-sum-brand-name { font-size: .9rem; font-weight: 700; color: #5f6368; }
.gr-sum-brand svg { width: 22px !important; height: 22px !important; }

/* Skeleton */
.gr-skeleton-card { pointer-events: none; }
@keyframes grShimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.gr-sk-line, .gr-sk-foot {
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 75%);
  background-size: 800px 100%;
  animation: grShimmer 1.4s infinite linear;
}
.gr-sk-line  { height: 14px; margin-bottom: 10px; }
.gr-sk-w60  { width: 60%; }
.gr-sk-w80  { width: 80%; }
.gr-sk-w100 { width: 100%; }
.gr-sk-foot { height: 40px; margin-top: 12px; }

/* ============ HOMEPAGE PROCESS ============ */
.proc-row {
  display: flex !important;
  align-items: stretch;
  gap: 20px;
  margin-top: 52px;
  position: relative;
}

/* Connecting gradient line */
.proc-row::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 64px;
  right: 64px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(0,151,73,.6) 0%,
    rgba(175,204,57,.5) 50%,
    rgba(0,151,73,.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.proc-item {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #deeae2;
  padding: 36px 26px 30px;
  transition: transform .28s cubic-bezier(.22,.68,0,1.2), box-shadow .28s ease, border-color .28s ease;
  box-shadow: 0 4px 20px rgba(0,60,20,.07);
  position: relative;
  z-index: 1;
}

/* Top border highlight on hover */
.proc-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #009749, #AFCC39);
  opacity: 0;
  transition: opacity .28s;
}

.proc-item:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,100,40,.15); border-color: #9dcdb0; }
.proc-item:hover::before { opacity: 1; }

.proc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #009749 0%, #006B3C 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,151,73,.38);
  position: relative;
  z-index: 2;
}

.proc-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: #0c1e13;
  margin-bottom: 10px;
  line-height: 1.3;
}

.proc-item p {
  font-size: 14px;
  color: #556657;
  line-height: 1.8;
  margin: 0;
}

.proc-sep {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  margin-top: -24px;
  color: #009749;
  opacity: .4;
  z-index: 2;
  position: relative;
}

@media (max-width: 900px) {
  .proc-row { flex-wrap: wrap; gap: 14px; }
  .proc-row::before { display: none; }
  .proc-item { flex: 1 1 calc(50% - 14px); }
  .proc-sep { display: none !important; }
}
@media (max-width: 500px) {
  .proc-item { flex: 1 1 100%; }
}

/* ===== STEPS WRAP (legacy, kept) ===== */
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  margin-top: var(--s10);
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  color: var(--color-primary);
  opacity: .28;
}
.step-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e4ede8;
  padding: 32px 26px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 2px 16px rgba(0,80,30,.06);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009749 0%, #6abf45 100%);
  border-radius: 20px 20px 0 0;
}
.step-card--last::before {
  background: linear-gradient(90deg, #1a9e55 0%, #009749 100%);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,100,40,.13);
  border-color: #b6d9c2;
}
.step-deco {
  position: absolute;
  top: 2px; right: 12px;
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  color: #009749;
  opacity: .055;
  font-family: var(--font-display);
  user-select: none;
  pointer-events: none;
  letter-spacing: -2px;
}
.step-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #009749 0%, #5db83e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(0,151,73,.28);
}
.step-icon--alt {
  background: linear-gradient(135deg, #0d7a42 0%, #009749 100%);
  box-shadow: 0 6px 18px rgba(0,100,50,.28);
}
.step-icon--success {
  background: linear-gradient(135deg, #009749 0%, #3daa60 100%);
  box-shadow: 0 6px 18px rgba(0,151,73,.32);
}
.step-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #009749;
  background: rgba(0,151,73,.09);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #132b1c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-card p {
  font-size: 13.5px;
  color: #5e7568;
  line-height: 1.72;
  margin: 0;
}
@media (max-width: 960px) {
  .steps-wrap { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step-connector { display: none; }
}
@media (max-width: 520px) {
  .steps-wrap { grid-template-columns: 1fr; gap: 12px; }
}

/* ============ MAP SECTION LAYOUT ============ */
.geo-wrap {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}
.geo-map-col {
  flex: 1 1 0;
  min-width: 0;
}
.geo-info-col {
  width: 360px;
  flex-shrink: 0;
}
.map-legend {
  display: flex;
  gap: 22px;
  margin-top: 14px;
  align-items: center;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.map-leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.map-leg-dot--primary  { background: var(--color-primary); box-shadow: 0 0 0 3px rgba(0,151,73,.2); }
.map-leg-dot--secondary { background: var(--color-accent); }

@media (max-width: 1060px) {
  .geo-wrap { flex-direction: column; }
  .geo-info-col { width: 100%; }
}

/* ============ POLAND MAP (Leaflet) ============ */
.poland-map-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--s12);
  align-items: center;
}
.poland-leaflet-container { min-width: 0; }
#bdo-map {
  height: 460px;
  border-radius: var(--r-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
#bdo-map.map-ready {
  opacity: 1;
  transform: none;
}

/* Custom pulse markers */
.bdo-marker-wrap { background: none !important; border: none !important; }
.bdo-marker {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.bdo-dot {
  position: relative; z-index: 2; border-radius: 50%;
}
.bdo-marker--primary .bdo-dot {
  width: 18px; height: 18px;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0,151,73,.3), 0 2px 8px rgba(0,100,40,.4);
}
.bdo-marker--secondary .bdo-dot {
  width: 11px; height: 11px;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(175,204,57,.25);
}
.bdo-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  animation: bdoPulse 2.8s ease-out infinite;
}
.bdo-marker--primary .bdo-pulse  { background: rgba(0,151,73,.22); }
.bdo-marker--secondary .bdo-pulse { background: rgba(175,204,57,.35); }
.bdo-pulse--d { animation-delay: 1.4s; }
@keyframes bdoPulse {
  0%   { transform: scale(.2); opacity: .9; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Leaflet tooltips (city labels) */
.leaflet-tooltip.bdo-tooltip {
  background: #fff !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 8px !important;
  padding: 3px 10px !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  box-shadow: var(--shadow-sm) !important;
  white-space: nowrap !important;
}
.leaflet-tooltip.bdo-tooltip::before { display: none !important; }
.leaflet-tooltip.bdo-tooltip--primary {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--color-primary-dark) !important;
  border-color: rgba(0,151,73,.3) !important;
}

/* Leaflet UI tweaks */
.leaflet-control-attribution { font-size: 9px !important; }
.leaflet-control-zoom {
  border-radius: 10px !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: var(--shadow-sm) !important;
}
.leaflet-control-zoom a { color: var(--color-text) !important; font-size: 16px !important; }

/* Info panel */
.coverage-badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--color-primary-light); color: var(--color-primary);
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; margin-bottom: var(--s4);
}
.poland-map-info h3 { margin-bottom: var(--s3); font-size: clamp(1.3rem,2.5vw,1.8rem); }
.poland-map-info p { margin-bottom: var(--s6); }

.city-tags { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s6); }
.city-tag {
  padding: 5px 12px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  background: #fff; color: var(--color-text-sec);
  border: 1px solid var(--color-border);
}
.city-tag.featured {
  background: var(--color-primary-light); color: var(--color-primary);
  border-color: rgba(0,151,73,.2); font-weight: 600;
}
.city-tag.more {
  background: var(--color-accent); color: var(--color-dark);
  border-color: transparent; font-weight: 700;
}
.mt-6 { margin-top: var(--s6); }

@media (max-width: 1024px) {
  .poland-map-wrap { grid-template-columns: 1fr; }
  #bdo-map { height: 360px; }
}
@media (max-width: 600px) {
  .geo-map-col {
    margin-left: calc(-1 * clamp(16px, 4vw, 40px));
    margin-right: calc(-1 * clamp(16px, 4vw, 40px));
  }
  #bdo-map {
    height: 320px;
    border-radius: 0;
  }
  .map-legend {
    padding-left: clamp(16px, 4vw, 40px);
  }
}
@media (prefers-reduced-motion: reduce) { .bdo-pulse { animation: none; } }

/* ============ MOBILE FIXES ============ */
@media (max-width:640px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
  .hero { padding: 88px 0 72px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .btn-lg { padding: 14px 24px; }
  .pricing-head, .pricing-row { grid-template-columns: 1fr; gap: 4px; padding: var(--s4); }
  .pricing-head span:last-child, .pricing-price { text-align: left; }
}
@media (max-width:480px) {
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
.nav-link { padding: 10px 13px; }
.footer-socials a { width: 44px; height: 44px; }
.tag { display: flex; align-items: center; gap: 5px; background: var(--color-primary-light); color: var(--color-primary); padding: 6px 14px; border-radius: var(--r-full); font-size: 13px; font-weight: 500; }

/* ============ SCROLL PROGRESS BAR ============ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #009749, #AFCC39);
  z-index: 9998;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 38%, #1f4a2c 0%, #0D2B1A 50%, #060f09 100%);
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), visibility 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.preloader-ring {
  position: absolute;
  width: clamp(240px, 44vw, 360px);
  height: clamp(240px, 44vw, 360px);
  border-radius: 50%;
  border: 1px solid rgba(175,204,57,0.15);
  z-index: 1;
  animation: preloader-ring-pulse 2.8s ease-in-out infinite;
}
.preloader-ring::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(175,204,57,0.07);
  animation: preloader-ring-pulse 2.8s ease-in-out 0.5s infinite;
}
@keyframes preloader-ring-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 1;   }
}
.preloader-logo-wrap {
  position: relative;
  z-index: 2;
  animation: preloader-rise 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.15s forwards;
  opacity: 0;
}
@keyframes preloader-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.84); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.preloader-logo {
  width: clamp(220px, 38vw, 310px);
  height: auto;
  filter: drop-shadow(0 0 32px rgba(175,204,57,0.35)) drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  animation: preloader-pulse 3s ease-in-out 1s infinite;
}
@keyframes preloader-pulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(175,204,57,0.3)) drop-shadow(0 4px 16px rgba(0,0,0,0.6)); }
  50%       { filter: drop-shadow(0 0 52px rgba(175,204,57,0.6)) drop-shadow(0 4px 20px rgba(0,0,0,0.6)); }
}
.preloader-tagline {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: preloader-bar-appear 0.4s ease 0.8s forwards;
}
.preloader-dots span {
  display: inline-block;
  animation: preloader-dot-blink 1.4s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: 0.22s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.44s; }
@keyframes preloader-dot-blink {
  0%, 80%, 100% { opacity: 0.2; }
  40%            { opacity: 1;   }
}
.preloader-bar-wrap {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  width: clamp(140px, 24vw, 200px);
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 9999px;
  overflow: hidden;
  opacity: 0;
  animation: preloader-bar-appear 0.3s ease 0.5s forwards;
}
@keyframes preloader-bar-appear { to { opacity: 1; } }
.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #AFCC39, #8CC63F, #AFCC39);
  background-size: 200% 100%;
  border-radius: 9999px;
  animation: preloader-bar-fill 2.4s cubic-bezier(0.4,0,0.2,1) 0.5s forwards,
             preloader-bar-shine 1.8s linear 0.6s infinite;
}
@keyframes preloader-bar-fill  { to { width: 100%; } }
@keyframes preloader-bar-shine { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

@media (prefers-reduced-motion: reduce) {
  #preloader { transition: none; }
  .preloader-ring      { animation: none; }
  .preloader-logo-wrap { animation: none; opacity: 1; }
  .preloader-logo      { animation: none; }
  .preloader-tagline   { animation: none; opacity: 1; }
  .preloader-bar-wrap  { animation: none; opacity: 1; }
  .preloader-bar-fill  { animation: none; width: 100%; }
}

/* =========================================================
   HERO VIDEO BACKGROUND — YouTube IFrame full-cover
   ========================================================= */
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 ratio: width × 9/16 = height → min-width: 177.78vh */
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(4, 18, 8, 0.90) 0%,
    rgba(7, 26, 12, 0.75) 45%,
    rgba(4, 18, 8, 0.85) 100%
  );
  pointer-events: none;
}

/* =========================================================
   ECO BURST SECTION
   ========================================================= */
.eco-burst {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 40%, #0e2e14 0%, #061209 55%, #020804 100%);
}

.eco-burst-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: var(--s16) var(--s6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eco-burst-eyebrow {
  color: var(--color-accent);
  font-size: 13px;
  letter-spacing: .15em;
  font-weight: 600;
  text-transform: uppercase;
}

.eco-burst-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: var(--s4) 0 var(--s6);
  text-shadow: 0 2px 32px rgba(0,0,0,.5);
}

.eco-burst-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.68);
  margin-bottom: var(--s10);
  max-width: 560px;
  line-height: 1.7;
}

.eco-burst-cta {
  box-shadow: 0 0 32px rgba(175,204,57,.28), 0 4px 24px rgba(0,0,0,.4);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.eco-burst-cta:hover {
  box-shadow: 0 0 56px rgba(175,204,57,.48), 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-2px);
}

/* =========================================================
   SERVICE CARD 3D TILT (JS-driven, CSS provides base)
   ========================================================= */
.service-card {
  transform-style: preserve-3d;
}

/* =========================================================
   STATS BAR — glow reveal
   ========================================================= */
.stats-bar .stat-num {
  transition: text-shadow 0.6s ease;
}
.stats-revealed .stat-num {
  text-shadow: 0 0 24px rgba(175, 204, 57, 0.5);
}

/* =========================================================
   CONTENT-VISIBILITY — skip rendering off-screen sections
   ========================================================= */
.eco-burst,
#uslugi,
.poland-map-section,
.pricing-section,
.cta-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
