/* GazonPoliv — static prototype styles */

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("fonts/Unbounded-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("fonts/Unbounded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-900: #14301d;
  --green-700: #1f4d2b;
  --green-400: #6baf3a;
  --water-500: #2e8bc0;
  --sand-50: #f6f2e8;
  --ink: #15201a;
  --white: #ffffff;
  --radius-card: 16px;
  --radius-btn: 999px;
  --section-pad: clamp(3.5rem, 6vw, 6rem);
  --container: min(1200px, calc(100% - 2rem));
  --top-bar-h: 40px;
  --header-h: 88px;
  --header-h-shrink: 72px;
  --header-offset: calc(var(--top-bar-h) + var(--header-h));
  --header-offset-shrink: calc(var(--top-bar-h) + var(--header-h-shrink));
  --shadow: 0 20px 60px rgba(20, 48, 29, 0.12);
  --transition: 0.3s ease;
  --font-base: 1.125rem;
  --font-lg: 1.25rem;
  --font-xl: 1.375rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: var(--font-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Unbounded", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 1rem;
}

.section-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-400);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-900);
}

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

.btn-outline-dark:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn-water {
  background: var(--water-500);
  color: var(--white);
}

.btn-water:hover {
  background: #2574a8;
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* Top announcement bar */
.top-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  height: var(--top-bar-h);
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.top-bar-social a img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.top-bar-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.top-bar-social a:hover img {
  opacity: 1;
}

.top-bar-text {
  margin: 0;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-phone {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-400);
  white-space: nowrap;
  justify-self: end;
}

.top-bar-phone strong {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.top-bar-phone:hover {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: var(--top-bar-h) 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  height: var(--header-h-shrink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(20, 48, 29, 0.08);
}

.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .header-phone {
  color: var(--ink);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--green-700);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.site-header.is-scrolled .logo img.logo-light {
  display: none;
}

.site-header.is-scrolled .logo img.logo-dark {
  display: block;
}

.logo img.logo-dark {
  display: none;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.main-nav {
  justify-self: center;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.25rem, 0.8vw, 0.75rem);
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.nav-link--toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.15rem;
  font-family: inherit;
  white-space: nowrap;
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-item.is-open .nav-chevron,
.mobile-nav__group.is-open .nav-chevron,
.mobile-nav__toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 1001;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(20, 48, 29, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1002;
}

.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: var(--sand-50);
  color: var(--green-700);
}

.site-header.is-scrolled .nav-link--toggle {
  color: var(--ink);
}

.nav-link--toggle:hover {
  color: var(--green-400);
}

.site-header.is-scrolled .nav-link--toggle:hover {
  color: var(--green-700);
}

.nav-link:hover {
  color: var(--green-400);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  justify-self: end;
}

.header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  white-space: nowrap;
}

.header-cta {
  display: none;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.site-header.is-scrolled .burger span {
  background: var(--ink);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--green-900);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
}

.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 48, 29, 0.88) 0%, rgba(20, 48, 29, 0.55) 50%, rgba(31, 77, 43, 0.4) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-offset) + 2rem) 0 6rem;
}

.hero-slide__content .container {
  max-width: 780px;
}

.hero-slide h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-slide h1 em {
  font-style: normal;
  color: var(--green-400);
}

.hero-slide__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-controls {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--green-400);
  border-color: var(--green-400);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-dot.is-active {
  background: var(--green-400);
  transform: scale(1.2);
}

