/* Verdelia - Styles
   Source of truth: index.html (Claude's original)
   Fonts: Cormorant Garamond + Manrope
*/

:root {
  --deep-green: #0a2e22;
  --rich-green: #134d2e;
  --accent-green: #3ecf8e;
  --mint: #7ee8b8;
  --cream: #f5f1eb;
  --warm-white: #faf8f5;
  --gold: #c9a96e;
  --charcoal: #1a1a1a;
  --text-dark: #0d1b12;
  --text-muted: #5a6b5e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--charcoal);
  overflow-x: hidden;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 53, 39, .95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: #fff;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-green);
  transition: width .4s cubic-bezier(.23, 1, .32, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px !important;
  border: 1px solid rgba(255, 255, 255, .3) !important;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, .1) !important;
  border-color: var(--accent-green) !important;
  color: var(--accent-green) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Desktop dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(10, 53, 39, .97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(62, 207, 142, .15);
  border-radius: 12px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: none;
  transition: all .25s;
  white-space: nowrap;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  color: #fff;
  background: rgba(62, 207, 142, .1);
  padding-left: 28px;
}

/* Mobile dropdown */
.mobile-has-dropdown {
  position: relative;
}

.mobile-dropdown-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-left: 16px;
}

.mobile-has-dropdown.open .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .9rem;
  transition: all .3s;
}

.mobile-dropdown-menu a:hover {
  color: var(--accent-green);
  padding-left: 10px;
}

/* Mobile menu button */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all .3s;
}

/* Burger animation */
.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(170deg, rgba(10, 53, 39, .92) 0%, rgba(6, 26, 15, .95) 60%, rgb(17 97 62 / 97%) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 20px 40px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-menu-logo img {
  height: 46px;
  width: auto;
  opacity: .7;
}

.mobile-menu-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

.mobile-menu-close:hover {
  border-color: var(--accent-green);
  transform: rotate(90deg);
}

.mobile-menu-close:hover svg {
  color: var(--accent-green);
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 30px;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 1rem;
  transition: all .3s;
}

.mobile-nav-links a:hover {
  color: var(--accent-green);
  padding-left: 10px;
}

.mobile-phone {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  max-width: 300px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  transition: border-color .3s, color .3s;
}

.mobile-cta svg {
  transition: transform .3s;
}

.mobile-cta:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.mobile-cta:hover svg {
  transform: translateX(3px);
}

.mobile-cta-abonement {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--deep-green);
  margin-top: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mobile-cta-abonement:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--deep-green);
}

.mobile-messengers {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 28px;
}

.mobile-messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
  font-size: .85rem;
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(62, 207, 142, .25);
  padding-bottom: 3px;
  width: fit-content;
  transition: color .3s, border-color .3s;
}

.mobile-messenger-link:hover {
  color: var(--mint);
  border-color: var(--mint);
}

.mobile-messenger-link .messenger-arrow {
  display: inline-block;
  transition: transform .3s;
}

.mobile-messenger-link:hover .messenger-arrow {
  transform: translateX(4px);
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(160deg, rgba(10, 46, 26, .85) 0%, rgba(10, 46, 26, .5) 35%, rgba(10, 46, 26, .35) 55%, rgba(10, 46, 26, .7) 100%);*/
  background: linear-gradient(160deg, rgb(18 61 53 / 65%) 0%, rgb(0 36 25 / 75%) 35%, rgb(6 21 15 / 75%) 55%, rgb(30 78 63 / 67%) 100%);
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 250px 80px rgba(0, 0, 0, .35);
  pointer-events: none;
}

.hero-bg-light {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(62, 207, 142, .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  animation: fadeUp 1.2s cubic-bezier(.23, 1, .32, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid rgba(62, 207, 142, .3);
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  animation: fadeUp 1.2s .2s cubic-bezier(.23, 1, .32, 1) both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeUp 1.2s .3s cubic-bezier(.23, 1, .32, 1) both;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-green);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 200;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .06em;
  margin-bottom: 50px;
  animation: fadeUp 1.2s .45s cubic-bezier(.23, 1, .32, 1) both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeUp 1.2s .6s cubic-bezier(.23, 1, .32, 1) both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeUp 1.2s 1s cubic-bezier(.23, 1, .32, 1) both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-green);
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent-green);
  color: var(--deep-green);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(62, 207, 142, .35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: all .4s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  background: var(--deep-green);
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(62, 207, 142, .15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s;
}

.btn-dark:hover::before {
  transform: translateX(100%);
}

.btn-dark:hover {
  background: var(--rich-green);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(10, 46, 26, .3);
}

/* ========================================
   SECTIONS
   ======================================== */
section {
  position: relative;
}

.section-light {
  background: var(--warm-white);
  color: var(--text-dark);
}

.section-dark {
  background: var(--deep-green);
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
}

.section-dark .section-label {
  color: var(--accent-green);
}

.section-dark .section-label::before {
  background: var(--accent-green);
}

.section-light .section-label {
  color: var(--rich-green);
}

.section-light .section-label::before {
  background: var(--rich-green);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-dark .section-title em {
  color: var(--accent-green);
}

.section-light .section-title em {
  color: var(--rich-green);
}

/* ========================================
   FOR WHOM
   ======================================== */
.for-whom {
  padding: 140px 0;
  overflow: hidden;
  position: relative;
}

.for-whom-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(126, 232, 184, .3);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-300px) translateX(50px);
  }
}

