/* ══════════════════════════════
   VARIABLES
══════════════════════════════ */
:root {
  /* Colors */
  --green-deep:   #0a5c3a;
  --green-mid:    #1a8a58;
  --green-light:  #2bb575;
  --green-pale:   #e8f7f0;
  --green-mist:   #f2fbf6;
  --amber:        #e8a020;
  --amber-light:  #fff8e8;
  --white:        #ffffff;

  /* Text */
  --text-dark:    #0d1f17;
  --text-mid:     #2e4a3a;
  --text-muted:   #6b8c7a;

  /* Border */
  --border:       #c8e8d8;
  --border-mid:   #a8d8c0;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(10,92,58,0.08);
  --shadow-md:    0 6px 24px rgba(10,92,58,0.12);
  --shadow-lg:    0 16px 48px rgba(10,92,58,0.18);

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 100px;

  /* Spacing */
  --section-pad: 88px 32px;
  --max-w: 1440px;

  /* Typography */
  --font: 'Noto Sans Georgian', sans-serif;
}


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

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture {
  max-width: 100%;
  display: block;
}

picture {
  width: 100%;
}

.photo-grid__item picture {
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title .green { color: var(--green-mid); }

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,138,88,0.35);
}

.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,138,88,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.btn-outline:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
}


/* ══════════════════════════════
   COMPONENTS — Animations & misc
══════════════════════════════ */

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    transition-delay: 0s;
  }
}

/* Contact form (optional) */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(26,138,88,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  background: var(--green-pale);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-align: center;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 16px;
}


/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .nav {
    padding: 0 22px;
  }
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 19px;
  color: var(--green-deep);
  text-decoration: none;
}

.nav__logo:hover .nav__logo-text {
  color: var(--green-mid);
}

.nav__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav__logo-text {
  color: var(--green-deep);
  transition: color 0.2s ease;
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green-pale);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__links a:hover { color: var(--green-mid); }

.nav__cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.nav__cta:hover {
  background: var(--green-deep) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  font-size: 24px;
  color: var(--green-deep);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 18px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a { font-size: 15px; font-weight: 600; color: var(--text-mid); padding: 4px 0; }
.nav__mobile-menu .nav__cta { text-align: center; padding: 12px; }


/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: linear-gradient(150deg, #063d27 0%, #0d6a40 50%, #15945a 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 32px 90px;
}

.hero__bg-c1,
.hero__bg-c2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg-c1 {
  width: 700px; height: 700px;
  background: rgba(255,255,255,0.04);
  top: -260px; right: -140px;
}

.hero__bg-c2 {
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.025);
  bottom: -100px; left: 38%;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-full);
  padding: 7px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  background: #4ddb97;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge-dot {
    animation: none;
  }
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .accent {
  color: #7ee8b8;
  display: block;
}

.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 500px;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  display: block;
}

/* Hero Visual Card */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  max-width: 300px;
  width: 100%;
}

.hero__card-icon {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
  border-radius: var(--r-md);
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

.hero__card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero__card p {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.hero__price-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(232,160,32,0.45);
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.hero__feature-check {
  width: 22px; height: 22px;
  background: rgba(77,219,151,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ddb97;
  font-size: 12px;
  flex-shrink: 0;
}

.hero__video-card {
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-lg);
}

.hero__video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero__video-caption {
  padding: 18px 20px 24px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
}

/* ── Video Facade ── */
.video-facade {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  background: #000;
  border-radius: inherit;
}
.video-facade__thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.25s ease;
}
.video-facade:hover .video-facade__thumb,
.video-facade:focus-visible .video-facade__thumb {
  opacity: 0.65;
}
.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.video-facade__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 24px;
  border-color: transparent transparent transparent var(--green-deep);
}
.video-facade:hover .video-facade__play,
.video-facade:focus-visible .video-facade__play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--white);
}
.video-facade:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 3px;
}

/* ── Photo Grid ── */
.photo-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.photo-grid__item {
  all: unset;
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4/5;
  background: var(--green-mist);
  /* frame: white inner mat + brand border */
  box-shadow:
    inset 0 0 0 7px var(--white),
    0 0 0 2px var(--border-mid),
    var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-grid__item:hover img,
.photo-grid__item:focus-visible img {
  transform: scale(1.06);
}

.photo-grid__item:hover,
.photo-grid__item:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 7px var(--white),
    0 0 0 2px var(--green-mid),
    var(--shadow-md);
}

