/* ══════════════════════════════════════
   GEBO CONSULTING - AGROVA THEME
   ══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #0b2f1f;
  --green-mid:    #123d2a;
  --green-fresh:  #4f7f36;
  --yellow:       #f6c400;
  --yellow-light: #ffd21f;
  --cream:        #f8f6ee;
  --white:        #ffffff;
  --dark:         #111111;
  --muted:        #6b6b6b;
  --radius-card:  20px;
  --shadow-card:  0 4px 32px rgba(0,0,0,0.08);
  --max-w:        1260px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* Lucide icons inline sizing */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
i[data-lucide] svg { width: 1em; height: 1em; stroke-width: 2; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════ SCROLL PROGRESS ══════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ══════════════ BACK TO TOP ══════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(246,196,0,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  z-index: 900;
  font-size: 20px;
  color: var(--dark);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #e0b000; transform: translateY(-3px); }

/* ══════════════ DRAWER BACKDROP ══════════════ */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  z-index: 1100;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

/* ══════════════ DRAWER ══════════════ */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 48px rgba(0,0,0,.18);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.drawer-logo { height: 40px; width: auto; object-fit: contain; }

.drawer-close {
  width: 40px; height: 40px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--dark);
  transition: background .2s;
}
.drawer-close:hover { background: var(--cream); }

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid #f5f5f5;
  transition: background .2s, color .2s;
  font-size: 15px;
}
.drawer-link:last-child { border-bottom: none; }
.drawer-link i { font-size: 18px; color: var(--green-fresh); width: 20px; }
.drawer-link:hover, .drawer-link.active-page { background: var(--cream); color: var(--green-fresh); }

.drawer-bottom {
  padding: 20px 24px 32px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-phone, .drawer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.drawer-phone i, .drawer-email i { color: var(--green-fresh); font-size: 16px; }
.drawer-phone:hover, .drawer-email:hover { color: var(--dark); }

.drawer-cta { justify-content: center; width: 100%; margin-top: 4px; }

.drawer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.drawer-socials a {
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--dark);
  transition: background .2s, color .2s;
}
.drawer-socials a:hover { background: var(--green-deep); color: white; }

/* ══════════════ BUTTONS ══════════════ */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-yellow:hover { background: #e0b000; transform: translateY(-2px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-white:hover { background: #efefef; transform: translateY(-2px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-fresh);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--dark);
  transition: all .2s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--green-fresh);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--green-fresh);
  transition: all .2s;
  width: 100%;
}
.btn-outline-green:hover { background: var(--green-fresh); color: var(--white); }