.for-whom .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.for-whom-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .6);
  margin-top: 30px;
  max-width: 480px;
}

.for-whom-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.for-whom-card {
  padding: 36px 40px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-left: 3px solid var(--accent-green);
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.for-whom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 207, 142, .05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .5s;
}

.for-whom-card:hover::before {
  opacity: 1;
}

.for-whom-card:hover {
  border-color: rgba(62, 207, 142, .2);
  transform: translateX(8px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent-green);
}

.card-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
}

.for-whom-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: #fff;
}

.for-whom-card p {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
  font-weight: 300;
}

/* ========================================
   DIVIDER QUOTE
   ======================================== */
.divider-quote {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.divider-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rich-green), transparent);
  opacity: .2;
}

.divider-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--rich-green);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 140px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 1230px;
  height: 1230px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url('/images/icon_logo.svg') no-repeat center / contain;
  opacity: .025;
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 60px 50px 50px;
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .08);
  position: relative;
  overflow: hidden;
  transition: all .6s cubic-bezier(.23, 1, .32, 1);
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-green), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.23, 1, .32, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(10, 46, 26, .1);
}

.service-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  align-self: flex-start;
}

.badge-urgent {
  background: rgba(201, 169, 110, .12);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, .2);
}

.badge-permanent {
  background: rgba(62, 207, 142, .08);
  color: var(--rich-green);
  border: 1px solid rgba(62, 207, 142, .2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rich-green);
  text-decoration: none;
  transition: gap .3s, color .3s;
  margin-top: 36px;
}

.service-link:hover {
  gap: 16px;
  color: var(--accent-green);
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform .3s;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   CASES
   ======================================== */
.cases {
  padding: 140px 0;
  overflow: hidden;
}

.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.cases-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-green);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: gap .3s;
}

.cases-link:hover {
  gap: 16px;
}

.stat-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-green);
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 200;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cases .case-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--rich-green);
  border: none;
}

.cases .case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .8s cubic-bezier(.23, 1, .32, 1);
  filter: grayscale(30%);
}

.cases .case-card:hover .case-img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.cases .case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 46, 26, .95) 0%, rgba(10, 46, 26, .3) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
}

.cases .case-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 10px;
}

.cases .case-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.cases .case-meta {
  font-size: .8rem;
  color: var(--accent-green);
  font-weight: 300;
}

.cases .case-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
}

.cases .case-card:hover .case-arrow {
  opacity: 1;
  transform: translateY(0);
}

.cases .case-arrow svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.cases-carousel-nav {
  display: none;
  gap: 12px;
  margin-top: 20px;
}

.cases-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}

.cases-nav-btn svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

.cases-nav-btn:hover {
  border-color: var(--accent-green);
  background: rgba(106, 168, 79, .1);
}

.cases-nav-btn:hover svg {
  color: var(--accent-green);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(19, 77, 46, .06);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(19, 77, 46, .06);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section .section-label {
  color: var(--rich-green);
  justify-content: center;
}

.cta-section .section-label::before {
  background: var(--rich-green);
}

.cta-inner .section-title {
  color: var(--deep-green);
  margin-bottom: 20px;
}

.cta-section .section-title em {
  color: var(--accent-green);
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 50px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
}

.cta-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(62, 207, 142, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 40px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, .5);
}

.footer-brand {
  text-align: center;
  margin-bottom: 0;
}

.footer-logo {
  display: inline-block;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  opacity: .55;
}

.footer-tagline {
  font-size: .82rem;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, .3);
  max-width: 360px;
  margin: 16px auto 0;
  letter-spacing: .02em;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .06);
  margin: 40px 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 300;
  margin-bottom: 14px;
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--accent-green);
}

.footer-location {
  display: block;
  font-size: .9rem;
  font-weight: 200;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 18px;
}

.footer-messengers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-col .messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(106, 168, 79, .3);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
  margin-bottom: 0;
  width: fit-content;
}

