/* ===================================================== */
/* ====================== RESET ========================= */
/* ===================================================== */
:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);

  /* ========================= */
  /* NOVA TERRA BRAND SYSTEM */
  /* ========================= */

  /* Backgrounds */
  --bg-primary: #F4F1EA;
  --bg-surface: #FBFAF7;
  --bg-soft: #F1EEE7;

  /* Text */
  --text-primary: #232323;
  --text-secondary: #5F5D59;
  --text-muted: #7A8474;

  /* Brand */
  --brand-green: #4A5746;
  --brand-green-soft: #7A8474;

  /* CTA */
  --cta-dark: #1F1F1F;
  --cta-dark-hover: #2A2A2A;

  /* Borders */
  --border-soft: rgba(43, 43, 43, 0.08);
  --border-medium: rgba(43, 43, 43, 0.12);

  /* Shadows */
  --shadow-soft:
    0 10px 30px rgba(20, 20, 20, 0.04),
    0 4px 12px rgba(20, 20, 20, 0.03);

  --shadow-medium:
    0 18px 40px rgba(20, 20, 20, 0.06),
    0 8px 18px rgba(20, 20, 20, 0.04);

  --shadow-premium:
    0 24px 60px rgba(20, 20, 20, 0.08),
    0 10px 24px rgba(20, 20, 20, 0.05);

  /* Focus */
  --focus-ring:
    0 0 0 4px rgba(74, 87, 70, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
}

html, body {
  overflow-x: hidden;
}

* {
  -webkit-touch-callout: none;
}
html {
  scroll-behavior: smooth;
}


/* ===================================================== */
/* ==================== LAYOUT ========================== */
/* ===================================================== */
/* ================= GLOBAL IMAGE PROTECTION ================= */

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


.protected-image {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding-left: 8vw;
  padding-right: 5vw;
}

section {
  
  padding: 24px 0;
  scroll-snap-align: start;
}

/* ===================================================== */
/* ==================== TYPOGRAPHY ====================== */
/* ===================================================== */

h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
/* ================= FLOATING TABS ================= */

.floating-nav {
  position: fixed;
  top: 84px;
  right: 20px;
  z-index: 1200;
}

.floating-trigger {
  position: relative;
}

.floating-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 18px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.08);

  font-size: 22px;
  cursor: pointer;
}

.floating-menu {
  position: absolute;
  top: 58px;
  right: 0;

  padding-top: 14px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-6px);

  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

@media (hover: hover) and (min-width: 901px) {
  .floating-trigger:hover .floating-menu,
  .floating-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.floating-item {
  min-width: 150px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 14px;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.06);

  text-decoration: none;
  color: #111;

  font-size: 14px;
  font-weight: 500;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-item:hover {
  transform: translateX(-4px);
box-shadow:
    0 16px 36px rgba(0,0,0,0.08);
}

.floating-trigger.is-open .floating-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===================================================== */
/* ======================= HERO ========================= */
/* ===================================================== */
/* ================== HERO ANIMATION=================== */
.hero-inner > * {
  will-change: transform, opacity;
    opacity: 0;
  transform: translateY(18px);
 transition:
    opacity 0.8s var(--ease-premium),
    transform 0.8s var(--ease-premium);
  }

.hero.is-visible .hero-inner > * {
  opacity: 1;
  transform: translateY(0);
 
}

.hero.is-visible .pretitle {
opacity: 0.65;
  transition-delay: 0.1s;
}

.hero.is-visible .hero-title {
  transition-delay: 0.18s;
}

.hero.is-visible .hero-pretitle {
  transition-delay: 0.26s;
  opacity: 1;
}

.hero.is-visible .subtitle {
  transition-delay: 0.34s;
}

.hero.is-visible .hero-benefits li:nth-child(1) {
  transition-delay: 0.42s;
}

.hero.is-visible .hero-benefits li:nth-child(2) {
  transition-delay: 0.48s;
}

.hero.is-visible .hero-benefits li:nth-child(3) {
  transition-delay: 0.54s;
}

.hero.is-visible .hero-main-price {
  transition-delay: 0.6s;
}

.hero.is-visible .hero-cta {
  transition-delay: 0.7s;
}

.hero-title {
font-size: clamp(52px, 11vw, 72px);
  line-height: 0.9;
  margin-bottom: 14px;
 transform: translateY(14px);
 transition-duration: 0.55s;
}

/* Вторичный текст — мягче */
.hero-pretitle,
.subtitle {
  transition-duration: 0.85s;
}

/* вторичный слой */
.hero-benefits li {
  transition-duration: 0.95s;
}

/* CTA — чуть тяжелее */
.hero-cta {
  transform: translateY(22px);
  transition-duration: 1.05s;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("images/hero.jpg") center/cover no-repeat;

  z-index: 0;

  animation: heroZoom 14s ease-in-out infinite alternate;
}



@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}
/* ======================= HERO STATIC ========================= */

.hero {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  align-items: stretch;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(24, 31, 24, 0.42),
      rgba(24, 31, 24, 0.78)
    ),
    radial-gradient(
      circle at 65% 50%,
      rgba(34, 44, 34, 0.52),
      rgba(0, 0, 0, 0.10)
    );
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  height: 100%;
}

.hero-content {
  max-width: 640px;

  padding: 56px 48px 40px 38px;

  border-radius: 18px;

  background: linear-gradient(
    to bottom,
    rgba(30, 36, 30, 0.18),
    rgba(24, 30, 24, 0.52)
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);

  position: relative;
  overflow: visible;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.015)
  );

  pointer-events: none;
}

/* ===== TYPO ===== */