.photo-grid__zoom {
  position: absolute;
  inset: 7px;
  border-radius: calc(var(--r-md) - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 92, 58, 0);
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.photo-grid__item:hover .photo-grid__zoom,
.photo-grid__item:focus-visible .photo-grid__zoom {
  opacity: 1;
  background: rgba(10, 92, 58, 0.32);
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
}

.lightbox.open {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.22);
}

.lightbox__prev[disabled],
.lightbox__next[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-family: var(--font);
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__prev,
  .lightbox__next { width: 42px; height: 42px; font-size: 24px; }
}


/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  min-height: 54px;
}

.trust-bar__item:hover {
  border-color: var(--green-mid);
}

.trust-bar__icon {
  width: 30px; height: 30px;
  background: var(--green-mist);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-bar__inner {
    gap: 12px;
  }
  .trust-bar__item {
    flex: 1 1 100%;
    min-width: 0;
  }
}


/* ══════════════════════════════
   SECTIONS — Shared
══════════════════════════════ */
.section {
  padding: var(--section-pad);
}

.section--mist { background: var(--green-mist); }

.section__header {
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto 56px;
}

.section__header .section-desc {
  max-width: 580px;
  margin: 0 auto;
}


/* ══════════════════════════════
   SERVICES GRID
══════════════════════════════ */
.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.services__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .services__grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services__grid--3col {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-card__emoji {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card__tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-top: 18px;
}


/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.pricing__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--green-mid);
  border-width: 2px;
  box-shadow: var(--shadow-sm);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-mid);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-card__amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-card__currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.pricing-card__check {
  width: 20px;
  height: 20px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing__note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing__note a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
}

.steps__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  opacity: 0.25;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px; height: 56px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(26,138,88,0.38);
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Process section video */
.process-video-wrap {
  max-width: var(--max-w);
  margin: 56px auto 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--text-dark);
}

.process-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-video__caption {
  background: var(--white);
  padding: 16px 24px;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}


/* ══════════════════════════════
   USE CASES
══════════════════════════════ */
.uses__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.use-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: default;
}

.use-item:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.use-item__emoji {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.use-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}


/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.reviews__stars { color: var(--amber); font-size: 20px; }

.reviews__grid {
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}

.review-card__stars { color: var(--amber); font-size: 16px; margin-bottom: 14px; }

.review-card__text {
  font-size: 15px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px; height: 42px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-mid);
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.review-card__role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ══════════════════════════════
   FAQ
══════════════════════════════ */
#faq .section__header {
  max-width: 780px;
}
.faq__list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.open { border-color: var(--green-mid); }

.faq__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  gap: 16px;
}

.faq__question:hover { background: var(--green-mist); }

.faq__arrow {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--green-mid);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq__item.open .faq__arrow { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.open .faq__answer { max-height: 220px; }

.faq__answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.7;
}


/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0d7a4a 100%);
  text-align: center;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -180px; left: -100px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-section__phone {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 36px;
}

.cta-section__phone a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-section__phone a:hover { color: #7ee8b8; }

.cta-section__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #0a1810;
  color: rgba(255,255,255,0.65);
  padding: 60px 32px 32px;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.footer__social a:hover { background: var(--green-mid); }

.footer__col h3 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer__col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.15s;
}

.footer__col a:hover { color: var(--green-light); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}

.footer__bottom a:hover { color: rgba(255,255,255,0.6); }


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }
  .uses__grid { grid-template-columns: repeat(2, 1fr); }

  .nav__links { display: none; }
  .nav__hamburger { display: block; }

  .hero { padding: 64px 24px 72px; }
  .trust-bar { padding: 18px 24px; }
  .cta-section { padding: 64px 24px; }
  .footer { padding: 48px 24px 24px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__video-card { max-width: 100%; margin: 0 auto; }
  .hero h1 { font-size: clamp(30px, 7vw, 40px); }
  .hero__video-caption { font-size: 14px; }

  .steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .steps__grid::before { display: none; }

  .trust-bar__inner { gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-section__phone { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { text-align: center; justify-content: center; }
  .steps__grid { grid-template-columns: 1fr; }
  .cta-section__btns { flex-direction: column; align-items: center; }
}