.footer-col .messenger-link:hover {
  color: var(--mint);
  border-color: var(--mint);
}

.messenger-arrow {
  display: inline-block;
  font-size: 1.1em;
  transition: transform .3s ease;
}

.footer-col .messenger-link:hover .messenger-arrow {
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 48px;
  padding-top: 30px;
  text-align: center;
  font-size: .82rem;
  font-weight: 200;
  color: rgba(255, 255, 255, .25);
}

/* ========================================
   ANIMATIONS / REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(.23, 1, .32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */
.page-hero {
  padding: 180px 0 100px;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
  --parallax-y: 0px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: -60px;
  background: url('/images/hero.jpg') center/cover no-repeat;
  opacity: .08;
  transform: translateY(var(--parallax-y));
  will-change: transform;
  pointer-events: none;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(62, 207, 142, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--accent-green);
  font-weight: 400;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  font-weight: 200;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .04em;
  max-width: 600px;
}

.page-nav {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .3s;
}

.breadcrumbs a:hover {
  color: var(--accent-green);
}

.breadcrumbs span {
  color: var(--accent-green);
}

/* ========================================
   SOLUTIONS GRID (razovye.html)
   ======================================== */
.solutions {
  padding: 120px 0;
  background: var(--warm-white);
}

.solutions .container {
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  text-align: left;
}

.solution-card {
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .08);
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 46, 26, .1);
  border-color: rgba(62, 207, 142, .2);
}

.solution-image {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.solution-image img {
  transition: transform .5s cubic-bezier(.23, 1, .32, 1);
}

.solution-image:hover img {
  transform: scale(1.05);
}

.solution-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--deep-green), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.23, 1, .32, 1);
}

.solution-card:hover .solution-image::after {
  transform: scaleX(1);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream), #e8e4dd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  opacity: .25;
}

.solution-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(62, 207, 142, .1) 0%, rgba(10, 46, 26, .05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.solution-icon svg {
  width: 24px;
  height: 24px;
  color: var(--rich-green);
  stroke-width: 1.5;
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-card .solution-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}

.solution-features li {
  position: relative;
  padding-left: 16px;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

.solution-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
}

.solution-features li + li {
  margin-top: 6px;
}

.solution-price {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.solution-actions {
  display: flex;
  gap: 10px;
}

.solution-actions .btn-small {
  padding: 12px 20px;
  font-size: .75rem;
  text-align: center;
  justify-content: center;
  flex: 1;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
}

.btn-small.btn-primary {
  background: var(--accent-green);
  color: var(--deep-green);
  border: none;
}

.btn-small.btn-primary:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--rich-green);
  border: 1px solid rgba(19, 77, 46, .2);
}

.btn-ghost:hover {
  border-color: var(--rich-green);
  background: rgba(19, 77, 46, .04);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 26, .85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(.95);
  transition: transform .4s cubic-bezier(.23, 1, .32, 1);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 77, 46, .1);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  z-index: 10;
}

.modal-close:hover {
  border-color: var(--accent-green);
  background: rgba(62, 207, 142, .08);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
}

.modal-header {
  padding: 50px 50px 30px;
  border-bottom: 1px solid rgba(19, 77, 46, .08);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-right: 40px;
}

.modal-header .modal-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rich-green);
  font-weight: 500;
}

.modal-body {
  padding: 30px 50px;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rich-green);
  margin-bottom: 12px;
}

.modal-section p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.modal-section ul {
  list-style: none;
  padding: 0;
}

.modal-section ul li {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.modal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
}

.modal-footer {
  padding: 30px 50px 50px;
  display: flex;
  gap: 16px;
}

.modal-footer .btn-primary {
  flex: 1;
  justify-content: center;
}

.modal-footer .btn-secondary {
  color: var(--text-muted);
  border-color: rgba(19, 77, 46, .15);
}

.modal-footer .btn-secondary:hover {
  color: var(--text-dark);
  border-color: rgba(19, 77, 46, .3);
  background: transparent;
}

/* ========================================
   CONTACT POPUP
   ======================================== */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 26, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: #fff;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 48px 40px 40px;
  transform: translateY(30px) scale(.95);
  transition: transform .4s cubic-bezier(.23, 1, .32, 1);
}

.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
}

/* Scrollbar */
.popup::-webkit-scrollbar { width: 4px; }
.popup::-webkit-scrollbar-track { background: transparent; }
.popup::-webkit-scrollbar-thumb { background: rgba(19, 77, 46, .15); border-radius: 4px; }

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(19, 77, 46, .1);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  z-index: 10;
}