.pretitle {
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  width: 100%;
  max-width: none;

  font-family: 'Manrope', sans-serif;
  font-size: clamp(58px, 5.2vw, 82px);

  font-weight: 700;
  color: #fff;

  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-pretitle {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

.subtitle {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
.hero-subtitle-secondary {
  margin-top: 14px;

  font-size: 16px;
  line-height: 1.5;

  color: rgba(255,255,255,0.82);
}

.hero-price-note {
  margin-top: 8px;

  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.hero-trust-line {
  margin-top: 18px;

  font-size: 14px;
  font-weight: 500;

  color: rgba(210, 220, 208, 0.78);
}
.hero-subtext {
  margin-top: 12px;

  font-size: 16px;
  line-height: 1.5;

  color: rgba(255,255,255,0.78);

  max-width: 420px;
}

.hero-benefits {
  margin-top: 14px;

  list-style: none;
  padding: 0;
  
  max-width: 420px;
}

.hero-benefits li {
 opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);

  will-change: transform, opacity;
  position: relative;

  padding-left: 18px;
  margin-bottom: 8px;

  font-size: 16px;
  line-height: 1.5;

  color: rgba(255,255,255,0.65);
}

.hero.is-visible .hero-benefits li {
  opacity: 1;
  transform: translateY(0);
}

/* ТОЧКИ */

.hero-benefits li::before {
  content: "";
  position: absolute;

  left: 0;
  top: 9px;

  width: 4px;
  height: 4px;

  background: rgba(255,255,255,0.9);
  border-radius: 50%;
}

/* ===== OFFER ===== */

.hero-main-price {
  margin-top: 20px;
}

.hero-main-title {
  font-size: 20px;
  font-weight: 600;

  color: rgba(255,255,255,0.96);
}

/* ===================================================== */
/* ================= HERO CTA (НОВОЕ) =================== */
/* ===================================================== */

.hero .btn {
  background: var(--cta-dark);
  color: #FFFFFF;

  min-height: 72px;
  font-size: 15px;
  letter-spacing: 0.14em;

  border: 1px solid rgba(255,255,255,0.04);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    0 8px 20px rgba(0,0,0,0.10);
}

.hero-cta {
  margin-top: 40px;
  max-width: 380px;
}

.hero-cta .btn {
  width: 100%;
}

.hero-cta-note {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===================================================== */
/* ======================= BUTTONS ====================== */
/* ===================================================== */

.btn {
  touch-action: manipulation;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 68px;
  padding: 20px 26px;

  border-radius: 12px;
  text-decoration: none;
  border: none;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  background: var(--cta-dark);
  color: #FFFFFF;

  box-shadow: var(--shadow-medium);

  transform: translateY(0);
  transition:
    transform 0.18s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}
/* PRIMARY */
.btn {
  background: var(--cta-dark);
  color: #FFFFFF;
}

/* PRESSED */
.btn.is-pressed {
  transform: translateY(2px);
  box-shadow: var(--shadow-soft);
}

/* SECONDARY CTA */
.btn-secondary {
  background: transparent;
  color: var(--brand-green);

  border: 1px solid var(--brand-green);

  box-shadow: none;

  cursor: pointer;
}

@media (hover: hover) {
 .btn:hover:not(.is-pressed) {
    transform: translateY(-2px);
    background: var(--cta-dark-hover);
    box-shadow: var(--shadow-premium);
  }
	.btn-secondary:hover {
    background: rgba(74, 87, 70, 0.04);
    color: var(--brand-green);
    border-color: var(--brand-green);
    transform: translateY(-2px);
  }
}




/* ===================================================== */
/* ===================== SERVICES ======================= */
/* ===================================================== */

.services {
  border-top: 1px solid rgba(0,0,0,0.05);
  will-change: transform, opacity;
  
}
.services .container {
  padding-top: 58px;
  max-width: none;
  width: 100%;
  padding-left: 3vw;
  padding-right: 3vw;
}
.services .grid {
  align-items: start;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

/* Разделители */
.services .grid > .card {
  position: relative;
}

/* Карточка */

.card {
  cursor: pointer;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;

  padding: 26px 26px 24px;
  border-radius: 14px;

  background: var(--bg-surface);

  border: 1px solid var(--border-soft);

  box-shadow: var(--shadow-soft);

  z-index: 1;

  opacity: 0;
  transform: translateY(30px) scale(0.97);

  transition:
    transform 0.6s var(--ease-premium),
    opacity 0.6s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.4s var(--ease-premium),
    background 0.4s var(--ease-premium);
}
.card.featured {
  background:
    linear-gradient(
      180deg,
      #FBFAF7 0%,
      #F3F0E8 100%
    );

  border: 1px solid rgba(74, 87, 70, 0.10);

  box-shadow: var(--shadow-medium);

  transform: scale(1.02);
  z-index: 2;
}

.card-expand {
  position: relative;
  z-index: 25;
  margin-top: 0;
  
  max-height: 0;
  overflow: visible;

  opacity: 0;
  pointer-events: none;

  transform: translateY(8px);

  transition:
    max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease,
    transform 0.38s ease,
    margin-top 0.38s ease;
}
.card.opened .card-expand {
  max-height: 420px;

  opacity: 1;
  pointer-events: auto;

  transform: translateY(0);

  margin-top: 20px;
}
.card-expand .btn {
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.card.opened .card-expand .btn {
  transform: translateY(0);
  opacity: 1;
}
.card.active {
  transform: translateY(-6px);
  z-index: 5;
}

@media (min-width: 901px) {
  .card.active .card-expand {
    margin-top: 16px;

    max-height: 120px;
    opacity: 1;

    transform: translateY(0);
  }
}

/* ПОЯВЛЕНИЕ */
.services.show .card {
   opacity: 1;
  transform: translateY(0);
}

/* ЗАДЕРЖКИ */
.services.show .card:nth-child(1) .service-result { transition-delay: 0.15s; }
.services.show .card:nth-child(2) .service-result { transition-delay: 0.2s; }
.services.show .card:nth-child(3) .service-result { transition-delay: 0.25s; }
.services.show .card:nth-child(4) .service-result { transition-delay: 0.3s; }






/* ВАЖНО — сохраняем при анимации */

@media (min-width: 901px) {
  .card {
    transition:
      transform 0.45s var(--ease-premium),
      box-shadow 0.45s var(--ease-premium),
      filter 0.45s var(--ease-premium);
  }
 .services.show .card:hover {
    transform: translateY(-12px) scale(1.035);
  }

  .card:hover {
    transform: translateY(-12px) scale(1.035);
    filter: brightness(1.02);
    box-shadow:
      0 30px 80px rgba(0,0,0,0.18),
      0 12px 30px rgba(0,0,0,0.10);
 z-index: 10;
  }

  .card.featured:hover {
    transform: translateY(-16px) scale(1.06);
  }
 .services.show .card.featured:hover {
    transform: translateY(-16px) scale(1.06);
  }
}

.card:hover .service-img {
  filter: brightness(0.92);
  transform: scale(1.06);
}

.card.featured:hover::before {
  opacity: 1;
}
.card > * {
  position: relative;
  
}



.card-badge {
  position: absolute;
  top: -10px;
  right: 12px;

  padding: 10px 18px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;

  background: var(--brand-green);
  color: #FFFFFF;

  border-radius: 10px;

  box-shadow:
    0 12px 28px rgba(74, 87, 70, 0.18);

  z-index: 20;
}

.card .btn {
 margin-top: 0;
}



/* TYPO */

.card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
}

/* убрали общий p */

.service-lead {
  font-size: 13px;
  color: #8C8A86;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 15px;
  color: #5E5B56;
  margin-bottom: 12px;
}

.service-list {
  margin-top: 10px;
  padding-left: 16px;
}

.service-list li {
 font-size: 14px;
  color: #6A6762;
  margin-bottom: 5px;
  line-height: 1.45;
}

.service-result {
  margin-top: 20px;
  margin-bottom: 16px;

  padding: 14px 14px;

  background: #F1EEE7;

  border-left: 3px solid var(--brand-green);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;

  box-shadow:
    0 8px 20px rgba(20,20,20,0.04);

  opacity: 0;
  transform: translateY(4px);

  transition:
    opacity 0.6s var(--ease-premium),
    transform 0.6s var(--ease-premium);

  display: block;
  overflow: visible;
}

.services.show .card .service-result {
  opacity: 1;
  transform: translateY(0);
}

/* задержка после карточки */
.services.show .card:nth-child(1) .service-result {
  transition-delay: 0.2s;
}

.services.show .card:nth-child(2) .service-result {
  transition-delay: 0.25s;
}

.services.show .card:nth-child(3) .service-result {
  transition-delay: 0.3s;
}

.service-price {
  font-size: 16px;
  font-weight: 800;

  color: var(--text-primary);

  margin-top: 12px;
  margin-bottom: 18px;

  white-space: normal;
  word-break: break-word;

  padding-top: 10px;

  border-top: 1px solid var(--border-soft);
}

/* IMAGE */

.service-img {
transition: 
  transform 0.6s var(--ease-premium),
  filter 0.6s var(--ease-premium);
  margin-top: 16px;

  width: 100%;
  height: 180px;
  will-change: transform, filter;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== SERVICES WARNING ===== */
.services-cards {
  margin-bottom: 140px;  
  margin: 0 auto;
}
.services-warning {
  margin: 100px auto 0; /* ключевая строка */

  max-width: 640px;
  width: 100%;

  padding: 28px;

  background: #F1F0ED;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.06);

  text-align: left; /* чтобы заголовок тоже центрировался */
}


.services-warning-title {
  font-size: 20px;
  margin-bottom: 18px;

  color: #0E0E0F;
}

.services-warning-list {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
}

.services-warning-list li {
  position: relative;

  padding-left: 18px;
  margin-bottom: 10px;

  font-size: 15px;
  line-height: 1.5;

  color: #3B3A38;
}

/* маркеры */

.services-warning-list li::before {
  content: "";
  position: absolute;

  left: 0;
  top: 9px;

  width: 6px;
  height: 6px;

  background: #0E0E0F;
  border-radius: 50%;
}

/* CTA */

.services-cta {
  margin-top: 140px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ACTIVE */
.services-cta .btn {
min-height: 72px;

box-shadow: 
  0 26px 60px rgba(0,0,0,0.35),
  0 10px 24px rgba(0,0,0,0.2);
  max-width: 420px;
}



.services-note {
  margin-top: 14px;
  font-size: 14px;
  color: #0E0E0F;
  opacity: 0.6;
}

/* ===================================================== */
/* ====================== PROCESS ======================= */
/* ===================================================== */

.process {
  border-top: 1px solid rgba(0,0,0,0.05);
will-change: transform, opacity;
}

.process h2 {
  margin-bottom: 80px;
}

.process .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.process .grid::before {
  content: "";
  position: absolute;

  top: 48px;
  left: 0;
  opacity: 0.3;
  height: 3px;
  width: 100%;

  background: rgba(0,0,0,0.45);

  transform: scaleX(0);
  transform-origin: left;
   z-index: 0;
  transition: transform 1.2s var(--ease-premium);
}



/*======Animation======*/

.process.is-visible .grid::before {
  transform: scaleX(1);
}

.process.is-visible .process-card::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  opacity: 1;
}

.process.is-visible .process-card:nth-child(1) {
  transition-delay: 0.2s;
}

.process.is-visible .process-card:nth-child(2) {
  transition-delay: 0.4s;
}

.process.is-visible .process-card:nth-child(3) {
  transition-delay: 0.6s;
}



.process.is-visible .process-card:nth-child(1) .process-result {
  transition-delay: 0.4s;
}

.process.is-visible .process-card:nth-child(2) .process-result {
  transition-delay: 0.6s;
}

.process.is-visible .process-card:nth-child(3) .process-result {
  transition-delay: 0.8s;
}
.process.is-visible .process-card {
  opacity: 1;
  transform: translateY(0);
}


.process.is-visible .step-number {
  opacity: 1;
  transform: translateY(0);
}

.process.is-visible .process-result {
  opacity: 1;
  transform: translateY(0);
}


/* Карточка */

.process-card {
  position: relative;
  padding-top: 60px;
  padding-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
z-index: 2;
  transition:
    opacity 0.5s var(--ease-premium),
    transform 0.5s var(--ease-premium);
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;

  height: 1px;
  background: rgba(0,0,0,0.06);
}

.process-card::before {
  content: "";
  position: absolute;

  top: 48px;
  left: 0px;

  width: 12px;
  height: 12px;

  background: #0E0E0F;
  border-radius: 50%;


  opacity: 0;

  transition:
    transform 0.4s var(--ease-premium),
    opacity 0.4s var(--ease-premium);
}

/* TYPO */

.step-number {
  opacity: 0;
  transform: translateY(10px);

  transition:
    opacity 0.5s var(--ease-premium),
    transform 0.5s var(--ease-premium);

  position: absolute;
  top: 0;
  left: 0;

  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;

  z-index: 1;
  padding: 4px 10px;
}

.process-card h3 {
  font-size: 20px;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 10px;
  margin-top: 10px;
}

.process-desc {
  font-size: 16px;
  color: #9C9A96;
  line-height: 1.6;
}

.process-result {
   opacity: 0;
  transform: translateY(10px);

  transition:
    opacity 0.6s var(--ease-premium),
    transform 0.6s var(--ease-premium);
  margin-top: 22px;

  padding-left: 16px;

  font-size: 17px;
  font-weight: 900;

  border-left: 5px solid #0E0E0F;

  color: #0E0E0F;
}

.process-cta {
 margin-top: 110px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
 align-items: start;
  margin-top: 0px;
}

/* ===== PROCESS BENEFITS ===== */

.process-benefits {
  margin-top: 80px;
  max-width: none;
  padding: 28px 28px;

  background: #F1F0ED;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.06);

  max-width: 640px;
}

.process-benefits-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.process-benefits-list {
  list-style: none;
  padding: 0;
}

.process-benefits-list li {
  position: relative;

  padding-left: 18px;
  margin-bottom: 10px;

  font-size: 15px;
  line-height: 1.5;

  color: #3B3A38;
}

.process-benefits-list li::before {
  content: "";
  position: absolute;

  left: 0;
  top: 9px;

  width: 6px;
  height: 6px;

  background: #0E0E0F;
  border-radius: 50%;
}
.process-deadline {
  margin-top: 70px;
  margin-bottom: 20px;

  text-align: center;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;

  color: #3B3A38;
  opacity: 0.85;

  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.process-extra {
  margin-top: 14px;

  font-size: 15px;
  font-weight: 600;

  color: #0E0E0F;
}
.process-warning {
  margin-top: 80px;

  padding: 28px 28px;

  background: #F1F0ED;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.08);
}

.process-warning-title {
  font-size: 20px;
  font-weight: 600;

  margin-bottom: 18px;

  color: #0E0E0F;
}

.process-warning-list {
  list-style: none;
  padding: 0;
}

.process-warning-list li {
  position: relative;

  padding-left: 18px;
  margin-bottom: 10px;

  font-size: 15px;
  line-height: 1.5;

  color: #3B3A38;
}

.process-warning-list li::before {
  content: "";
  position: absolute;

  left: 0;
  top: 9px;

  width: 6px;
  height: 6px;

  background: #0E0E0F;
  border-radius: 50%;
}





/* ===== CTA SYSTEM ===== */

.cta-lead {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;

  max-width: 520px;
  margin: 0 auto 20px;

  text-align: center;
}

.cta-note {
  margin-top: 10px;

  font-size: 14px;
  color: #6B6A68;

  text-align: center;
}


/* ===================================================== */
/* ===================== PROJECTS ======================= */
/* ===================================================== */

/* ===== PROJECT CASE ===== */

.project-case {
  padding: 100px 0 32px;
}

.case-head {
  max-width: 720px;
  margin-bottom: 64px;
 
  transform: translateY(20px);

  transition:
    opacity 0.6s var(--ease-premium),
    transform 0.6s var(--ease-premium);
}

/* ===== PROJECT Animation ===== */
.case-head > * {
  opacity: 0;
  transform: translateY(20px);
}

.case-visible .case-head > * {
  opacity: 1;
  transform: translateY(0);
}

.case-head h2 { transition-delay: 0.1s; }
.case-status { transition-delay: 0.2s; }
.case-subtitle { transition-delay: 0.3s; }
.case-meta {
  margin-top: 14px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;

  font-size: 15px;
  color: #3B3A38;
}

.case-meta div {
  position: relative;
  padding-left: 16px;
}

.case-meta div::before {
  content: "";
  position: absolute;

  left: 0;
  top: 8px;

  width: 5px;
  height: 5px;

  background: #0E0E0F;
  border-radius: 50%;
}
.case-before img {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(6px);

  transition:
    opacity 0.8s var(--ease-premium),
    transform 0.8s var(--ease-premium),
    filter 0.8s var(--ease-premium);
}
@media (min-width: 901px) {
.case-visible .case-section {
  opacity: 1;
  transform: translateY(0);
}
}
.case-step-1 .case-before img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}



.case-before img:nth-child(1) { transition-delay: 0.2s; }
.case-before img:nth-child(2) { transition-delay: 0.35s; }

.case-list li {
  opacity: 0;
  transform: translateY(12px);

  transition:
    opacity 0.5s var(--ease-premium),
    transform 0.5s var(--ease-premium);
}

.case-step-2 .case-list li {
  opacity: 1;
  transform: translateY(0);
}


.case-item {
  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.6s var(--ease-premium),
    transform 0.6s var(--ease-premium);
}



.case-step-3 .case-item--big {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.case-step-3 .case-item:not(.case-item--big) {
  opacity: 1;
  transform: translateY(0);
}

/* растягиваем тайминг */
.case-item:nth-child(2) { transition-delay: 0.2s; }
.case-item:nth-child(3) { transition-delay: 0.3s; }
.case-item:nth-child(4) { transition-delay: 0.4s; }
.case-item:nth-child(5) { transition-delay: 0.5s; }

.case-step-3 .case-bridge {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.case-step-4 .case-section:nth-of-type(n+4) {
  opacity: 1;
  transform: translateY(0);
}

.case-step-4 .case-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-section:last-of-type {
  margin-bottom: 0;
}

.case-cta {
  margin-top: 48px;

  padding-top: 28px;

  border-top: 1px solid var(--border-soft);

  opacity: 0;
  transform: translateY(40px) scale(0.97);

  transition:
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);
}
.case-cta .btn {
  margin-top: 28px;

  min-height: 72px;

  font-size: 15px;
  letter-spacing: 0.14em;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.10);
}
.case-step-1 .case-section:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
}

.case-step-2 .case-section:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
}

.case-step-3 .case-section:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
}

.case-step-4 .case-section:nth-of-type(n+4) {
  opacity: 1;
  transform: translateY(0);
}

.case-list li:nth-child(1) { transition-delay: 0.1s; }
.case-list li:nth-child(2) { transition-delay: 0.2s; }
.case-list li:nth-child(3) { transition-delay: 0.3s; }
.case-list li:nth-child(4) { transition-delay: 0.4s; }
.case-list li:nth-child(5) { transition-delay: 0.5s; }

/* ===================================================== */

.case-status {
  margin-top: 0;
  margin-bottom: 18px;

  padding-top: 18px;

  border-top: 1px solid var(--border-soft);

  font-size: 15px;
  line-height: 1.6;

  color: var(--text-primary);
}

.case-head h2 {
  margin-bottom: 6px; /* было ~20–30px → ломало связку */
}

.case-status {
  margin-top: 0;      /* убираем лишний зазор сверху */
  margin-bottom: 12px;

  font-size: 14px;
  color: #6B6A68;
}

.case-subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: #6B6A68;
}

.case-section {
  margin-top: 56px;
  margin-bottom: 56px;

  max-width: 920px;

  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);
}


.case-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.case-text {
  font-size: 16px;
  line-height: 1.6;
  color: #3B3A38;
  margin-bottom: 12px;
}

/* BEFORE */

.case-before {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.case-before img {
  width: 100%;
  height: 280px;

  object-fit: cover;

  border-radius: 14px;

  border: 1px solid rgba(43,43,43,0.05);

  box-shadow:
    0 16px 36px rgba(20,20,20,0.05);

  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium);
}

/* LIST */

.case-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.case-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 16px;
}

