/* =============================================
   PAPIR PRINT SRL — LIGHT THEME STYLESHEET (UPDATED)
   ============================================= */

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --lime:        #7AB200;
  --lime-bright: #90CC00;
  --lime-dark:   #558000;
  --lime-pale:   #C4E050;
  --lime-bg-1:   #F4FAE6;
  --lime-bg-2:   #EAF6D0;
  --lime-bg-3:   #DCF0B8;

  --white:  #FFFFFF;
  --off-white: #FAFDF3;

  --text-100: #182E06;
  --text-200: #344E12;
  --text-300: #608030;
  --text-400: rgba(52, 78, 18, 0.50);

  --card-bg:           #FFFFFF;
  --card-border:       rgba(122, 178, 0, 0.20);
  --card-border-hover: rgba(122, 178, 0, 0.55);
  --card-shadow:       0 2px 16px rgba(60, 100, 0, 0.09);
  --card-shadow-hover: 0 10px 36px rgba(60, 100, 0, 0.16);

  --foot-dark: #162804;

  --header-blue: #0EA5E9;
  --header-blue-dark: #0284C7;

  --font-heading: 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 9999px;

  --ease:      0.28s cubic-bezier(.4,0,.2,1);
  --ease-slow: 0.60s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-200);
  overflow-x: hidden;
  line-height: 1.65;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--lime-bg-1); }
::-webkit-scrollbar-thumb { background: var(--lime-pale); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-100);
}

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--lime);
  color: #fff;
}
.btn--primary:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122, 178, 0, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text-100);
  border: 1.5px solid rgba(52, 78, 18, 0.30);
}
.btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime-dark);
  background: var(--lime-bg-1);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--lime-dark);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--white:hover {
  background: var(--lime-bg-1);
  transform: translateY(-2px);
}

/* =====================
   BADGE
   ===================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 178, 0, 0.10);
  border: 1px solid rgba(122, 178, 0, 0.30);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* =====================
   SECTION HEADER
   ===================== */
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.section-top h2 {
  font-size: clamp(28px, 3.6vw, 50px);
  color: var(--text-100);
}
.section-top .right-desc {
  max-width: 320px;
  text-align: right;
  color: var(--text-300);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  flex-shrink: 0;
}

/* =====================
   CARD (base)
   ===================== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

/* TAG */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  background: var(--lime-bg-2);
  border: 1px solid rgba(122, 178, 0, 0.22);
  color: var(--lime-dark);
  transition: var(--ease);
}

/* =====================
   LEAF ORNAMENT
   ===================== */
.leaves-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.leaf-svg {
  position: absolute;
  opacity: 0.45;
  animation: leaf-float var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: drop-shadow(0 4px 8px rgba(80, 140, 0, 0.3));
}

/* =====================
   HEADER — ярко-голубой фон
   ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: var(--header-blue);
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.35);
  transition: var(--ease);
}
.header.scrolled {
  background: var(--header-blue-dark);
  box-shadow: 0 4px 28px rgba(14, 165, 233, 0.45);
  padding: 8px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo in header */
.header__logo-link {
  flex-shrink: 0;
  margin-right: 24px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 5px 12px;
  transition: var(--ease);
}
.header__logo-link:hover { background: #f9ee6e; }
.header__logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: var(--ease);
}

/* Nav — центрировано по середине */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: var(--ease);
}
.nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.20);
}
.nav__link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}

/* Phone */
.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.header__phone svg { color: rgba(255,255,255,0.90); }
.phone-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.phone-num {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: var(--ease);
}
.phone-num:hover { color: var(--lime-pale); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   SITE BACKGROUND — переливающийся зелёный → жёлто-оранжевый
   ===================== */
/* Applied to body sections via pseudo or directly on sections */

/* =====================
   HERO — grid: 2 cols top + full-width bottom bar
   ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "left right"
    "bottom bottom";
  padding-top: 68px;
  position: relative;
  background: url('../images/back.png') center / cover no-repeat;
  overflow: hidden;
}

/* Left: logo panel */
.hero__left {
  grid-area: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 0px 60px; /* removed bottom padding so bar sits closer */
}

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  border-radius: 12px;
  padding: 20px 32px;
  animation: logo-float 5s ease-in-out infinite;
}
.hero__logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Right: content panel */
.hero__right {
  grid-area: right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 0px 30px; /* removed bottom padding */
  position: relative;
}
.hero__content {
  max-width: 560px;
  width: 100%;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
  padding: 40px 44px;
}