.popup-close:hover {
  border-color: var(--accent-green);
  background: rgba(62, 207, 142, .08);
}

.popup-close svg {
  width: 18px;
  height: 18px;
  color: var(--text-dark);
}

.popup-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
  padding-right: 40px;
}

.popup-subtitle {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: .02em;
}

/* ── Form fields ── */

.popup-field {
  margin-bottom: 20px;
  position: relative;
}

.popup-label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.popup-req {
  color: var(--accent-green);
}

.popup-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19, 77, 46, .15);
  border-radius: 8px;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  transition: border-color .3s;
  outline: none;
  box-sizing: border-box;
}

.popup-input:focus {
  border-color: var(--accent-green);
}

.popup-input::placeholder {
  color: rgba(90, 107, 94, .75);
}

.popup-textarea {
  resize: vertical;
  min-height: 60px;
}

.popup-field-error {
  display: none;
  font-size: .75rem;
  color: #e74c3c;
  margin-top: 6px;
}

.popup-field.has-error .popup-input {
  border-color: #e74c3c;
}

.popup-field.has-error .popup-field-error {
  display: block;
}

/* ── Contact method radio cards ── */

.popup-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.popup-method {
  cursor: pointer;
}

.popup-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.popup-method-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border: 1px solid rgba(19, 77, 46, .12);
  border-radius: 10px;
  background: var(--warm-white);
  transition: all .3s;
  text-align: center;
}

.popup-method-inner svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  transition: color .3s;
}

.popup-method-inner span {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color .3s;
}

.popup-method input:checked + .popup-method-inner {
  border-color: var(--accent-green);
  background: rgba(62, 207, 142, .06);
}

.popup-method input:checked + .popup-method-inner svg {
  color: var(--accent-green);
}

.popup-method input:checked + .popup-method-inner span {
  color: var(--text-dark);
}

.popup-method-inner:hover {
  border-color: rgba(62, 207, 142, .4);
}

/* Method brand colors on checked */
.popup-method input:checked + .popup-method-wa svg { color: #25D366; }
.popup-method input:checked + .popup-method-tg svg { color: #2AABEE; }
.popup-method input:checked + .popup-method-phone svg { color: var(--accent-green); }

.popup-method-icon-img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  object-fit: contain;
}

/* ── File upload ── */

.popup-upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px dashed rgba(19, 77, 46, .25);
  border-radius: 8px;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s;
}

.popup-upload-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.popup-upload-btn svg {
  width: 18px;
  height: 18px;
}

.popup-upload-hint {
  font-size: .72rem;
  color: rgba(90, 107, 94, .6);
}

.popup-upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popup-upload-item {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(19, 77, 46, .1);
}

.popup-upload-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-upload-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s;
}

.popup-upload-remove:hover {
  background: rgba(231, 76, 60, .9);
}

.popup-upload-remove svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

/* ── Consent checkbox ── */

.popup-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.popup-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-green);
  cursor: pointer;
}