.case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #0E0E0F;
  border-radius: 50%;
}

/* GRID */

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.case-item--big {
  opacity: 0;
  grid-column: span 2;
   transform: scale(1.04);
}

.case-item img {
  width: 100%;
  display: block;

  border-radius: 14px;

  border: 1px solid rgba(43,43,43,0.05);

  box-shadow:
    0 14px 32px rgba(20,20,20,0.05);

  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium);
}
@media (hover: hover) {
  .case-before img:hover,
  .case-item img:hover {
    transform: translateY(-4px) scale(1.01);

    box-shadow:
      0 24px 54px rgba(20,20,20,0.08),
      0 10px 24px rgba(20,20,20,0.05);
  }
}
.case-item:hover img {
  transform: scale(1.03);
}
/* BRIDGE */

.case-bridge {
  margin: 24px 0;

  padding: 30px 34px;

  background: var(--bg-surface);

  border-left: 4px solid var(--brand-green);

  border-radius: 12px;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;

  color: var(--text-primary);

  max-width: 920px;

  box-shadow:
    0 14px 30px rgba(20,20,20,0.04);

  opacity: 0;
  transform: translateX(-50px);

  transition:
    opacity 0.7s var(--ease-premium),
    transform 0.7s var(--ease-premium);
}


/* ===================================================== */
/* ====================== ABOUT NEW ===================== */
/* ===================================================== */