/* About */
.about {
  padding: var(--section-pad) 0;
  background: var(--sand-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-counter {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.about-counter__num {
  font-family: "Unbounded", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.about-counter__plus {
  font-size: 2rem;
  color: var(--green-400);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-counter__label {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 0.5rem;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Ticker */
.ticker {
  background: var(--green-900);
  padding: 1.25rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-family: "Unbounded", serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--white);
  white-space: nowrap;
}

.ticker-item::after {
  content: "+";
  color: var(--green-400);
  font-size: 1.25rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
}

/* Services */
.services {
  padding: var(--section-pad) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(20, 48, 29, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.5rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--water-500);
  margin-bottom: 0.5rem;
}

.service-tag.is-grass {
  color: var(--green-700);
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(21, 32, 26, 0.75);
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card__link:hover {
  color: var(--green-400);
}

/* Why us */
.why {
  padding: var(--section-pad) 0;
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--green-700);
  opacity: 0.3;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.why .section-label {
  color: var(--green-400);
}

.why h2 {
  color: var(--white);
}

.why-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
}

.stat-card__num {
  font-family: "Unbounded", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-400);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

/* Process */
.process {
  padding: var(--section-pad) 0;
  background: var(--sand-50);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.process-item--img-left {
  grid-template-areas: "image content";
}

.process-item--img-left .process-item__img {
  grid-area: image;
}

.process-item--img-left .process-item__content {
  grid-area: content;
}

.process-item--img-right {
  grid-template-areas: "content image";
}

.process-item--img-right .process-item__img {
  grid-area: image;
}

.process-item--img-right .process-item__content {
  grid-area: content;
}

.process-item__content {
  padding: 0.5rem 0;
}

.process-num {
  font-family: "Unbounded", serif;
  font-size: 0.875rem;
  color: var(--green-400);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-item__img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-item__img img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Pricing */
.pricing {
  padding: var(--section-pad) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(20, 48, 29, 0.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.pricing-card.is-popular {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
  transform: scale(1.03);
}

.pricing-card.is-popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-400);
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-btn);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: "Unbounded", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green-700);
  margin: 1rem 0 0.25rem;
}

.pricing-card.is-popular .pricing-price {
  color: var(--green-400);
}

.pricing-unit {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
  font-size: 0.875rem;
  color: rgba(21, 32, 26, 0.65);
}

.pricing-extra {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(21, 32, 26, 0.55);
}

/* Works */
.works {
  padding: var(--section-pad) 0;
  background: var(--sand-50);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.work-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(20, 48, 29, 0.06);
  transition: transform var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.work-card__body {
  padding: 1.25rem;
}

.work-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--water-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Blog */
.blog {
  padding: var(--section-pad) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(20, 48, 29, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8rem;
  color: rgba(21, 32, 26, 0.5);
  margin-bottom: 0.5rem;
}

.blog-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0 0;
}

/* FAQ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--sand-50);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(20, 48, 29, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-700);
  transition: var(--transition);
}

.faq-item.is-open .faq-icon {
  background: var(--green-700);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: rgba(21, 32, 26, 0.75);
  font-size: 0.95rem;
}

/* CTA Form */
.cta-form-section {
  padding: var(--section-pad) 0;
  background: var(--green-700);
  color: var(--white);
}

.cta-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-form-wrap h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-form-wrap > p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  text-align: left;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255, 255, 255, 0.15);
}

.form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.form-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--green-400);
}

.form-consent a {
  color: var(--green-400);
  text-decoration: underline;
}

.form-submit-wrap {
  display: flex;
  align-items: flex-end;
}

.form-message {
  grid-column: 1 / -1;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}

.form-message.is-success {
  display: block;
  background: rgba(107, 175, 58, 0.2);
  border: 1px solid var(--green-400);
}

.form-message.is-error {
  display: block;
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid #ff6464;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a:hover {
  color: var(--green-400);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-social a:hover {
  background: var(--green-400);
  border-color: var(--green-400);
  transform: translateY(-2px);
}

.footer-social a:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Floating mobile contacts */
.float-contacts {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 900;
}

.float-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-400);
  color: var(--green-900);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(20, 48, 29, 0.3);
}

.float-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.float-contacts.is-open .float-menu {
  display: flex;
}

.float-menu a {
  padding: 0.75rem 1.25rem;
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* Trust badges */
.trust-badges {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(20, 48, 29, 0.06);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-card);
  background: var(--sand-50);
  border: 1px solid rgba(20, 48, 29, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 48, 29, 0.08);
}

.trust-badge img {
  width: 48px;
  height: 48px;
}

.trust-badge strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-900);
}