.hero__title {
  font-size: clamp(24px, 3.2vw, 44px);
  color: var(--text-100);
  margin-bottom: 14px;
  line-height: 1.12;
}
.hero__title .dash { color: var(--lime); }
.hero__title .sub {
  display: block;
  font-style: italic;
  font-size: 0.78em;
  color: var(--text-200);
}

.hero__desc {
  font-size: 15px;
  color: var(--text-200);
  line-height: 1.68;
  margin-bottom: 22px;
}

/* Bottom bar: 4 checks full width */
.hero__bottom-bar {
  grid-area: bottom;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  /* Key change: align to right half, matching the content card width */
  padding: 20px 60px 36px 40px;
  z-index: 2;
}

/* Checks shared style */
.hero__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-100);                        /* dark text — readable */
  background: rgba(255, 255, 255, 0.82);          /* solid-ish white, same as card */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  text-shadow: none;                              /* remove old shadow that hurt readability */
  transition: var(--ease);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(122, 178, 0, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime-dark);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Remove old unused classes */
.hero__checks-bottom { display: none; }
.hero__checks-right-top { display: none; }

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.scroll-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-y 2.4s ease-in-out infinite;
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.scroll-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.40);
}

/* =====================
   GLOBAL BACKGROUND FLOW
   Sections get a continuous gradient flow: green → yellow/orange
   ===================== */

/* Each section gets position relative + z-index for leaves */
.services, .process, .about, .why, .faq, .cta-section {
  position: relative;
  overflow: hidden;
}