.about {
  padding: 120px 0;
}

.about h2 {
  max-width: 900px;
  margin-bottom: 80px;
  font-size: 42px;
  line-height: 1.2;
}

/* GRID */

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;

  gap: 72px;
  align-items: start;
}

/* ===== PHOTO ===== */

.about-photo img {
  width: 100%;
  max-width: 420px;
  display: block;

 

  aspect-ratio: 4 / 5;
  object-fit: cover;

  border-radius: 16px;

  border: 1px solid rgba(43,43,43,0.05);

  box-shadow:
    0 18px 40px rgba(20,20,20,0.05);

  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium);
}
@media (hover: hover) {
  .about-photo img:hover {
    transform: translateY(-4px);

    box-shadow:
      0 28px 56px rgba(20,20,20,0.08),
      0 10px 24px rgba(20,20,20,0.05);
  }
}

.about-person {
  margin-bottom: 20px;
}

.about-name {
  font-size: 22px;
  font-weight: 600;
  color: #0E0E0F;
}

.about-role {
  font-size: 14px;
  color: #6B6A68;
  margin-top: 4px;
}

.about-subrole {
  font-size: 13px;
  color: #6B6A68;

  margin-top: 4px;

  letter-spacing: 0.02em;
}

/* ===== TEXT ===== */

