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

:root {
  --bg:          #0a0a0a;
  --bg-alt:      #0f1a0f;
  --bg-nav:      #051005;
  --green:       #0a5b0a;
  --green-light: #3ca03c;
  --green-dark:  #052b05;
  --orange:      #ed6000;
  --orange-dark: #c45000;
  --card-bg:     #1a1a1a;
  --card-border: rgba(60,160,60,.22);
  --text:        #8a9e8a;
  --text-dim:    rgba(255,255,255,.55);
  --white:       #ffffff;
  --border:      rgba(255,255,255,.07);
  --f-title:     'Nunito Sans', sans-serif;
  --f-body:      'Inter', sans-serif;
  --navbar-h:    70px;
  --max:         1200px;
  --ease:        .22s ease;
  --r-sm:        6px;
  --r:           10px;
  --r-lg:        16px;
  --r-xl:        24px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }

body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: var(--f-body); cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section         { padding: 100px 0; }
.section--white  { background: #fff; }


/* ═══════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: 5px 16px;
  border: 1px solid rgba(60,160,60,.3);
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-tag--dark { color: var(--green); border-color: rgba(10,91,10,.25); }

.section-title {
  font-family: var(--f-title);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title--dark { color: #0c1a0c; }

.section-desc         { font-size: .95rem; opacity: .8; }
.section-desc--dark   { color: #4a5a66; opacity: 1; }


/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(237,96,0,.42); }
.btn-orange--lg   { padding: 16px 40px; font-size: 1.05rem; }
.btn-orange:active { transform: scale(.97); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-outline-white:hover { background: #fff; color: var(--bg); border-color: #fff; transform: translateY(-2px); }
.btn-outline-white:active { transform: scale(.97); }

.btn-portal {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--green);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.btn-portal:hover { background: var(--green-light); transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: var(--bg-nav);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.5); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo          { flex-shrink: 0; line-height: 0; }
.nav-logo img      { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  font-size: .825rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 7px 11px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover,
.nav-link.is-active,
.nav-link.active { color: #fff; background: rgba(255,255,255,.07); }

/* Active link indicator (set dynamically by shared loader) */
.nav-link.active {
  font-weight: 700;
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3ca03c;
  border-radius: 1px;
}
.nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #ed6000;
  border-radius: 50%;
}

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

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  transition: border-color var(--ease), color var(--ease);
}
.lang-toggle:hover { border-color: var(--green-light); color: #fff; }
.lang-toggle .lang-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: inherit;
  line-height: 1;
}
.lang-sep { opacity: .3; margin: 0 1px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,.07); }
.hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full overlay */
.nav-overlay {
  position: fixed;
  inset: var(--navbar-h) 0 0 0;
  background: var(--bg-nav);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 20px;
}
.nav-overlay__links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 13px 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  border-radius: var(--r);
  transition: background var(--ease), color var(--ease);
}
.nav-overlay__links a:hover { background: rgba(255,255,255,.07); color: #fff; }
.overlay-portal-btn { background: var(--green) !important; color: #fff !important; margin-top: 12px; }


/* ═══════════════════════════════════════════════════
   HERO — Full-video background + card stack
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 5% 0 6%;
  overflow: hidden;
  background: #0a0a0a;
}

#heroVideo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.93) 0%,
    rgba(0,0,0,0.80) 35%,
    rgba(0,0,0,0.65) 65%,
    rgba(0,0,0,0.50) 100%);
  z-index: 1;
}

/* ── LEFT ── */
.hero__left {
  position: relative;
  z-index: 2;
  max-width: 520px;
  flex-shrink: 0;
  padding: calc(var(--navbar-h) + 80px) 0 80px;
}

/* Typing cursor */
.typing-cursor {
  color: var(--green-light);
  animation: blink 0.75s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Title */
.hero__title {
  font-family: var(--f-title);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero__title-white { color: var(--white); }
.hero__title-green { color: var(--green-light); }

/* Subtitle */
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.72;
  margin-bottom: 38px;
  max-width: 460px;
}

/* Buttons */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Inline stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat__num {
  font-family: var(--f-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat__sup { color: var(--orange); font-size: 1.2rem; }
.hero-stat__lbl {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-stat__divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.12);
}

/* ── RIGHT: folder / tab widget ── */
.folder-widget {
  position: relative;
  z-index: 3;
  width: 390px;
  flex-shrink: 0;
  align-self: center;
}

.folder-tabs {
  display: flex;
  gap: 3px;
  background: rgba(5,10,5,0.92);
  border: 1px solid rgba(60,160,60,0.25);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0;
}

.folder-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 9px 2px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 8px 8px 0 0;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
  overflow: hidden;
}
.folder-tab:hover { color: rgba(255,255,255,0.75); background: rgba(60,160,60,0.1); }
.folder-tab.active { color: var(--green-light); border-bottom-color: var(--green-light); }
.folder-tab svg { flex-shrink: 0; }
.tab-lbl { line-height: 1; }

.folder-body {
  background: #111a11;
  border: 1px solid rgba(60,160,60,0.3);
  border-radius: 0 0 16px 16px;
  padding: 26px 28px 20px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.folder-panel { display: none; }
.folder-panel.active {
  display: flex;
  flex-direction: column;
  animation: fpIn 0.35s ease;
}
@keyframes fpIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}

.fp-inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.fp-icon {
  width: 56px;
  height: 56px;
  background: #0a5b0a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.fp-title {
  color: #ffffff;
  font-family: var(--f-title);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.fp-desc {
  color: rgba(255,255,255,0.58);
  font-size: 0.875rem;
  line-height: 1.62;
  margin-bottom: 18px;
}

.fp-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color var(--ease);
}
.fp-inner:hover .fp-link { color: var(--orange); }

.fp-progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(60,160,60,0.15);
}
.fp-progress-fill {
  height: 100%;
  background: var(--green-light);
  width: 0%;
}


/* ═══════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════ */
.why-us { background: var(--bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,.35), 0 0 0 1px rgba(60,160,60,.4);
  border-color: rgba(60,160,60,.4);
}

.why-card__icon {
  width: 58px;
  height: 58px;
  border-radius: var(--r);
  background: rgba(60,160,60,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
  transition: background var(--ease);
}
.why-card:hover .why-card__icon { background: rgba(60,160,60,.18); }

.why-card h3 {
  font-family: var(--f-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.why-card p { font-size: .9rem; line-height: 1.65; }


/* ═══════════════════════════════════════════════════
   SERVICES PREVIEW
═══════════════════════════════════════════════════ */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #e8ede8;
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.sp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(10,91,10,.11);
  border-color: var(--green-light);
}

.sp-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  background: rgba(10,91,10,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: background var(--ease);
}
.sp-card:hover .sp-card__icon { background: rgba(10,91,10,.13); }

.sp-card h3 {
  font-family: var(--f-title);
  font-size: 1rem;
  font-weight: 800;
  color: #0c1a0c;
}
.sp-card p   { font-size: .875rem; color: #4a5a66; line-height: 1.62; flex: 1; }

.sp-card__link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  transition: color var(--ease);
  margin-top: auto;
}
.sp-card:hover .sp-card__link { color: var(--orange); }


/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #083808 0%, var(--green) 50%, var(--green-light) 100%);
  padding: 76px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-family: var(--f-title);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner__text p { font-size: .95rem; color: rgba(255,255,255,.82); }


/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar { background: var(--green); padding: 60px 0; }

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat-item__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num {
  font-family: var(--f-title);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--f-title);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--orange);
}
.stat-lbl {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials { background: var(--bg-alt); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.test-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.test-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.28); }

.test-card__stars { color: var(--orange); font-size: .95rem; letter-spacing: 3px; }

.test-card__quote {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}

.test-card__author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.test-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--f-title);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-card__author strong { display: block; font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.test-card__author span   { font-size: .76rem; }


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: var(--bg-nav); color: var(--text-dim); }

.footer__grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 56px;
}

