@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Russo+One&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
  --green-950: #0f1c10;
  --green-900: #162716;
  --green-850: #1d331a;
  --green-800: #22401e;
  --green-700: #2f5126;
  --green-600: #3e6a34;
  --green-500: #5d8b3f;
  --green-400: #7faa4f;
  --green-200: #c6dab0;
  --green-100: #e9f1de;
  --cream: #f7faf3;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(10, 20, 10, 0.18);
  --shadow-soft: 0 12px 40px rgba(12, 20, 10, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Rubik', sans-serif;
  color: var(--green-950);
  background: radial-gradient(circle at 20% -10%, rgba(127, 170, 79, 0.25), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(47, 81, 38, 0.22), transparent 48%),
    linear-gradient(180deg, #f8fbf5 0%, #eef4e6 55%, #f8fbf5 100%);
}

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

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

.container {
  width: min(92vw, var(--container));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button.primary {
  background: linear-gradient(140deg, var(--green-700), var(--green-500));
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 30, 15, 0.24);
}

.button.ghost {
  border-color: var(--green-600);
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.6);
}

.button.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 30, 15, 0.16);
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: linear-gradient(145deg, rgba(34, 64, 30, 0.08), rgba(255, 255, 255, 0.9));
}

.section .section-title {
  font-family: 'Manrope', 'Rubik', sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  margin: 0 0 16px;
  color: var(--green-900);
  letter-spacing: 0.3px;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.section .section-subtitle {
  margin: 0 0 36px;
  color: rgba(15, 28, 16, 0.75);
  max-width: 720px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 252, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(33, 51, 28, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  position: relative;
  box-shadow: none;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-mark::before {
  content: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: 'Manrope', 'Rubik', sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(25, 40, 22, 0.7);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
  font-weight: 500;
  color: rgba(18, 30, 16, 0.8);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  transition: transform 0.2s ease, background 0.2s ease, top 0.2s ease;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-weight: 600;
  color: var(--green-900);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(34, 64, 30, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.nav-toggle-label span {
  width: 22px;
  height: 2px;
  background: var(--green-800);
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--green-800);
}

.nav-toggle-label span::before {
  top: -7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

.nav-overlay {
  display: none;
}

.hero {
  padding: 110px 0 90px;
}

.hero.hero-home {
  position: relative;
  overflow: hidden;
}

.hero.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("assets/photo_2026-01-28%2014.07.57.jpeg") center right / cover no-repeat;
  filter: saturate(1.1) contrast(1.08) brightness(0.85);
  z-index: 0;
}

.hero.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(248, 251, 245, 0.96) 0%, rgba(240, 245, 236, 0.92) 45%, rgba(18, 30, 18, 0.55) 100%);
  z-index: 1;
}

.hero.hero-home .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  align-items: start;
}

.hero-grid.hero-grid-home {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 44px;
}

.hero-grid.documents {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 56px;
}

.hero-content {
  max-width: 560px;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(47, 81, 38, 0.12);
  color: var(--green-800);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero.hero-home .hero-eyebrow {
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-900);
  border: 1px solid rgba(33, 51, 28, 0.12);
  box-shadow: 0 10px 24px rgba(12, 20, 10, 0.08);
}

.hero-title {
  font-family: 'Manrope', 'Rubik', sans-serif;
  font-size: clamp(32px, 4.6vw, 60px);
  margin: 22px 0 18px;
  color: var(--green-900);
  letter-spacing: 0.35px;
  line-height: 1.12;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero.hero-home .hero-title {
  text-transform: none;
  color: var(--green-950);
  text-shadow: 0 14px 30px rgba(10, 20, 10, 0.2);
}

.hero-title.hero-title-docs {
  font-size: clamp(32px, 4.6vw, 60px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-docs .hero-actions {
  margin-top: 8px;
}

.hero-docs .hero-panel {
  padding: 30px;
}

.hero-docs .panel-grid {
  gap: 12px;
}

.page-documents .cards .button {
  justify-content: center;
}

.page-documents .doc-code {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.hero-text {
  margin: 0 0 22px;
  color: rgba(20, 34, 18, 0.75);
  font-size: 17px;
}

.hero.hero-home .hero-text {
  max-width: 520px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(15, 25, 14, 0.75);
}

.hero.hero-home .hero-points {
  max-width: 460px;
}

.hero-panel {
  background: linear-gradient(160deg, rgba(34, 64, 30, 0.9), rgba(29, 42, 24, 0.9));
  color: var(--cream);
  padding: 34px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin-top: -16px;
}

.hero-panel::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(127, 170, 79, 0.2);
  filter: blur(2px);
}

.hero-panel .panel-title {
  font-family: 'Manrope', 'Rubik', sans-serif;
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: var(--cream);
}

.panel-title {
  font-family: 'Manrope', 'Rubik', sans-serif;
  font-size: 24px;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 12px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.panel-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-width: 0;
}

.panel-item span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.panel-item strong {
  font-size: 18px;
  margin-top: 6px;
  display: block;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.panel-note {
  font-size: 13px;
  opacity: 0.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(34, 64, 30, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--green-800);
}

.facts-section .facts-header {
  margin-bottom: 22px;
}

.facts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.4fr);
  gap: 20px;
  align-items: stretch;
}

.facts-left,
.facts-right {
  min-width: 0;
}

.facts-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.fact-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(33, 51, 28, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fact-number {
  min-width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  font-family: 'Manrope', 'Rubik', sans-serif;
  font-size: 20px;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 22px rgba(20, 40, 20, 0.2);
  font-weight: 700;
}

.fact-card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--green-900);
}

.fact-card p {
  margin: 6px 0 0;
  color: rgba(20, 32, 18, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

.facts-panel {
  background: linear-gradient(160deg, rgba(20, 40, 20, 0.12), rgba(255, 255, 255, 0.9));
  border-radius: 26px;
  padding: 10px 14px 14px;
  border: 1px solid rgba(33, 51, 28, 0.1);
  box-shadow: var(--shadow-soft);
  height: 100%;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.facts-panel-header {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}

.facts-panel-header h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  color: var(--green-900);
}

.facts-panel-header p {
  margin: 0;
  color: rgba(20, 32, 18, 0.7);
}

.facts-gallery {
  flex: 1;
  min-height: 0;
}

.facts-gallery .gallery {
  margin-top: 0;
  padding-bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.facts-section .flickity-viewport {
  height: 100% !important;
  min-height: 0;
  border-radius: 30px;
  overflow: hidden;
}

.facts-section .gallery-cell {
  width: 100%;
  margin-right: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #172617;
  box-shadow: none;
  height: 100%;
  min-height: 0;
}

.facts-section .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  padding: 0;
  cursor: zoom-in;
  filter: brightness(0.94) contrast(1.04) saturate(1.06);
}

.facts-section .gallery-cell.focus-face img {
  object-position: center 18%;
}

.facts-section .gallery-cell.focus-waist img {
  object-position: center 78%;
}

.facts-section .gallery-cell.car img {
  object-fit: contain;
  object-position: center center;
  background: #0a0a0a;
}

.facts-section .gallery-cell.soft-frame {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(237, 244, 233, 0.95));
}

.facts-section .gallery-cell.soft-frame img {
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(231, 239, 226, 0.94));
}

.facts-section .gallery-cell::after {
  display: none;
}

.facts-section .gallery-cell figcaption {
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 30, 18, 0.78);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 13px;
}

.facts-section .flickity-prev-next-button {
  background: var(--green-600);
  opacity: 1;
  width: 40px;
  height: 40px;
  box-shadow: 0 14px 30px rgba(15, 30, 15, 0.2);
}

.facts-section .flickity-prev-next-button:hover {
  background: var(--green-500);
}

.facts-section .flickity-prev-next-button .arrow {
  fill: var(--white);
}

.facts-section .flickity-page-dots {
  bottom: 10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: auto;
  white-space: nowrap;
}

.facts-section .flickity-page-dots .dot {
  background: rgba(47, 81, 38, 0.35);
  opacity: 1;
}

.facts-section .flickity-page-dots .dot.is-selected {
  background: var(--green-600);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(244, 248, 241, 0.84);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-dialog {
  position: relative;
  width: min(94vw, 1240px);
  max-height: 92vh;
  border-radius: 24px;
  padding: 18px 72px 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(237, 244, 233, 0.95));
  border: 1px solid rgba(47, 81, 38, 0.14);
  box-shadow: 0 28px 56px rgba(28, 44, 26, 0.2);
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 14px;
}

.lightbox-image {
  width: 100%;
  max-height: calc(92vh - 120px);
  object-fit: contain;
  border-radius: 18px;
  background: rgba(221, 232, 216, 0.55);
}

.lightbox-caption {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: var(--green-900);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 81, 38, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(60, 124, 54, 0.9);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow-prev {
  left: 14px;
}

.lightbox-arrow-next {
  right: 14px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  filter: brightness(1.08);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 51, 28, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 20px;
  color: var(--green-900);
}

.card p {
  margin: 0;
  color: rgba(20, 32, 18, 0.72);
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-600);
  font-weight: 600;
}

.card .tag {
  font-size: 12px;
}

.price-card strong {
  display: block;
  font-size: 22px;
  color: var(--green-800);
}

.price-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(20, 32, 18, 0.72);
  line-height: 1.5;
}