.about-text {
  font-size: 16px;
  line-height: 1.75;

  color: var(--text-secondary);

  max-width: 760px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #3B3A38;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 18px;
  color: #0E0E0F;
}

/* ===== FACTS ===== */

.about-facts {
  margin-top: 32px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;

  font-size: 15px;
  color: #3B3A38;
}

.about-facts div {
  position: relative;
  padding-left: 16px;
}

.about-facts div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 5px;
  height: 5px;
  background: #0E0E0F;
  border-radius: 50%;
}

/* ===== TRUST ===== */

.about-trust {
  margin-top: 48px;
}

.about-trust h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.about-trust-grid div {
  position: relative;
  padding-left: 16px;

  font-size: 15px;
  color: #3B3A38;
}

.about-trust-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 5px;
  height: 5px;
  background: #0E0E0F;
  border-radius: 50%;
}

/* ===== NOTE ===== */

.about-note {
  margin-top: 28px;

  padding: 28px 32px;

  background: var(--bg-surface);

  border-left: 4px solid var(--brand-green);

  border-radius: 12px;

  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);

  box-shadow:
    0 14px 30px rgba(20,20,20,0.04);

  max-width: 860px;
}


/* ===== CTA ===== */

.about-cta {
  margin-top: 40px;
  max-width: 420px;
}
/* ====================== ABOUT Animation ===================== */
.about .about-photo,
.about .about-content,
.about .about-facts,
.about .about-trust,
.about .about-cta {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.6s var(--ease-premium),
    transform 0.6s var(--ease-premium);
}

.about.is-visible .about-photo,
.about.is-visible .about-content,
.about.is-visible .about-facts,
.about.is-visible .about-trust,
.about.is-visible .about-cta {
  opacity: 1;
  transform: translateY(0);
}

.about.is-visible .about-photo { transition-delay: 0.05s; }
.about.is-visible .about-content { transition-delay: 0.12s; }
.about.is-visible .about-facts { transition-delay: 0.18s; }
.about.is-visible .about-trust { transition-delay: 0.24s; }
.about.is-visible .about-cta { transition-delay: 0.3s; }


/* ===================================================== */
/* ====================== CONTACT ======================= */
/* ===================================================== */

.contacts {
   min-height: auto;

  padding: 40px 0 20px;

  display: flex;
  align-items: center; /* центрируем */
}


.contacts-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts h2 {
 font-size: 32px;
  margin-bottom: 36px;
  line-height: 1.25;
  max-width: 640px;
  
}

/* GRID */

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 400px;

  gap: 32px;
  align-items: start;
}

/* ===== INFO ===== */

.contacts-item {
  margin-bottom: 6px;
}

.contacts-label {
  font-size: 13px;
  color: #6B6A68;
  margin-bottom: 1px;
margin-top: 2px;
}

.contacts-value {
  font-size: 18px;
  color: #0E0E0F;
  text-decoration: none;
  font-weight: 500;
}

.contacts-value:hover {
  opacity: 0.7;
}

/* ===== NOTE ===== */

.contacts-note {
  margin-top: 6px;
  margin-bottom: 8px;

  font-size: 14px;
  line-height: 1.45;

  color: var(--text-secondary);
  opacity: 0.9;
}

/* ===== CTA ===== */

.contacts-cta {
 margin-top: 8px;
  padding: 30px 32px;

  background: #FFFFFF;

  border: 1px solid rgba(43,43,43,0.06);
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  gap: 22px;

  box-shadow:
    0 20px 50px rgba(20,20,20,0.04),
    0 8px 18px rgba(20,20,20,0.03);
}