.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ══════════════ SECTION LABELS ══════════════ */
.section-label {
  display: inline-block;
  background: #fff3cc;
  color: #8a6800;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ══════════════ HEADER ══════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 72px;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}

/* Glassmorphism on scroll */
.header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0,0,0,.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active-page { color: var(--green-fresh); background: var(--cream); }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.header-phone i { font-size: 16px; }
.header-phone:hover { color: var(--green-fresh); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.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); }

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  height: 720px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  margin-top: 72px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,20,10,.82) 0%, rgba(5,20,10,.55) 50%, rgba(5,20,10,.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-left { flex: 1; }

.hero-intro {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  max-width: 340px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-title-shifted { display: block; padding-left: 48px; color: var(--yellow); }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.hero-call i { font-size: 16px; }
.hero-call:hover { color: var(--yellow); }

/* Hero video card */
.hero-video-card {
  position: relative;
  width: 260px;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transition: transform .3s;
}
.hero-video-card:hover { transform: translateY(-4px); }

.hero-card-img { width: 100%; height: 100%; object-fit: cover; }

.play-btn {
  position: absolute;
  top: 16px; left: 16px;
  width: 44px; height: 44px;
  background: rgba(246,196,0,.9);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
  transition: transform .2s, background .2s;
}
.play-btn:hover { transform: scale(1.12); background: var(--yellow); }

.hero-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 20px 16px 12px;
}

/* ══════════════ TRUST BAR ══════════════ */
.trust-bar { background: var(--yellow); }

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 130px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.trust-thumb {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.trust-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  max-width: 200px;
  line-height: 1.35;
}

.trust-badge { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.badge-circle {
  width: 100px; height: 100px;
  border: 3px dashed var(--green-deep);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.badge-icon { font-size: 20px; }

.trust-item-right { justify-content: flex-end; text-align: right; flex-direction: column; align-items: flex-end; }
.trust-stat { font-size: 14px; font-weight: 700; color: var(--dark); max-width: 220px; text-align: right; margin-bottom: 10px; }

.trust-avatars { display: flex; align-items: center; }
.trust-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-plus {
  width: 36px; height: 36px;
  background: var(--green-deep);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-left: -10px;
  border: 2px solid var(--yellow);
}

/* ══════════════ EU BADGE STRIP ══════════════ */
.eu-strip {
  background: var(--white);
  border-bottom: 1px solid #efefef;
  padding: 18px 0;
}
.eu-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.eu-strip-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.eu-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}
.eu-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  padding: 0 20px;
  white-space: nowrap;
}
.eu-badge i { font-size: 15px; color: var(--green-fresh); }
.eu-divider { width: 1px; height: 20px; background: #ddd; flex-shrink: 0; }

/* ══════════════ SERVICES INTRO ══════════════ */
.services-intro {
  background: var(--white);
  padding: 100px 0 48px;
  text-align: center;
}

/* ══════════════ SERVICES GRID ══════════════ */
.services-grid-section { background: var(--white); padding: 0 0 80px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }

.service-card h3 { font-size: 18px; font-weight: 800; margin: 16px 0 10px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

.card-icon {
  width: 56px; height: 56px;
  background: #f0f7e8;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--green-fresh);
}
.card-icon-dark { background: rgba(0,0,0,.1); color: var(--dark); }

.card-white { background: var(--white); box-shadow: var(--shadow-card); border: 1px solid #f0f0f0; }
.card-yellow { background: var(--yellow); }
.card-yellow h3 { color: var(--dark); }
.card-yellow p  { color: rgba(0,0,0,.65); }

.card-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--dark); margin-top: 16px;
}
.card-readmore:hover { text-decoration: underline; }

.card-image { padding: 0; overflow: hidden; }
.card-image img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform .4s; }
.card-image:hover img { transform: scale(1.05); }
.card-image:hover { transform: none; }

.card-image-wide { grid-column: span 2; }
.card-wide { grid-column: span 2; }
.card-pale-yellow { background: #fffbea; border: 1px solid #ffe066; }

.services-cta { text-align: center; }

/* ══════════════ ABOUT ══════════════ */
.about { background: var(--cream); padding: 100px 0; }

.about-inner { display: flex; align-items: center; gap: 72px; }

.about-image { position: relative; flex: 1; flex-shrink: 0; }
.about-image img { width: 100%; border-radius: 24px; object-fit: cover; height: 520px; }

.about-stat-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--yellow);
  border-radius: 18px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(246,196,0,.35);
}
.stat-num { display: block; font-size: 40px; font-weight: 900; color: var(--dark); }
.stat-label { display: block; font-size: 13px; font-weight: 600; color: rgba(0,0,0,.6); }