.popup-consent a {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.popup-consent a:hover {
  color: var(--mint);
}

/* ── Submit button ── */

.popup-submit {
  width: 100%;
  justify-content: center;
  font-size: .9rem;
}

.popup-submit:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Success state ── */

.popup-success {
  display: none;
  text-align: center;
  padding: 40px 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.popup-success.active {
  opacity: 1;
  transform: translateY(0);
}

.popup-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(62, 207, 142, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.popup-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
}

.popup-success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-success-text {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.popup-success-close {
  min-width: 200px;
  justify-content: center;
}

/* ── Popup mobile ── */

@media (max-width: 768px) {
  .popup-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .popup {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    padding: 32px 24px 24px;
    transform: translateY(100%);
  }

  .popup-overlay.active .popup {
    transform: translateY(0);
  }

  .popup-title {
    font-size: 1.5rem;
  }

  .popup-subtitle {
    display: none;
  }

  .popup-methods {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .popup-method-inner {
    padding: 10px 4px;
  }

  .popup-method-inner svg {
    width: 20px;
    height: 20px;
  }

  .popup-method-inner span {
    font-size: .65rem;
  }
}

/* ========================================
   CTA BLOCK (alternate style)
   ======================================== */
.cta-block {
  padding: 100px 0;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(62, 207, 142, .08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-block .section-label {
  color: var(--accent-green);
}

.cta-block .section-label::before {
  background: var(--accent-green);
}

.cta-block .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.cta-block-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-block-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   WORK STEPS
   ======================================== */
.work-steps {
  padding: 120px 0;
  background: var(--warm-white);
}

.work-steps .container {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--rich-green) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 68px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), rgba(62, 207, 142, .2));
}

.step-card:last-child::after {
  display: none;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing {
  padding: 120px 0;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(62, 207, 142, .06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 40px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(62, 207, 142, .2);
  transform: translateY(-6px);
}

.pricing-card.featured {
  background: rgba(62, 207, 142, .08);
  border-color: var(--accent-green);
}

.pricing-card.featured::before {
  content: 'Рекомендуем';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: var(--deep-green);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 20px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233ecf8e' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.pricing-card .btn-secondary {
  width: 100%;
  justify-content: center;
  border-color: rgba(255, 255, 255, .2);
}

.pricing-card .btn-secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.pricing-note {
  margin-top: 50px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 300;
}

.pricing-note a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color .3s;
}

.pricing-note a:hover {
  color: var(--mint);
}

/* ========================================
   COMPARE TABLE
   ======================================== */
.compare {
  padding: 120px 0;
  background: var(--warm-white);
}

.compare .container {
  text-align: center;
}

.compare-table {
  margin-top: 60px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 46, 26, .06);
}

.compare-table thead th {
  padding: 22px 24px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--deep-green);
  border-bottom: none;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th:not(:first-child) {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.compare-table tbody td {
  padding: 18px 24px;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 400;
  border-bottom: 1px solid rgba(19, 77, 46, .08);
  vertical-align: middle;
  background: #fff;
}

.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.compare-table tbody td:not(:first-child) {
  text-align: center;
  border-left: 1px solid rgba(19, 77, 46, .05);
}

.compare-table tbody tr:hover td {
  background: rgba(62, 207, 142, .06);
}

.compare-check {
  color: var(--accent-green);
  font-size: 1.3rem;
  font-weight: 600;
}

.compare-dash {
  color: rgba(90, 107, 94, .25);
  font-size: 1.1rem;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq .section-label {
  color: var(--rich-green);
}

.faq .section-label::before {
  background: var(--rich-green);
}

.faq .container {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .08);
  transition: all .3s;
}

.faq-item.active {
  border-color: rgba(62, 207, 142, .3);
  box-shadow: 0 8px 30px rgba(10, 46, 26, .08);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color .3s;
}

.faq-question:hover {
  color: var(--rich-green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--rich-green);
  transition: transform .3s;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.23, 1, .32, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ========================================
   STEPPER / CONFIGURATOR
   ======================================== */
.configurator {
  padding: 120px 0 80px;
  background: var(--warm-white);
  min-height: 100vh;
}

.configurator-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* Progress Steps */
.stepper-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.stepper-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(19, 77, 46, .1);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.progress-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(19, 77, 46, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
  transition: all .3s;
}

.progress-step.active .progress-step-number,
.progress-step.completed .progress-step-number {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--deep-green);
}

.progress-step.completed .progress-step-number {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: #fff;
}

.progress-step-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-muted);
  text-align: center;
  max-width: 100px;
  transition: color .3s;
}

.progress-step.active .progress-step-label {
  color: var(--deep-green);
}

/* Stepper Content */
.stepper-content {
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .08);
  padding: 40px;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

/* Form Groups */
.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rich-green);
  margin-bottom: 12px;
}

.form-hint {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 8px;
}

.form-error {
  font-size: .8rem;
  color: #c45;
  font-weight: 400;
  margin-top: 8px;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

/* Range Slider */
.range-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.range-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: rgba(19, 77, 46, .1);
  border-radius: 3px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--accent-green);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--accent-green);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.range-value {
  width: 80px;
  padding: 10px 14px;
  border: 1px solid rgba(19, 77, 46, .15);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  background: #fff;
}

.range-value:focus {
  outline: none;
  border-color: var(--accent-green);
}

/* Radio Cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: #fff;
  border: 2px solid rgba(19, 77, 46, .1);
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}

.radio-card-label:hover {
  border-color: rgba(62, 207, 142, .4);
}

.radio-card input:checked + .radio-card-label {
  border-color: var(--accent-green);
  background: rgba(62, 207, 142, .05);
}

.radio-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rich-green);
}

.radio-card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.radio-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
}

.radio-card-desc {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.radio-card-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent-green);
  color: var(--deep-green);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* Checkboxes */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-green);
  cursor: pointer;
}

.checkbox-label {
  flex: 1;
}

.checkbox-label-text {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 400;
}

.checkbox-label-price {
  font-size: .85rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-left: 8px;
}

.checkbox-sub-field {
  margin-top: 8px;
  padding-left: 32px;
  display: none;
}

.checkbox-item.has-sub.checked .checkbox-sub-field {
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkbox-sub-field input {
  width: 80px;
  padding: 8px 12px;
  border: 1px solid rgba(19, 77, 46, .15);
  font-size: .9rem;
}

.checkbox-sub-field input:focus {
  outline: none;
  border-color: var(--accent-green);
}

.checkbox-sub-field span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* Checkbox Grid (for step 3) */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checkbox-card {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .1);
  cursor: pointer;
  transition: all .3s;
}