.contacts-cta-text {
  font-size: 16px;
  line-height: 1.5;
  color: #0E0E0F;
}
.contacts-cta form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-cta input,
.contacts-cta textarea {
  width: 100%;
  padding: 16px 18px;

  border-radius: 10px;
  border: 1px solid rgba(43,43,43,0.08);

  background: #FAFAF8;

  font-size: 15px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;

  color: var(--text-primary);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.contacts-cta input:focus,
.contacts-cta textarea:focus {
  outline: none;

  border-color: var(--brand-green);

  background: #FFFFFF;

  box-shadow:
    0 0 0 4px rgba(74, 87, 70, 0.08);
}
.contacts-cta textarea {
  min-height: 120px;
  resize: vertical;
}
.contacts-cta .btn {
  margin-top: 8px;

  min-height: 70px;

  font-size: 15px;
  letter-spacing: 0.14em;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.10);
}
.form-status {
  font-size: 13px;
  margin-top: 4px;
}
/* ===== LOGO IN CONTACT ===== */
.contacts-logo {
  width: 190px;
  display: block;
  margin-left: -8px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.contacts-logo svg {
  width: 100%;
  height: auto;
  display: block;
}
.contacts-social {
  margin-top: 8px;
}

.contacts-icons {
  display: flex;
  gap: 14px;

  margin-top: 10px;
  margin-bottom: 8px;
}

.contact-icon {
 width: 60px;
height: 60px;
border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  overflow: hidden;

  cursor: pointer;

  /* тень */
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);

  /* анимация */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-icon:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.contact-icon:active {
  transform: translateY(-1px) scale(0.97);

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-icon:hover svg {
  transform: scale(1.08);
}

.contact-icon.wa {
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.contact-icon.wa:hover {
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* WhatsApp акцент */
.contact-icon.wa {
  background: #25D366;
}



/* Telegram */
.contact-icon.tg {
  background: #229ED9;
}


.form-trust-note {
  margin-top: 6px;

  font-size: 13px;
  line-height: 1.6;

  color: var(--text-secondary);

  text-align: center;

  opacity: 0.9;
}
/* hover */
.contact-icon:hover {
 transform: translateY(-4px) scale(1.05);
}
.wa-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  border-radius: 16px;
  overflow: hidden;

  z-index: 999;

  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.35),
    0 6px 18px rgba(0,0,0,0.15);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.wa-fixed.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}
@media (min-width: 901px) {
  .wa-fixed {
    animation: waPulse 2.8s infinite;
  }
}
.wa-fixed svg {
  width: 70%;
  height: 70%;
  display: block;
  flex-shrink: 0;
}
/* hover только для desktop */
@media (hover: hover) {
  
  .wa-fixed:hover {
   
  
    transform: translateY(-6px) scale(1.08);

    box-shadow:
      0 26px 60px rgba(37, 211, 102, 0.45),
      0 12px 30px rgba(0,0,0,0.2);
  }
}

.wa-fixed:active {
  transform: scale(0.95);
}

@keyframes waPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.5),
      0 10px 24px rgba(0,0,0,0.15);
  }
  70% {
    box-shadow:
      0 0 0 12px rgba(37, 211, 102, 0),
      0 10px 24px rgba(0,0,0,0.15);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 10px 24px rgba(0,0,0,0.15);
  }
}

/* ===================================================== */
/* ====================== MOBILE ======================== */
/* ===================================================== */

@media (max-width: 900px) {



  /* ===== GLOBAL ===== */

  .container {
    width: 100%;
    padding: 0 20px;
  }

  section {
    padding: 40px 0;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

.no-project {
    margin-top: 24px;
  }

  /* ===== HERO ===== */

  
.hero-inner > * {
    transform: translateY(14px);
  }
  .hero.is-visible .hero-inner > * {
    transition-duration: 0.5s;
  }

 .hero.is-visible .pretitle { transition-delay: 0.04s; }
  .hero.is-visible .hero-title { transition-delay: 0.08s; }
  .hero.is-visible .hero-pretitle { transition-delay: 0.12s; }
  .hero.is-visible .subtitle { transition-delay: 0.16s; }
  .hero.is-visible .hero-cta { transition-delay: 0.24s; }

  .logo {
    top: 20px;
    width: 42px;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 72px 20px 80px;
  }

  .hero .container {
    display: block;
    padding: 0;
  }

.hero-content {
  max-width: 100%;
  position: relative;
  overflow: hidden;

  padding: 28px 26px 30px;

  border-radius: 18px;

  background: linear-gradient(
    to bottom,
    rgba(28, 34, 28, 0.34),
    rgba(20, 26, 20, 0.58)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);

  box-shadow:
    0 18px 42px rgba(0,0,0,0.24);

  display: flex;
  flex-direction: column;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  background: linear-gradient(
  to bottom,
  rgba(255,255,255,0.08),
  rgba(255,255,255,0.02)
);

  pointer-events: none;
}

  .hero-content::after {
    display: none;
  }

  .hero::after {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.85)
      );
  }

  .pretitle {
    font-size: 9px;
    letter-spacing: 0.14em;
    
    margin-bottom: 4px;
  }

  .hero h1 {
    transform: translateZ(0);
  will-change: transform;
     font-size: 44px;
  line-height: 0.95;
  }

  .hero-pretitle {
    font-size: 14px;
    
    margin-bottom: 20px;
  }

  .subtitle {
    font-size: 15px;
   margin-bottom: 18px;
  line-height: 1.35;
  }
.hero-subtitle-secondary {
  margin-bottom: 18px;
  line-height: 1.35;
}
.hero-trust-line {
  margin-bottom: 16px;
}
.hero-subtext {
  font-size: 14px;
  line-height: 1.5;

  margin-top: 10px;

  opacity: 0.85;
}

.hero-benefits {
  margin: 16px 0;
  gap: 10px;
}

.hero-benefits li {
  font-size: 14px;
  margin-bottom: 6px;
}
.hero-main-price {
  margin-top: 18px;
  margin-bottom: 20px;
}
  .hero-main-title {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-note {
    font-size: 11px;
    opacity: 0.6;
  }

.process-benefits {
    margin-top: 56px;
    padding: 20px 18px;
  }

  .process-benefits-title {
    font-size: 18px;
  }

  .process-benefits-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }

/* ===== HERO BUTTON (MOBILE PREMIUM) ===== */

.hero-cta {
  
 margin-top: 12px;
}
.hero-cta .btn {
  margin-bottom: 10px;
}
/* ACTIVE (нажатие) */


/* NOTE */

.hero-cta-note {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.6;
}

 /* ===== SERVICES MOBILE — PRODUCT CARDS ===== */
.services {
 scroll-snap-align: start;
    padding-top: 24px;
  padding-bottom: 40px;
  }

.services .grid {
   align-items: start;
  overflow: visible;
  padding-top: 0vh;
  padding-bottom: 0vh;
  grid-template-columns: 1fr;
  gap: 44px;
 margin-bottom: 80px;
  
}

.services h2 {
    margin-bottom: 24px;
  }