.trust-badge span {
  font-size: 0.85rem;
  color: rgba(21, 32, 26, 0.65);
  line-height: 1.4;
}

/* Footer payments */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payments__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.footer-payments__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-payments__icons img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: transform var(--transition);
}

.footer-payments__icons img:hover {
  transform: translateY(-2px);
}

/* Header compact nav at medium widths */
@media (max-width: 1280px) {
  .nav-link,
  .nav-link--toggle {
    font-size: 0.82rem;
  }

  .nav-list {
    gap: 0.2rem;
  }

  .header-phone {
    font-size: 0.85rem;
  }

  .header-cta {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 1100px) {
  .main-nav,
  .header-phone,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .logo {
    justify-self: start;
  }

  .header-actions {
    justify-self: end;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .top-bar-text {
    display: none;
  }

  .top-bar-inner {
    grid-template-columns: auto 1fr;
  }

  .top-bar-phone {
    justify-self: end;
  }

  .header-cta-mobile {
    display: none;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-badge {
    padding: 1rem 0.75rem;
  }

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

  .process-item,
  .process-item--img-left,
  .process-item--img-right {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
  }

  .process-item__img {
    grid-area: image;
  }

  .process-item__content {
    grid-area: content;
  }

  .services-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
  }

  .pricing-card.is-popular {
    order: -1;
    transform: none;
  }

  .pricing-card.is-popular:hover {
    transform: translateY(-4px);
  }

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

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

  .quick-form {
    grid-template-columns: 1fr;
  }

  .form-submit-wrap {
    align-items: stretch;
  }

  .form-submit-wrap .btn {
    width: 100%;
  }

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

  .float-contacts {
    display: block;
  }
}

@media (min-width: 1101px) {
  .header-cta {
    display: inline-flex;
  }
}

/* ===== Enhanced typography for readability ===== */
@media (min-width: 1101px) {
  .nav-link { font-size: 0.88rem; }
  .header-phone { font-size: 0.92rem; }
  .header-cta {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
  }
}
.btn { font-size: 1.05rem; padding: 1.05rem 1.85rem; }
.header-cta.btn { font-size: 0.82rem; padding: 0.5rem 0.95rem; }
.mobile-nav__cta.btn { font-size: 0.95rem; padding: 0.85rem 1.25rem; }
.section-head p, .hero-slide__text { font-size: var(--font-lg); }
.service-card p, .faq-answer-inner, .pricing-note { font-size: 1.05rem; }
.form-field input { font-size: 1.05rem; padding: 1rem 1.1rem; }

/* ===== Scroll reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ===== Improved mobile menu ===== */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--green-900);
  padding: 1.25rem 1.5rem 6rem;
  z-index: 1002;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mobile-nav__close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav__group {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.mobile-nav__toggle .nav-chevron {
  margin-left: 0.5rem;
}

.mobile-nav__sub {
  display: none;
  padding-bottom: 0.5rem;
}

.mobile-nav__group.is-open .mobile-nav__sub {
  display: block;
}

.mobile-nav__sub .nav-link {
  padding: 0.65rem 0 0.65rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: none;
  opacity: 0.9;
}

.mobile-nav__sub .nav-link:hover {
  color: var(--green-400);
}

.mobile-nav .nav-link {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav .nav-link--sub {
  font-size: 1.05rem;
  opacity: 0.85;
  padding-left: 1rem;
}

.mobile-nav .btn,
.mobile-nav__cta {
  width: 100%;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
}

.mobile-nav__contacts {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav__social {
  display: flex;
  gap: 0.65rem;
}

.mobile-nav__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-nav__social a img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.mobile-nav__social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--green-400);
}

.mobile-nav__phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-400);
}

.mobile-nav__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

/* ===== Owner section ===== */
.owner {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.owner-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}

.owner-photo {
  position: relative;
}

.owner-photo img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.owner-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--green-400);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
}

.owner-content blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--green-400);
  background: var(--sand-50);
  font-size: var(--font-lg);
  font-style: italic;
}