.checkbox-card:hover {
  border-color: rgba(62, 207, 142, .3);
}

.checkbox-card.checked {
  border-color: var(--accent-green);
  background: rgba(62, 207, 142, .05);
}

.checkbox-card-inner {
  display: flex;
  gap: 12px;
}

.checkbox-card-inner input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-green);
}

.checkbox-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.checkbox-card-content p {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.checkbox-card-price {
  font-size: .9rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-top: 8px;
}

/* Text Input */
.text-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(19, 77, 46, .15);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .3s;
}

.text-input:focus {
  outline: none;
  border-color: var(--accent-green);
}

.text-input::placeholder {
  color: rgba(90, 107, 94, .5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Stepper Navigation */
.stepper-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(19, 77, 46, .08);
}

.stepper-nav .btn-secondary {
  color: var(--text-muted);
  border-color: rgba(19, 77, 46, .15);
}

.stepper-nav .btn-primary:disabled,
.stepper-nav .btn-secondary:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Summary Panel */
.summary-panel {
  position: sticky;
  top: 100px;
  background: linear-gradient(160deg, var(--deep-green) 0%, var(--rich-green) 50%, #0d3926 100%);
  padding: 32px;
  color: #fff;
  border-radius: 12px;
}

.summary-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.summary-section {
  margin-bottom: 20px;
}

.summary-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 6px;
}

.summary-value {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 300;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  padding: 4px 0;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, .1);
  margin: 20px 0;
}

.summary-price {
  text-align: center;
  padding: 20px 0;
}

.summary-price-monthly {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.summary-price-monthly span {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
}

.summary-price-yearly {
  font-size: .9rem;
  color: var(--accent-green);
  margin-top: 8px;
}

.summary-price-once {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
}

/* Step 4 Summary Card */
.final-summary {
  background: rgba(62, 207, 142, .06);
  border: 1px solid rgba(62, 207, 142, .2);
  padding: 28px;
  margin-bottom: 32px;
}

.final-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.final-summary-item {
  padding: 12px 0;
}

.final-summary-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rich-green);
  margin-bottom: 6px;
}

.final-summary-value {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 400;
}

.final-price-block {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .1);
}

.final-price-monthly {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-green);
}

.final-price-monthly span {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.final-price-yearly {
  font-size: 1.1rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-top: 8px;
}

.final-price-once {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.download-btn {
  margin-top: 20px;
}

/* Contact Form */
.contact-form-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(19, 77, 46, .1);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 300;
  cursor: pointer;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-green);
}

.consent-label a {
  color: var(--rich-green);
  text-decoration: underline;
}

/* Success Modal */
.modal-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(62, 207, 142, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-green);
}

.modal-success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}

.modal-success-text {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ========================================
   CONTACTS PAGE
   ======================================== */

.contacts-main {
  padding: 120px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contacts-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 16px 0 32px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6b5e' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.textarea-input {
  resize: vertical;
  min-height: 100px;
}

.form-optional {
  font-weight: 300;
  color: var(--text-muted);
}

.contact-submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* Contact Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(62, 207, 142, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--rich-green);
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-value {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  transition: color .3s;
}

a.contact-info-value:hover {
  color: var(--accent-green);
}

.contact-info-note {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
}

.contact-info-messengers {
  display: flex;
  gap: 16px;
}

.messenger-link {
  font-size: .95rem;
  color: var(--rich-green);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.messenger-link:hover {
  color: var(--accent-green);
}

.contact-info-schedule {
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-info-schedule strong {
  font-weight: 500;
}

.schedule-note {
  margin-top: 4px;
  color: var(--accent-green);
  font-weight: 500;
}

/* Map Section */
.contacts-map {
  padding: 120px 0;
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}

.map-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, rgba(62, 207, 142, .1), rgba(19, 77, 46, .2));
  border-radius: 16px;
  border: 1px solid rgba(62, 207, 142, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--accent-green);
  opacity: .6;
}

.map-placeholder span {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
}

.map-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
}

.map-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.map-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Details Section */
.contacts-details {
  padding: 100px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.details-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 16px 0 24px;
}

.requisites-list {
  margin: 0;
}

.requisite-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(19, 77, 46, .08);
  font-size: .9rem;
}

.requisite-item:last-child {
  border-bottom: none;
}

.requisite-item dt {
  color: var(--text-muted);
  font-weight: 400;
  min-width: 90px;
}