/* КАРТОЧКА = ПРОДУКТ */


.card {
  background: var(--bg-surface);

  border-radius: 14px;
  min-height: auto;

  padding: 20px 16px 18px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border-soft);

  opacity: 0.75;

  box-shadow: var(--shadow-soft);

  transform: translateY(40px) scale(0.94);

  transition:
    opacity 0.55s var(--ease-premium),
    background-color 0.5s var(--ease-premium),
    border-color 0.5s var(--ease-premium),
    box-shadow 0.5s var(--ease-premium);
}


.card-expand {
  margin-top: 0;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;

  transform: translateY(12px);

  transition:
    max-height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.35s ease,
    margin-top 0.35s ease;
}

.card.opened .card-expand {
  max-height: 320px;

  opacity: 1;
  pointer-events: auto;

  transform: translateY(0);

  margin-top: 18px;
}
/* АКТИВНАЯ */

.card.in-view {
  transform: translateY(0) scale(0.96);
  transition: transform 0.6s var(--ease-premium);
}

.card.active {
  opacity: 1;
   transform: translateY(-6px);

  background: #FFFFFF;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    0 6px 18px rgba(0,0,0,0.08);

  border-color: rgba(0,0,0,0.12);
}

/* FEATURED */



/* FEATURED ACTIVE (ЦЕНТР) */

.card.featured.active {
  background:
    linear-gradient(
      180deg,
      #FCFBF8 0%,
      #F4F1EA 100%
    );

  border: 1px solid rgba(74, 87, 70, 0.14);

  box-shadow:
    0 20px 44px rgba(20,20,20,0.08),
    0 8px 20px rgba(20,20,20,0.05);

  transform: translateY(-8px);
}

.card.featured.active::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  border: 1px solid rgba(255,255,255,0.55);

  pointer-events: none;
}



.card > * {
  position: relative;
  z-index: 1;
}
/* ГЛАВНАЯ */

.card.featured {
  overflow: visible;
  padding-top: 36px;

  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F8F6F1 100%
    );

  border: 1px solid rgba(74, 87, 70, 0.08);

  box-shadow:
    0 14px 34px rgba(20,20,20,0.06),
    0 6px 14px rgba(20,20,20,0.03);
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 16px;

  padding: 7px 14px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;

  background: rgba(255,255,255,0.92);
  color: #232323;

  border: 1px solid rgba(43,43,43,0.08);

  border-radius: 10px;

  box-shadow:
    0 10px 22px rgba(20,20,20,0.05);

  backdrop-filter: blur(8px);
}
/* УБРАТЬ ВСЕ ЛИНИИ */

.services .grid > .card::after {
  display: none !important;
}

/* ===== ЗАГОЛОВОК ===== */

.card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* ===== ВЫ ПОЛУЧИТЕ ===== */



/* ===== ОПИСАНИЕ ===== */

.service-desc {
 font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
   color: #5F5D59;
  margin-bottom: 10px;
}

/* ===== СПИСОК ===== */

.service-list {
  margin-bottom: 14px;
  padding-left: 14px;
}

.service-list li {
  font-size: 13px;
  line-height: 1.4;
  color: #6A6762;
  margin-bottom: 4px;
}

/* ===== РЕЗУЛЬТАТ (АКЦЕНТ) ===== */


.service-result {
  margin-bottom: 18px;

  padding: 14px 14px;

  background: rgba(255,255,255,0.72);

  border: 1px solid rgba(43,43,43,0.06);
  border-left: 3px solid var(--brand-green);

  border-radius: 10px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;

  color: #0E0E0F;

  box-shadow:
    0 10px 24px rgba(20,20,20,0.04);

  transform-origin: left;
  transform: scaleX(0);

  transition:
    transform 0.9s cubic-bezier(0.2, 0.9, 0.25, 1.1);

  overflow: hidden;
}

.card.result-shown .service-result {
  transform: scaleX(1);

  transition-delay: 0.8s; /* после активации карточки */
}

.service-result-text {
  display: block;

  opacity: 0;
  transform: translateY(6px);

  transition:
    opacity 0.35s var(--ease-premium),
    transform 0.35s var(--ease-premium);
}

.card.result-shown .service-result-text {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 1.4s;
}
/* ===== ЦЕНА ===== */

.service-price {
  font-size: 16px;
  font-weight: 800;

  margin-top: 14px;
  margin-bottom: 20px;

  padding-top: 10px;

  border-top: 1px solid rgba(0,0,0,0.06);

  color: #0E0E0F;
}

/* ===== ИЗОБРАЖЕНИЕ ===== */

.service-img {
  margin-top: 16px;

  width: 100%;
  height: 140px;

  object-fit: cover;
  border-radius: 10px;
}

.services-warning {
  margin-top: 32px;
  padding: 20px 18px;
}

.services-warning-title {
  font-size: 18px;
  margin-bottom: 14px;
}

.services-warning-list li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* ===== CTA ОТСТУП ===== */

.services-cta {
  margin-top: 32px;
}



/* ===== PROCESS AXIS ===== */
/* ===== PROCESS AXIS PM===== */
/* ===== Animation ===== */
 
.process-card.active .process-result {
  opacity: 1;
  transform: translateY(0);
}

.process-card.active .process-desc {
  opacity: 1;
}

.process-card.active h3 {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PROCESS AXIS ===== */
.process {
  position: relative;
  padding-bottom: 40px;
}

.process .grid {
 align-items: start;
  grid-template-columns: 1fr;
  position: relative;
   padding-left: 18px;
  gap: 36px;
}

.process .grid::before {
  content: "";
  position: absolute;

  left: 5px;
  top: 10px;
  bottom: 6px;
  opacity: 1;
z-index: 2;
  background: #0E0E0F;
width: 2px;
  height: auto;
  
  transform-origin: top;
  transform: scaleY(var(--line-progress));

  transition: transform 0.6s var(--ease-premium);
}
.process-card h3,
.process-desc,
.process-result {
  padding-left: 34px;
}
.process-card::before {
 position: absolute;
  left: -1px;
    top: 10px;
 opacity: 0;
  width: 12px;
  height: 12px;
  z-index: 2;
  background: #BDBDBD;
  border-radius: 50%;
  transform: scale(0); /* ключ */
  transform-origin: center;

  transition:
    transform 0.4s var(--ease-premium),
    opacity 0.3s ease;
}

.process-card {
  position: relative;
  padding-top: 18px;
  padding-bottom: 24px;

  opacity: 1;
  transform: translateY(0);

  z-index: 2;

  transition:
    opacity 0.65s var(--ease-premium),
    transform 0.65s var(--ease-premium);
}



.process-card.active::before {
 transform: scale(1.2);
  opacity: 1;
 animation: dotPop 0.4s ease forwards;
  background: #0E0E0F;
} 
@keyframes dotPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
	}