.owner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.owner-stat strong {
  display: block;
  font-family: "Unbounded", serif;
  font-size: 1.75rem;
  color: var(--green-700);
}

.owner-stat span {
  font-size: 1rem;
  opacity: 0.75;
}

/* ===== Partners / trust ===== */
.partners {
  padding: 2.5rem 0;
  background: var(--sand-50);
  border-block: 1px solid rgba(20,48,29,0.06);
}

.partners-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.partners-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(21,32,26,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.partners-logos img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity var(--transition);
}

.partners-logos img:hover {
  opacity: 1;
  filter: none;
}

/* ===== Reviews ===== */
.reviews {
  padding: var(--section-pad) 0;
}

.rating-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(20,48,29,0.1);
  border-radius: var(--radius-card);
  font-weight: 600;
  font-size: 1.05rem;
}

.rating-badge__stars {
  color: #f5a623;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(20,48,29,0.08);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 1.1rem;
}

.review-card__source {
  font-size: 0.9rem;
  color: var(--water-500);
}

.review-card p {
  font-size: 1.05rem;
  margin: 0;
  color: rgba(21,32,26,0.85);
}

/* ===== Map section ===== */
.map-section {
  padding: var(--section-pad) 0;
  background: var(--sand-50);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.map-info h3 {
  margin-bottom: 1rem;
}

.map-info ul {
  margin: 1rem 0 1.5rem;
}

.map-info li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.map-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
}

.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* ===== Work card enhanced ===== */
.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(21,32,26,0.65);
}

.work-card__meta span {
  background: var(--sand-50);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
}

/* ===== Legal / inner pages ===== */
.page-hero {
  padding: calc(var(--header-offset) + 3rem) 0 3rem;
  background: var(--green-900);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: var(--font-lg);
  opacity: 0.85;
  max-width: 720px;
}

.legal-content,
.service-content {
  padding: var(--section-pad) 0;
}

.legal-content .container,
.service-content .container {
  max-width: 860px;
}

.legal-content h2,
.service-content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  font-size: 1.05rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-content li { margin-bottom: 0.5rem; }

/* ===== Price table ===== */
.price-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-card);
  border: 1px solid rgba(20,48,29,0.1);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(20,48,29,0.08);
}

.price-table th {
  background: var(--green-900);
  color: var(--white);
  font-weight: 600;
}

.price-table tr:nth-child(even) td {
  background: var(--sand-50);
}

/* ===== Service steps ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(20,48,29,0.08);
  border-radius: var(--radius-card);
  transition: transform var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--green-400);
  color: var(--green-900);
  font-family: "Unbounded", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.breadcrumb a:hover { color: var(--green-400); }

@media (max-width: 1024px) {
  .owner-grid { grid-template-columns: 1fr; text-align: center; }
  .owner-photo { max-width: 280px; margin: 0 auto; }
  .owner-stats { justify-content: center; }
  .map-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .steps-row { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
}

/* Final QA pass — very small screens */
@media (max-width: 450px) {
  :root {
    --top-bar-h: 36px;
    --header-h: 64px;
    --header-h-shrink: 56px;
  }

  .top-bar-social a {
    width: 24px;
    height: 24px;
  }

  .top-bar-phone {
    font-size: 0.75rem;
  }

  .logo img {
    height: 28px;
  }

  .burger span {
    width: 20px;
  }

  .hero-slide__content {
    padding: calc(var(--header-offset) + 1rem) 0 5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-controls {
    bottom: 1.5rem;
    gap: 1rem;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

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

  .trust-badge strong {
    font-size: 0.9rem;
  }

  .partners-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .partners-logos img {
    height: 32px;
  }

  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-payments__icons img {
    height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-contacts {
    bottom: 1rem;
    right: 0.75rem;
  }

  .float-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .mobile-nav .nav-link {
    font-size: 1.05rem;
    padding: 0.9rem 0;
  }

  .rating-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .rating-badge {
    justify-content: center;
  }

  .btn {
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
  }
}