.requisite-item dd {
  color: var(--text-dark);
  font-weight: 400;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid rgba(19, 77, 46, .1);
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s ease;
}

.social-link:hover {
  border-color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 46, 26, .1);
}

.social-link svg {
  width: 22px;
  height: 22px;
  color: var(--rich-green);
  transition: color .3s;
}

.social-link:hover svg {
  color: var(--accent-green);
}

.social-link span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ========================================
   PORTFOLIO / CASES PAGE
   ======================================== */

.portfolio {
  padding: 120px 0;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid rgba(19, 77, 46, .2);
  background: transparent;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s ease;
}

.filter-btn:hover {
  border-color: var(--rich-green);
  color: var(--rich-green);
}

.filter-btn.active {
  background: var(--rich-green);
  border-color: var(--rich-green);
  color: #fff;
}

.portfolio-count {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.portfolio-count strong {
  color: var(--text-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Case Card - Portfolio (cases.html) */
.portfolio .case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(19, 77, 46, .08);
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.portfolio .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 46, 26, .12);
  border-color: rgba(62, 207, 142, .2);
}

.portfolio .case-card.hidden {
  display: none;
}

/* Case Slider */
.case-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.case-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.case-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

.case-slide.active {
  opacity: 1;
}

.case-slide .case-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream), #e8e4dd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-slide .case-image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  opacity: .3;
}

.case-slide:nth-child(2) .case-image-placeholder {
  background: linear-gradient(145deg, #eae6df, #ddd9d2);
}

.case-slide:nth-child(3) .case-image-placeholder {
  background: linear-gradient(145deg, rgba(62, 207, 142, .1), rgba(126, 232, 184, .08));
}

.case-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(19, 77, 46, .2);
  cursor: pointer;
  transition: all .3s ease;
}

.case-dot:hover {
  background: rgba(19, 77, 46, .4);
}

.case-dot.active {
  background: var(--rich-green);
  width: 24px;
  border-radius: 4px;
}

.portfolio .case-content {
  padding: 28px;
}

.portfolio .case-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.portfolio .case-details {
  margin: 0;
}

.portfolio .case-detail {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .9rem;
  line-height: 1.5;
}

.portfolio .case-detail:last-of-type {
  margin-bottom: 0;
}

.portfolio .case-detail dt {
  font-weight: 500;
  color: var(--text-dark);
  flex-shrink: 0;
}

.portfolio .case-detail dd {
  color: var(--text-muted);
  font-weight: 300;
}

/* ========================================
   WINTER PAGE
   ======================================== */

.winter-why {
  padding: 120px 0;
  text-align: center;
}

.winter-services {
  padding: 120px 0;
}

.winter-tariffs {
  padding: 120px 0;
  text-align: center;
}

.winter-why .section-label,
.winter-tariffs .section-label {
  justify-content: center;
}

.winter-why-grid,
.winter-table-wrap,
.winter-table-note {
  text-align: left;
}

/* Why cards grid */
.winter-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.winter-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(19, 77, 46, .08);
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.winter-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 46, 26, .1);
  border-color: rgba(62, 207, 142, .3);
}

.winter-why-icon {
  width: 56px;
  height: 56px;
  background: rgba(62, 207, 142, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.winter-why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--rich-green);
}

.winter-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.winter-why-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* Services section */
.winter-services-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.winter-services-list {
  list-style: none;
  counter-reset: winter-step;
}

.winter-services-list li {
  counter-increment: winter-step;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  padding-left: 60px;
}

.winter-services-list li:first-child {
  padding-top: 0;
}

.winter-services-list li:last-child {
  border-bottom: none;
}

.winter-services-list li::before {
  content: counter(winter-step);
  position: absolute;
  left: 0;
  top: 24px;
  width: 40px;
  height: 40px;
  background: rgba(62, 207, 142, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-green);
}

.winter-services-list li:first-child::before {
  top: 0;
}

.winter-services-list li strong {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

.winter-services-list li span {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
}

/* Price card */
.winter-price-card {
  background: linear-gradient(145deg, var(--rich-green), var(--deep-green));
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(62, 207, 142, .2);
  position: sticky;
  top: 120px;
}

.winter-price-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.winter-price-value {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.winter-price-value span {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .7);
}

.winter-price-period {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 32px;
}

.winter-price-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Tariffs table section */
.winter-table-wrap {
  margin-top: 50px;
  overflow-x: auto;
}

.winter-table {
  margin: 0 auto;
}

.winter-table thead th span {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
}

.winter-table .table-note {
  color: var(--text-muted);
  font-weight: 400;
}

.winter-table .table-check {
  color: var(--accent-green);
  font-weight: 500;
}

.winter-table .featured-row {
  background: rgba(62, 207, 142, .08);
}

.winter-table .featured-row td {
  border-color: rgba(62, 207, 142, .2);
}

.winter-table-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 30px;
}