/* The flowing background spans the whole page using a large gradient */
.services  { background: linear-gradient(180deg, #e8f7c0 0%, #96e03b 100%); }
.process   { background: linear-gradient(180deg, #96e03b 0%, #c8ee80 100%); }
.about     { background: linear-gradient(180deg, #c8ee80 0%, #d8e870 100%); }
.why       { background: linear-gradient(180deg, #d8e870 0%, #e8e060 100%); }
.cta-section { background: linear-gradient(180deg, #e8e060 0%, #f0d040 100%); }
.faq       { background: linear-gradient(180deg, #f0d040 0%, #cff431 100%); }

/* Texture overlay for sections — subtle noise/grain */
.services::before, .process::before, .about::before, .why::before, .faq::before, .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* Dot pattern texture on top of noise */
.services::after, .process::after, .about::after, .why::after, .faq::after, .cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(circle, #2a5200 1px, transparent 1px);
  background-size: 24px 24px;
}

/* =====================
   POPULAR CATEGORIES (services)
   ===================== */
.services {
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
}

.svc-card__head {
  height: 140px;
  background: var(--grad, linear-gradient(135deg, #c8e850, #a8d020));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-card__head-icon {
  color: rgba(255,255,255,0.70);
}
.svc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.90);
  color: var(--lime-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.svc-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 8px;
}
.svc-desc {
  font-size: 12.5px;
  color: var(--text-300);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.svc-tag {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  background: var(--lime-bg-1);
  border: 1px solid var(--card-border);
  color: var(--text-300);
}
.svc-actions {
  display: flex;
  gap: 8px;
}
.svc-actions .btn {
  font-size: 12px;
  padding: 8px 14px;
  flex: 1;
}

/* =====================
   PROCESS
   ===================== */
.process {
  padding: 100px 0;
}

.process__steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 56px;
  z-index: 1;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(122, 178, 0, 0.40) 20%,
    rgba(122, 178, 0, 0.40) 80%,
    transparent 100%
  );
  z-index: 0;
}

.proc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.proc-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(122, 178, 0, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.proc-step:hover .proc-step__num {
  background: var(--lime);
  color: #fff;
  border-color: var(--lime);
  box-shadow: 0 0 0 8px rgba(122, 178, 0, 0.12);
}

.proc-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  width: 92%;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.proc-step:hover .proc-card {
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.proc-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 8px;
}
.proc-desc {
  font-size: 12.5px;
  color: var(--text-300);
  line-height: 1.55;
}

.process__cta-box {
  margin-top: 52px;
  background: var(--white);
  border: 1px solid rgba(122, 178, 0, 0.22);
  border-radius: var(--radius-xl);
  padding: 36px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.process__cta-box::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 178, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.process__cta-text {
  font-style: italic;
  font-size: 16px;
  color: var(--text-200);
  max-width: 560px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* =====================
   ABOUT
   ===================== */
.about {
  padding: 100px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about__visual-panel {
  background: url('../images/girl2.png') center / cover no-repeat;
  border: 1px solid rgba(122, 178, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(60, 100, 0, 0.22);
}
.about__visual-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.55) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

.about__stats {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.stat-block {
  flex: 1;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--lime-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-200);
  line-height: 1.4;
}

.about__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 16px;
}
.about__title {
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--text-100);
  margin-bottom: 20px;
}
.about__title em {
  font-style: italic;
  color: var(--lime-dark);
}
.about__text {
  font-size: 15px;
  color: var(--text-200);
  line-height: 1.72;
  margin-bottom: 10px;
}
.about__feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.a-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.a-feat:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}
.a-feat__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 8px;
}
.a-feat__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 3px;
}
.a-feat__desc { font-size: 13px; color: var(--text-300); line-height: 1.5; }
.about__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================
   WHY US
   ===================== */
.why {
  padding: 100px 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,0.90);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}
.why-card--wide { grid-column: span 2; }

.why-card__num {
  position: absolute;
  bottom: 8px; right: 16px;
  font-family: var(--font-heading);
  font-size: 88px;
  font-weight: 700;
  color: rgba(122, 178, 0, 0.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.why-card__icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 18px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.why-card:hover .why-card__icon { background: var(--lime-bg-3); }
.why-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 10px;
}
.why-card__desc { font-size: 13.5px; color: var(--text-200); line-height: 1.62; }

/* =====================
   FAQ
   ===================== */
.faq {
  padding: 100px 0;
}
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.faq__intro h2 { font-size: clamp(26px, 3.2vw, 42px); margin-bottom: 16px; }
.faq__intro p { font-size: 15px; color: var(--text-200); line-height: 1.72; margin-bottom: 28px; }
.faq__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--card-shadow);
}
.faq__contact svg { color: var(--lime); flex-shrink: 0; }
.faq__contact-text { font-size: 13px; color: var(--text-200); }
.faq__contact-text strong { display: block; color: var(--text-100); font-size: 16px; }

.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.faq-item.open {
  border-color: var(--lime);
  background: var(--lime-bg-1);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-100);
  user-select: none;
}
.faq-q:hover { color: var(--lime-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(122, 178, 0, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime);
  transition: var(--ease);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--lime);
  color: #fff;
  border-color: var(--lime);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
}
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 260px; }
.faq-a p { font-size: 13.5px; color: var(--text-200); line-height: 1.70; }

/* =====================
   CTA BANNER
   ===================== */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  border-radius: var(--radius-xl);
  padding: 56px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(122, 178, 0, 0.30);
  z-index: 1;
}
.cta-box::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-badge {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.40);
  color: #fff;
}
.cta-content .section-badge .badge-dot { background: #fff; }
.cta-content h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-content p { font-style: italic; font-size: 16px; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.65; }
.cta-btn-wrap { position: relative; z-index: 1; flex-shrink: 0; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--foot-dark);
  border-top: none;
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  background: #f6e95c;
  border-radius: 8px;
  padding: 6px 14px;
  transition: var(--ease);
}
.footer__logo:hover { background: #f9ee6e; }
.footer__logo img { height: 48px; display: block; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 280px; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.40);
  transition: var(--ease);
}
.social-btn:hover { background: rgba(122,178,0,0.18); border-color: rgba(122,178,0,0.45); color: var(--lime-pale); }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-pale);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13.5px; color: rgba(255,255,255,0.50); transition: var(--ease); }
.footer-nav a:hover { color: var(--lime-pale); }

.footer-contacts { display: flex; flex-direction: column; gap: 14px; }
.f-contact { display: flex; align-items: flex-start; gap: 10px; }
.f-contact svg { color: var(--lime-pale); margin-top: 2px; flex-shrink: 0; }
.f-contact-info { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.5; }
.f-contact-info strong { display: block; color: rgba(255,255,255,0.85); font-size: 14px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.30); }
.footer__made { font-size: 12px; color: rgba(255,255,255,0.30); }

/* =====================
   BACK TO TOP
   ===================== */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(122, 178, 0, 0.40);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--ease);
  z-index: 999;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover {
  background: var(--lime-bright);
  box-shadow: 0 6px 30px rgba(122, 178, 0, 0.55);
  transform: translateY(-3px);
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.anim.anim--left  { transform: translateX(-24px); }
.anim.anim--right { transform: translateX(24px); }
.anim.visible { opacity: 1; transform: translate(0, 0); }

.anim-delay-1 { transition-delay: 0.08s !important; }
.anim-delay-2 { transition-delay: 0.16s !important; }
.anim-delay-3 { transition-delay: 0.24s !important; }
.anim-delay-4 { transition-delay: 0.32s !important; }
.anim-delay-5 { transition-delay: 0.40s !important; }
.anim-delay-6 { transition-delay: 0.48s !important; }
.anim-delay-7 { transition-delay: 0.56s !important; }
.anim-delay-8 { transition-delay: 0.64s !important; }

/* =====================
   KEYFRAMES
   ===================== */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}
@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@keyframes leaf-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* =====================
   MOBILE NAV OVERLAY
   ===================== */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav__link {
  font-size: 26px;
  padding: 12px 32px;
  color: var(--text-100);
}
.nav-mobile .nav__link:hover {
  color: var(--lime-dark);
  background: var(--lime-bg-1);
}
.nav-mobile .header__phone {
  margin-top: 20px;
  display: flex;
}
.nav-mobile .header__phone svg { color: var(--lime); }
.nav-mobile .phone-label { color: var(--text-300); }
.nav-mobile .phone-num { color: var(--text-100); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .why__grid       { grid-template-columns: 1fr 1fr; }
  .why-card--wide  { grid-column: span 2; }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__about   { grid-column: span 2; }
  .hero { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Hero — stack vertically: logo → content → bottom bar */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "left"
      "right"
      "bottom";
    min-height: 100vh;
  }
  .hero__left {
    padding: 48px 24px 20px;
    align-items: center;
    justify-content: center;
  }
  .hero__logo-wrap {
    max-width: 320px;
    width: 80%;
    margin: 0 auto;
  }
  .hero__checks-bottom {
    max-width: 340px;
    grid-template-columns: 1fr 1fr;
  }
  .hero__right {
    padding: 0 16px 32px;
    justify-content: center;
  }
  .hero__content {
    max-width: 100%;
    padding: 28px 24px;
    background: rgba(255,255,255,0.82);
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__checks-right-top {
    grid-template-columns: 1fr;
  }
  /* Other sections */
  .about__grid    { grid-template-columns: 1fr; gap: 32px; }
  .faq__layout    { grid-template-columns: 1fr; gap: 40px; }
  .process__steps { flex-direction: column; align-items: center; gap: 24px; }
  .process__steps::before { display: none; }
  .proc-step      { width: 100%; flex-direction: row; text-align: left; }
  .proc-step__num { margin-bottom: 0; margin-right: 20px; flex-shrink: 0; }
  .proc-card      { width: 100%; }
  .cta-box        { flex-direction: column; padding: 40px 30px; }
  .process__cta-box { flex-direction: column; padding: 28px 28px; }
  .section-top    { flex-direction: column; align-items: flex-start; }
  .section-top .right-desc { text-align: left; max-width: 100%; }
  .about__visual-panel { min-height: 300px; height: 300px; }
}

@media (max-width: 768px) {
  .nav  { display: none; }
  .header__phone { display: none; }
  .burger { display: flex; margin-left: auto; }
  .why__grid { grid-template-columns: 1fr; }
  .why-card--wide { grid-column: span 1; }

  /* Hero bottom bar — 2×2 grid on mobile */
  .hero__bottom-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 16px 28px;
  }

  /* About stats — row on mobile, smaller */
  .about__stats { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .stat-block { padding: 10px 12px; min-width: 0; }
  .stat-num { font-size: 22px; }
  .about__visual-panel { min-height: 220px; height: 420px; }

  /* Footer — about full-width centered, nav+contacts 2 columns */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__about { grid-column: 1 / -1; text-align: center; align-items: center; }
  .footer__about .footer__tagline { max-width: 100%; }
  .footer__socials { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-card__head { height: 100px; }
  .svc-card__head-icon svg { width: 40px; height: 40px; }
  .svc-card__body { padding: 14px 12px; }
  .svc-title      { font-size: 13px; }
  .svc-desc       { font-size: 11px; }
  .svc-tags       { display: none; }
  .svc-actions .btn { font-size: 11px; padding: 7px 8px; }
  .hero__actions  { flex-direction: column; }
  .hero__left     { padding: 24px 16px; }
  .hero__logo-wrap { max-width: 420px; }
  .hero__content  { padding: 22px 18px; }
  .hero__title    { font-size: clamp(20px, 6vw, 28px); }
  .hero__checks-bottom { grid-template-columns: 1fr; }
}