.object-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.object-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(47, 81, 38, 0.2);
  display: grid;
  gap: 6px;
}

.object-icon {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(33, 51, 28, 0.1);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}


.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(47, 81, 38, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  font-weight: 700;
}

.hero-panel .feature-item span {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.hero-panel .feature-item strong,
.hero-panel .feature-item p {
  color: rgba(255, 255, 255, 0.92);
}

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

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(33, 51, 28, 0.1);
  box-shadow: var(--shadow-soft);
}

.case-card h4 {
  margin: 0 0 10px;
  font-size: 20px;
}

.partner-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(20, 32, 18, 0.72);
  line-height: 1.6;
}

.carousel {
  position: relative;
  display: block;
  background: var(--white);
  border-radius: 999px;
  padding: 22px 80px;
  border: 1px solid rgba(33, 51, 28, 0.12);
  box-shadow: 0 18px 40px rgba(12, 20, 10, 0.14);
  overflow: hidden;
  width: 100%;
  margin-left: 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  padding: 2px 6px;
  scroll-padding-inline: 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track.dragging {
  cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 4px 0;
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 160px;
  max-width: 220px;
  scroll-snap-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.carousel-card h4 {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(20, 32, 18, 0.65);
  font-weight: 500;
  max-width: 190px;
}

.carousel-media {
  height: 84px;
  width: 100%;
  border-radius: 18px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.carousel-media img {
  max-width: 170px;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 30, 15, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow.prev {
  left: 14px;
}

.carousel-arrow.next {
  right: 14px;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--green-500);
  box-shadow: 0 18px 36px rgba(15, 30, 15, 0.22);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-arrow:focus-visible {
  outline: 2px solid rgba(62, 106, 52, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .carousel-card {
    flex-basis: calc((100% - 54px) / 4);
    max-width: none;
  }
}

@media (max-width: 980px) {
  .carousel {
    padding: 18px 66px;
  }
  .carousel-track {
    gap: 16px;
  }
  .carousel-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

.carousel-hint {
  margin: 0;
  color: rgba(20, 32, 18, 0.6);
  font-size: 13px;
}

.gallery {
  margin-top: 28px;
}

.gallery-cell {
  width: 72%;
  margin-right: 16px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(12, 24, 12, 0.18);
  background: linear-gradient(140deg, rgba(34, 64, 30, 0.2), rgba(255, 255, 255, 0.95));
}

.gallery-cell img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.12) contrast(1.02) saturate(1.05);
  display: block;
}

.gallery-cell.car img {
  object-position: center;
  filter: brightness(1.25) contrast(1) saturate(1.1);
}

.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 24, 12, 0.25), rgba(12, 24, 12, 0.02) 55%);
}

.gallery-cell figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.flickity-button {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(33, 51, 28, 0.2);
  box-shadow: 0 8px 18px rgba(15, 30, 15, 0.18);
}

.flickity-button:hover {
  background: rgba(255, 255, 255, 1);
}

.flickity-button-icon {
  fill: var(--green-900);
}

.flickity-prev-next-button {
  width: 36px;
  height: 36px;
}

.case-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(20, 32, 18, 0.6);
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-grid.contact-grid-single {
  grid-template-columns: 1fr;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 51, 28, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-card .button {
  margin-top: 14px;
}

.map-placeholder {
  margin-top: 22px;
  height: 240px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(33, 51, 28, 0.3);
  background: linear-gradient(135deg, rgba(127, 170, 79, 0.12), rgba(255, 255, 255, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(20, 32, 18, 0.6);
  text-align: center;
  padding: 24px;
}

.map-embed {
  margin-top: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(33, 51, 28, 0.1);
  box-shadow: var(--shadow-soft);
  background: var(--white);
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(20, 32, 18, 0.75);
}

.contact-item strong {
  color: var(--green-900);
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(33, 51, 28, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
}

small {
  color: rgba(20, 32, 18, 0.6);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(33, 51, 28, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-900);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 12px 0 0;
  color: rgba(20, 32, 18, 0.72);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-800);
  font-weight: 600;
  font-size: 13px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-600);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -110%;
    height: 100vh;
    width: min(72vw, 280px);
    flex-direction: column;
    padding: 80px 18px 24px;
    background: rgba(247, 250, 243, 0.98);
    box-shadow: 0 24px 50px rgba(15, 30, 15, 0.22);
    transition: right 0.3s ease;
    z-index: 60;
    gap: 10px;
    justify-content: flex-start;
  }
  .nav-toggle:checked ~ .nav-links {
    right: 0;
  }
  .nav-links a {
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-900);
  }
  .nav-toggle-label {
    position: relative;
    z-index: 70;
  }
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 10, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 55;
  }
  .nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle-label {
    display: inline-flex;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid.hero-grid-home {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-grid.documents {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .facts-layout {
    grid-template-columns: 1fr;
  }
  .facts-gallery .gallery,
  .facts-section .flickity-viewport,
  .facts-section .gallery-cell {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 90px 0 70px;
  }
  .hero-grid.documents {
    gap: 22px;
  }
  .hero-docs .hero-title-docs {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.1;
  }
  .hero-docs .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-docs .hero-actions .button {
    justify-content: center;
    width: 100%;
  }
  .hero-docs .hero-panel {
    padding: 22px;
  }
  .hero-docs .panel-item strong {
    font-size: 15px;
  }
  .hero-docs .panel-item span {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .hero-docs .panel-item {
    padding: 12px 14px;
  }
  .hero-docs .hero-text {
    font-size: 15px;
  }
  .page-documents .cards .button {
    width: 100%;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .cards,
  .object-list,
  .stats {
    grid-template-columns: 1fr;
  }
  .photo-track {
    gap: 0;
  }
  .gallery-cell {
    width: 86%;
    margin-right: 12px;
  }
  .gallery-cell img {
    height: 230px;
  }
  .facts-cards {
    grid-template-columns: 1fr;
  }
  .fact-card {
    padding: 18px;
  }
  .fact-number {
    min-width: 56px;
    height: 56px;
    font-size: 18px;
  }
  .facts-panel {
    padding: 16px;
  }
  .facts-section .gallery-cell figcaption {
    bottom: 46px;
  }
  .facts-section .gallery-cell img {
    height: 330px;
    object-position: center 20%;
    padding: 0;
  }
  .facts-gallery .gallery,
  .facts-section .flickity-viewport,
  .facts-section .gallery-cell {
    min-height: 330px;
    height: 330px;
  }
  .facts-section .gallery-cell.focus-face img {
    object-position: center 14%;
  }
  .facts-section .gallery-cell.focus-waist img {
    object-position: center 80%;
  }
  .facts-section .flickity-page-dots {
    bottom: 6px;
  }
  .lightbox-dialog {
    width: min(96vw, 900px);
    padding: 14px 14px 20px;
    border-radius: 18px;
  }
  .lightbox-image {
    max-height: calc(90vh - 110px);
    border-radius: 14px;
  }
  .lightbox-caption {
    font-size: 14px;
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
    background: rgba(60, 124, 54, 0.96);
  }
  .lightbox-arrow-prev {
    left: 10px;
  }
  .lightbox-arrow-next {
    right: 10px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
  .carousel {
    padding: 16px 52px;
    border-radius: 36px;
    width: 100%;
    margin-left: 0;
  }
  .carousel-card {
    flex-basis: 100%;
    min-width: 0;
    scroll-snap-align: center;
  }
  .carousel-track {
    gap: 0;
    padding-inline: 0;
  }
  .carousel-media {
    height: 68px;
  }
  .carousel-media img {
    max-width: 210px;
    max-height: 78px;
  }
  .carousel-arrow {
    width: 34px;
    height: 34px;
  }
  .carousel-arrow svg {
    width: 14px;
    height: 14px;
  }
  .carousel-arrow.prev {
    left: 8px;
  }
  .carousel-arrow.next {
    right: 8px;
  }
  .flickity-prev-next-button {
    width: 32px;
    height: 32px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