.about-text { flex: 1; }
.about-text h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; line-height: 1.25; margin-bottom: 20px; text-align: left; max-width: none; }
.about-text p  { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.pill i { font-size: 14px; color: var(--green-fresh); }

.about-stats { display: flex; gap: 32px; margin-bottom: 36px; }
.stat-big { display: block; font-size: 36px; font-weight: 900; color: var(--green-fresh); }
.stat-desc { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ══════════════ SOLUTIONS ══════════════ */
.solutions { background: var(--white); padding: 100px 0; text-align: center; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.solution-item {
  display: flex; gap: 20px;
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius-card);
  transition: box-shadow .2s;
}
.solution-item:hover { box-shadow: var(--shadow-card); }

.solution-icon {
  width: 52px; height: 52px;
  background: #e8f4e0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--green-fresh);
  flex-shrink: 0;
}

.solution-item h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.solution-item p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ══════════════ PRICING ══════════════ */
.pricing { background: var(--cream); padding: 100px 0; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-featured {
  background: var(--green-deep);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(11,47,31,.35);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card-featured .pricing-header p { color: rgba(255,255,255,.7); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.1); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}

.pricing-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.pricing-header p  { font-size: 13px; color: var(--muted); }

.pricing-price { margin: 24px 0; }
.price-amount { font-size: 40px; font-weight: 900; }
.price-currency { font-size: 15px; color: var(--muted); margin-left: 4px; }
.pricing-card-featured .price-currency { color: rgba(255,255,255,.65); }

.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06); color: var(--muted);
}
.pricing-features li i { font-size: 16px; color: var(--green-fresh); flex-shrink: 0; }
.pricing-card-featured .pricing-features li i { color: var(--yellow); }

/* ══════════════ CTA DARK ══════════════ */
.cta-dark { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-dark-bg { position: absolute; inset: 0; }
.cta-dark-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-dark-overlay { position: absolute; inset: 0; background: rgba(11,47,31,.88); }
.cta-dark-content { position: relative; z-index: 2; }
.cta-dark-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: 20px; line-height: 1.1;
}
.cta-dark-content p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 36px; line-height: 1.65; }

/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials { background: var(--white); padding: 100px 0; text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-card); }

.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
  font-size: 18px;
}
.star-filled { color: var(--yellow); }
.star-filled svg { fill: var(--yellow); stroke: var(--yellow); width: 18px; height: 18px; }

.testimonial-card > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 800; }
.testimonial-author span  { font-size: 12px; color: var(--muted); }

/* ══════════════ CONTACT ══════════════ */
.contact { background: var(--cream); padding: 100px 0; }
.contact-inner { display: flex; gap: 72px; align-items: flex-start; }

.contact-image { flex: 1; position: relative; }
.contact-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; }

.contact-info-box {
  position: absolute; bottom: -24px; left: 24px; right: 24px;
  background: var(--green-deep);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.9);
}
.contact-info-item i { font-size: 18px; color: var(--yellow); }
.contact-info-item a { color: rgba(255,255,255,.9); transition: color .2s; }
.contact-info-item a:hover { color: var(--yellow); }

.contact-form-wrap { flex: 1; }
.contact-form-wrap h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin-bottom: 12px; text-align: left; max-width: none; }
.contact-form-wrap > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green-fresh); }
.contact-form textarea { resize: vertical; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: var(--green-deep); color: rgba(255,255,255,.85); }

.footer-top { padding: 72px 0 48px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--yellow); color: var(--dark); }

.footer-col h4 { font-size: 14px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.footer-col a,
.footer-col span { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }

/* ══════════════ STAGGER ANIMATIONS ══════════════ */
.service-card:nth-child(1)  { transition-delay: 0ms; }
.service-card:nth-child(2)  { transition-delay: 80ms; }
.service-card:nth-child(3)  { transition-delay: 160ms; }
.service-card:nth-child(4)  { transition-delay: 240ms; }
.service-card:nth-child(5)  { transition-delay: 120ms; }
.service-card:nth-child(6)  { transition-delay: 200ms; }

.pricing-card:nth-child(1) { transition-delay: 0ms; }
.pricing-card:nth-child(2) { transition-delay: 100ms; }
.pricing-card:nth-child(3) { transition-delay: 200ms; }

.testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonial-card:nth-child(2) { transition-delay: 100ms; }
.testimonial-card:nth-child(3) { transition-delay: 200ms; }

/* ══════════════ INNER PAGE HERO ══════════════ */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  margin-top: 72px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(11,47,31,.78); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.page-hero-content .breadcrumb a { color: var(--yellow); }
.page-hero-content h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: white; line-height: 1.1; text-transform: uppercase; letter-spacing: -.02em; }