.process-step {
  margin-bottom: 48px; /* было ~70–90 */
}

.process-card h3 {
    font-size: 18px;
  line-height: 1.3;
  margin-bottom: 6px;
  opacity: 0.75;
  transform: translateY(6px);
  transition: all 0.4s var(--ease-premium);
}

.process-step p {
  margin-bottom: 14px;
  line-height: 1.45; /* было слишком рыхло */
}

.process-step::before {
  height: calc(100% - 8px); /* убираем лишнее вытягивание */
}

.step-number {
    position: absolute;
  left: 26px;
  top: 2px;

  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;

  color: #0E0E0F;
  background: transparent;
  padding: 0;
  z-index: 3;

  opacity: 1;
  transform: none;
}





.process-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #9C9A96;

  margin-bottom: 10px;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease-premium);
}

.process-result {
  margin-top: 18px;
  padding: 12px 14px;

  padding-left: 14px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  border-left: 5px solid #0E0E0F;

  color: #0E0E0F;
  opacity: 0.2;
  transform: translateY(8px);
  transition:
    opacity 0.5s var(--ease-premium),
    transform 0.5s var(--ease-premium);
}



.process-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.process-warning {
   margin-top: 56px;
  padding: 20px 18px;
}

.process-warning-title {
  font-size: 18px;
}

.process-warning-list li {
  font-size: 14px;
  margin-bottom: 8px;
}

 .process-final {
  margin-top: 40px;
}

.process-cta {
  margin-top: 20px;
}

  /* ===== PROJECT ===== */

.project-case {
    opacity: 1;
    padding: 80px 0 20px;
  }

  .case-head {
    margin-bottom: 40px;
  }
.case-status {
  font-size: 14px;
}
  .case-subtitle {
    font-size: 15px;
  }

  .case-section {
    margin-bottom: 40px;
    
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.6s var(--ease-premium),
      transform 0.6s var(--ease-premium);
  }

.case-section.active {
    opacity: 1;
    transform: translateY(0);
  }

.case-item {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.5s var(--ease-premium),
      transform 0.5s var(--ease-premium);
  }

  .case-section.in-view .case-item--big {
   opacity: 0.6;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
  }

  .case-section.in-view .case-item:not(.case-item--big) {
    opacity: 1;
    transform: translateY(0);
  }
 .case-section.active .case-item--big {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
 .case-section.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .case-section h3 {
    font-size: 18px;
  }

  .case-text {
    font-size: 14px;
  }
  .case-section.in-view .case-list li {
    opacity: 0.6;
    transform: translateY(0);
  }

  .case-section.active .case-list li {
    opacity: 1;
  }

  /* BEFORE */

  .case-before {
    grid-template-columns: 1fr;
  }

 .case-before img,
.case-item img {
  height: auto;
  border-radius: 12px;
}
.case-section.in-view .case-before img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
  /* GRID */

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

  .case-item--big {
    grid-column: span 1;
    opacity: 0;
  transform: translateY(20px) scale(1.04);
  }

  /* BRIDGE */

  .case-bridge {
  padding: 20px 18px;
  font-size: 15px;
  border-radius: 10px;
}
.case-bridge.in-view {
  opacity: 0.6;
  transform: translateX(0);
}

.case-bridge.active {
  opacity: 1;
  transform: translateX(0);
}
  /* CTA */

  .case-cta .btn {
min-height: 64px;
    width: 100%;
  }

  .case-cta h3 {
    font-size: 18px;
  }
.case-cta.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

  .case-cta.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* ===== ABOUT ===== */

 .about {
    padding: 120px 0;
  }

  .about-grid {
   grid-template-columns: 1fr;
  gap: 28px;
  }

  .about h2 {
   max-width: 300px;
    font-size: 26px;
    margin-bottom: 32px;
  }

.about-name {
  font-size: 18px;
}

.about-role {
  font-size: 13px;
}

  .about-photo img {
    aspect-ratio: 4 / 4.6;
  object-fit: cover;
border-radius: 12px;
  }
.about-text {
  font-size: 15px;
  line-height: 1.7;
}
  .about-text p {
    font-size: 14px;
  }

  .about-lead {
    font-size: 15px;
  }

  .about-facts {
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-note {
    padding: 20px 18px;
  font-size: 15px;
  border-radius: 10px;
  }

  .about-cta {
    max-width: none;
  }

  .about-cta .btn {
    width: 100%;
  }


  /* ===== CONTACT ===== */

 .contacts {
    padding: 40px 0 40px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
.contacts-header {
  display: block;
  margin-top: 12px;
  margin-bottom: 28px;
}

.contacts-header h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.3;
  max-width: 100%;
}

.contacts-header .contacts-logo {
  width: 132px;
  margin-top: 14px;
  margin-bottom: 18px;
}


.contacts-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.contacts-header {
  width: 100%;
  height: auto;
}
  .contacts h2 {
font-size: 22px;
    margin-bottom: 0px;
  }

  .contacts-value {
    font-size: 16px;
  }

 .contacts-cta {
  margin-top: 4px;
  padding: 18px 16px;
  border-radius: 12px;

  gap: 14px;
}
.contacts-cta form {
  gap: 10px;
}
.contacts-cta textarea {
  min-height: 88px;
 font-size: 14px
}
.contacts-cta input {
  min-height: 54px;
  font-size: 14px;
}
  .contacts-cta .btn {
min-height: 64px;
    width: 100%;
  }

.contacts-logo {
  width: 132px;

  margin-top: 14px;
  margin-bottom: 22px;

  display: flex;
  justify-content: flex-start;
}
.contacts-icons {
  gap: 10px;
}
.contacts-logo svg {
 
 width: 100%;
  height: auto;
  display: block;
}
  .wa-fixed {
    bottom: 20px;
    right: 20px;

    width: 56px;
    height: 56px;
  
  overflow: visible;
  position: fixed;
 

  z-index: 999;
   isolation: isolate;
}
.wa-fixed::after {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;

  background: rgba(37, 211, 102, 0.35);

  animation: waPulse 2.2s infinite;
inset: -6px;
   z-index: 0;
}
.wa-fixed svg {
  position: relative;
  z-index: 1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .floating-nav {
    top: 20px;
    right: 20px;
    z-index: 1500;
   opacity: 1;
    transition: opacity 0.35s ease;
  }
.floating-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .floating-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}
}