.winter-table-note strong {
  color: var(--rich-green);
  font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Compact nav — wide screens */
@media (max-width: 1700px) {
  .navbar {
    padding: 20px 40px;
  }

  .navbar.scrolled {
    padding: 14px 40px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    letter-spacing: .09em;
  }

  .nav-cta {
    padding: 10px 20px !important;
  }
}

/* Compact nav — small desktop (1366–1500px) */
@media (max-width: 1500px) {
  .navbar {
    padding: 18px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .nav-logo-img {
    height: 32px;
  }


  .nav-links a {
    font-size: .72rem;
    letter-spacing: .05em;
  }

  .nav-cta {
    padding: 8px 14px !important;
  }
}

/* Switch to burger */
@media (max-width: 1280px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 30px;
  }

  .container {
    padding: 0 30px;
  }

  .for-whom .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services::before {
    width: 330px;
    height: 330px;
    top: 15%;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }

  .modal {
    max-width: 90%;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .step-card::after {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-table {
    font-size: .85rem;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 14px 16px;
  }

  .configurator-layout {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
    order: 1;
    margin-top: 24px;
  }

  .radio-cards {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  /* Contacts page tablet */
  .contacts-grid {
    gap: 50px;
  }

  .map-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .details-grid {
    gap: 50px;
  }

  /* Cases page tablet */
  .portfolio-grid {
    gap: 30px;
  }

  .portfolio .case-content {
    padding: 24px;
  }

  /* Winter page tablet */
  .winter-why-grid {
    gap: 24px;
  }

  .winter-services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .winter-price-card {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Navbar mobile: smaller logo, space-between layout */
  .navbar {
    padding: 14px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .nav-logo-img {
    height: 28px;
  }

  .navbar.scrolled .nav-logo-img {
    height: 26px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  /* Hero mobile */
  .hero-badge {
    font-size: .6rem;
    padding: 6px 16px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: .88rem;
    margin-bottom: 36px;
  }

  .hero-scroll {
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    width: fit-content;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    justify-content: center;
    text-align: center;
  }

  .cases-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-right: 20%;
  }

  .cases-grid::-webkit-scrollbar {
    display: none;
  }

  .cases .case-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }

  .cases-carousel-nav {
    display: flex;
  }

  .cases-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:nth-child(1),
  .footer-col:nth-child(2) {
    display: none;
  }

  .footer-messengers {
    align-items: center;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    padding: 20px;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .modal-header {
    padding-top: 40px;
  }

  .modal-header h2 {
    font-size: 1.6rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .cta-block-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-block-actions .btn-primary,
  .cta-block-actions .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    justify-content: center;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-card {
    padding: 24px 16px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card.featured::before {
    font-size: .6rem;
    padding: 6px 16px;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
  }

  .stepper-progress {
    gap: 8px;
  }

  .stepper-progress::before {
    left: 20px;
    right: 20px;
  }

  .progress-step-number {
    width: 32px;
    height: 32px;
    font-size: .9rem;
  }

  .progress-step-label {
    font-size: .65rem;
    max-width: 70px;
  }

  .stepper-content {
    padding: 24px;
  }

  .step-title {
    font-size: 1.4rem;
  }

  .radio-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .final-summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    padding: 24px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 12px;
    font-size: .8rem;
  }

  /* Contacts page mobile */
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contacts-form-title {
    font-size: 1.5rem;
  }

  .contact-submit {
    width: 100%;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .social-links {
    flex-direction: column;
  }

  .social-link {
    justify-content: center;
  }

  /* Cases page mobile */
  .portfolio-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: .8rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio .case-title {
    font-size: 1.05rem;
  }

  .portfolio .case-content {
    padding: 20px;
  }

  .portfolio .case-detail {
    flex-direction: column;
    gap: 2px;
  }

  /* Winter page mobile */
  .winter-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .winter-why-card {
    padding: 28px 24px;
  }

  .winter-why-card h3 {
    font-size: 1.15rem;
  }

  .winter-services-list li {
    padding-left: 50px;
  }

  .winter-services-list li::before {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .winter-price-card {
    padding: 32px 24px;
  }

  .winter-price-value {
    font-size: 2.2rem;
  }

  .winter-table thead th span {
    font-size: .65rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero {
    padding: 140px 0 80px;
  }

  .page-nav {
    flex-direction: column;
    align-items: center;
  }

  .page-nav .btn-primary,
  .page-nav .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    justify-content: center;
    text-align: center;
  }
}