/* ══════════════ FAQ ACCORDION ══════════════ */
.faq { background: var(--cream); padding: 100px 0; }
.faq-grid { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #efefef;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--dark);
  user-select: none;
  transition: background .2s;
}
.faq-question:hover { background: var(--cream); }
.faq-question i { font-size: 20px; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ══════════════ MAP ══════════════ */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 400px; border: none; }

/* ══════════════ BLOG GRID ══════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; background: #fff3cc; color: #8a6800; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.blog-card-body h3 { font-size: 17px; font-weight: 800; line-height: 1.35; margin-bottom: 10px; }
.blog-card-body p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); }
.blog-meta i { font-size: 13px; color: var(--green-fresh); }

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { width: 64px; height: 64px; background: #f0f7e8; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--green-fresh); margin: 0 auto 16px; }
.value-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Services detail page */
.service-detail {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid #efefef;
  margin-bottom: 16px;
  overflow: hidden;
}
.service-detail-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  transition: background .2s;
}
.service-detail-header:hover { background: var(--cream); }
.service-detail-header-left { display: flex; align-items: center; gap: 16px; }
.service-detail-icon { width: 48px; height: 48px; background: #f0f7e8; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--green-fresh); }
.service-detail-header h3 { font-size: 17px; font-weight: 800; margin-bottom: 2px; }
.service-detail-header p  { font-size: 13px; color: var(--muted); }
.service-detail-header i.chevron { font-size: 20px; color: var(--muted); transition: transform .3s; }
.service-detail.open .chevron { transform: rotate(180deg); }
.service-detail-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 0 28px;
}
.service-detail.open .service-detail-body { max-height: 600px; padding: 0 28px 24px; }
.service-detail-body ul { margin-top: 12px; padding-left: 16px; display: flex; flex-direction: column; gap: 8px; }
.service-detail-body ul li::marker { color: var(--green-fresh); }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-image-wide { grid-column: span 1; }
  .card-wide { grid-column: span 2; }
  .about-inner { gap: 40px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .header { height: 64px; }
  .header-inner { height: 64px; gap: 16px; }
  .nav { display: none; }
  .header-phone { display: none; }
  .header-actions { margin-left: auto; }
  .header-actions .btn-yellow { display: none; }
  .hamburger { display: flex; }

  .hero { height: auto; min-height: 720px; padding: 100px 0 60px; align-items: flex-start; margin-top: 64px; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-title { font-size: clamp(38px, 10vw, 52px); }
  .hero-title-shifted { padding-left: 16px; }
  .hero-video-card { width: 100%; height: 200px; }

  .trust-inner { flex-direction: column; align-items: center; text-align: center; gap: 28px; padding: 32px 20px; }
  .trust-item { flex-direction: column; text-align: center; }
  .trust-item-right { justify-content: center; align-items: center; }
  .trust-stat { text-align: center; }

  .eu-strip-inner { flex-direction: column; gap: 12px; }
  .eu-badges { justify-content: center; }

  .services-intro { padding: 72px 0 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .card-image-wide, .card-wide { grid-column: span 1; }
  .card-image img { min-height: 220px; }

  .about { padding: 72px 0 96px; }
  .about-inner { flex-direction: column; gap: 40px; }
  .about-image img { height: 280px; }
  .about-stat-card { right: 0; bottom: -20px; padding: 16px 24px; }
  .about-stats { flex-wrap: wrap; gap: 20px; }

  .solutions-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact { padding: 72px 0 48px; }
  .contact-inner { flex-direction: column; gap: 32px; }
  .contact-image img { height: 260px; }
  .contact-info-box { position: static; margin-top: 16px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }

  .page-hero { height: 260px; }

  .back-to-top { bottom: 20px; right: 20px; }
}