.footer__logo-link img { filter: brightness(10); opacity: .85; }
.footer__desc { font-size: .84rem; line-height: 1.7; margin-top: 16px; max-width: 270px; }

.footer__social { display: flex; gap: 8px; margin-top: 20px; }
.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.footer__social-btn:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.footer__col-title {
  font-family: var(--f-title);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a,
.footer__links span { font-size: .875rem; color: rgba(255,255,255,.52); transition: color var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__links--contact a { line-height: 1.55; }

.footer__tagline {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.32);
  margin-top: 14px;
  text-transform: uppercase;
}

.footer__bottom { border-top: 1px solid rgba(255,255,255,.05); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .77rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 8px;
}


/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.sr.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* Large tablet */
@media (max-width: 1100px) {
  .hero { padding: 0 3% 0 4%; gap: 24px; }
  .hero__left { padding: calc(var(--navbar-h) + 60px) 0 60px; }
  .folder-widget { width: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__desc  { max-width: 100%; }
}

/* Tablet — hide card stack, full-width text */
@media (max-width: 900px) {
  .folder-widget { display: none; }
  .hero { padding: 0; gap: 0; justify-content: flex-start; }
  .hero__left {
    max-width: 100%;
    padding: calc(var(--navbar-h) + 48px) 5% 64px;
  }
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 60%,
      rgba(0,0,0,0.55) 100%);
  }
  .why-grid  { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links                { display: none; }
  .nav-actions .btn-portal  { display: none; }
  .hamburger                { display: flex; }
  .section                  { padding: 72px 0; }
  .section-header           { margin-bottom: 44px; }
  .footer__grid             { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner     { flex-direction: column; text-align: center; }
}

/* Mobile S */
@media (max-width: 540px) {
  .hero__left { padding: calc(var(--navbar-h) + 24px) 5% 40px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-orange,
  .hero__actions .btn-outline-white { justify-content: center; }
  .hero__stats { gap: 16px; }
  .sp-grid     { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: #051005;
  padding: 5rem 2rem 2rem;
  font-family: inherit;
}
.site-footer a { text-decoration: none; }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  padding-bottom: 3rem;
  align-items: flex-start;
}
.footer-brand {
  flex: 0 0 260px;
  min-width: 0;
}
.footer-col {
  flex: 1;
  min-width: 0;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(10);
  display: block;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: rgba(60,160,60,0.2);
  border-color: #3ca03c;
  color: #3ca03c;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.footer-col-accent {
  width: 30px;
  height: 2px;
  background: #3ca03c;
  margin-bottom: 1.2rem;
  border: none;
  display: block;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-links li a:hover { color: #ffffff; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: #3ca03c;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #ffffff; }

.footer-divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-left {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footer-bottom-left span.green { color: #3ca03c; }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-sep {
  color: rgba(255,255,255,0.15);
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-brand {
    flex: 0 0 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    flex: 1;
    min-width: 130px;
  }
}
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .footer-col { flex: 0 0 100%; }
  .footer-brand { flex: 0 0 100%; }
  .footer-bottom { align-items: center; }
}

/* ── Google Reviews section ───────────────────── */
.google-reviews {
  background: #f8fdf8;
  padding: 5rem 2rem;
}
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a1a0a;
}
.stars-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}
.star-rating {
  color: #fbbc05;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.rating-number {
  font-size: 2rem;
  font-weight: 900;
  color: #0a1a0a;
}
.rating-count {
  color: #666;
  font-size: 0.9rem;
}
.btn-review {
  background: #0a5b0a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-review:hover {
  background: #3ca03c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,91,10,0.3);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #e8f0e8;
  transition: all 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #3ca03c;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0a5b0a, #3ca03c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 700;
  color: #0a1a0a;
  font-size: 0.95rem;
}
.reviewer-stars {
  color: #fbbc05;
  font-size: 0.85rem;
}
.google-icon {
  margin-left: auto;
  flex-shrink: 0;
}
.review-text {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.review-service {
  display: inline-block;
  background: #f0f9f0;
  border: 1px solid #c0e0c0;
  color: #0a5b0a;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.reviews-footer {
  text-align: center;
}
.btn-see-all {
  color: #0a5b0a;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 2px solid #3ca03c;
  padding-bottom: 2px;
  transition: all 0.2s;
}
.btn-see-all:hover { color: #3ca03c; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; text-align: center; }
}

/* ── Google Maps embed ────────────────────────── */
.map-container {
  margin-top: 2rem;
  position: relative;
}
.map-directions-btn {
  display: inline-block;
  margin-top: 0.8rem;
  color: #3ca03c;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.map-directions-btn:hover { color: #0a5b0a; }

/* ── Footer Google Review button ─────────────── */
.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  background: rgba(251,188,5,0.1);
  border: 1px solid rgba(251,188,5,0.3);
  color: #fbbc05;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-review-btn:hover {
  background: rgba(251,188,5,0.2);
  border-color: #fbbc05;
}

/* ══════════════════════════════════════════════════
   PORTAL MODAL
══════════════════════════════════════════════════ */
.portal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.portal-modal.open { display: flex; }

.portal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.portal-modal__card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  animation: portalModalIn 0.28s ease;
}
@keyframes portalModalIn {
  from { opacity: 0; transform: translateY(-16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
.portal-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.portal-modal__close:hover { background: #f0f0f0; color: #333; }

.portal-modal__icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #0a5b0a, #3ca03c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: #ffffff;
}
.portal-modal__badge {
  display: inline-block;
  background: rgba(60, 160, 60, 0.1);
  color: #0a5b0a;
  border: 1px solid rgba(60, 160, 60, 0.35);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.9rem;
  display: block;
}
.portal-modal__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.portal-modal__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  margin: 0 0 0.6rem;
}
.portal-modal__cta {
  font-size: 0.82rem;
  color: #999;
  margin: 0 0 1.25rem;
}
.portal-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.portal-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.portal-modal__btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.portal-modal__btn--call {
  background: #0a5b0a;
  color: #ffffff;
}
.portal-modal__btn--call:hover { background: #073d07; }
.portal-modal__btn--whatsapp {
  background: #25d366;
  color: #ffffff;
}
.portal-modal__btn--whatsapp:hover { background: #1ab755; }
