:root {
  --green-900: #0a2e1f;
  --green-800: #0f3d2a;
  --green-700: #155a3e;
  --green-600: #1a7a52;
  --green-500: #22a06b;
  --green-400: #3dd68c;
  --green-100: #e8f8f0;
  --slate-950: #0b0f14;
  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-600: #4b5563;
  --slate-400: #9ca3af;
  --slate-200: #e5e7eb;
  --white: #ffffff;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --blue-accent: #38bdf8;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(34, 160, 107, 0.15);
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --header-h: 76px;
  --section-py: clamp(4.5rem, 8vw, 6.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ─── Header ─── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.3s;
}

.header.scrolled { box-shadow: var(--shadow-sm); }
.header.hide { transform: translateY(-100%); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: -0.02em;
  box-shadow: 0 4px 20px rgba(26, 122, 82, 0.4);
  transition: transform 0.3s var(--ease-out);
}

.logo:hover .logo__mark { transform: rotate(-4deg) scale(1.05); }

.logo__text { line-height: 1.15; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-900);
}

.logo__sub {
  font-size: 0.67rem;
  color: var(--slate-600);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__links a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-800);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--green-700);
  background: rgba(34, 160, 107, 0.08);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 60%;
  left: 20%;
}

.lang-switch {
  display: flex;
  background: var(--slate-200);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-switch button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: all 0.25s var(--ease-out);
}

.lang-switch button.active {
  background: var(--white);
  color: var(--green-800);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav__toggle {
  display: none;
  border: none;
  background: var(--slate-200);
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
  transition: 0.3s;
}

.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.65rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--slate-950);
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.5s var(--ease-out);
}

.btn--primary:hover::after { left: 120%; }

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 122, 82, 0.3);
}

.btn--green:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  background: var(--green-900);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 15%, rgba(34, 160, 107, 0.4), transparent),
    radial-gradient(ellipse 50% 50% at 5% 85%, rgba(245, 158, 11, 0.14), transparent),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(56, 189, 248, 0.08), transparent),
    linear-gradient(155deg, var(--green-900) 0%, var(--green-800) 45%, #0a1a12 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbDrift 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(34, 160, 107, 0.25);
  top: -10%;
  right: 10%;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.15);
  bottom: 10%;
  left: -5%;
  animation-delay: -6s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - var(--header-h) - 7rem);
}

.hero__content { max-width: 600px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--green-400);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeDown 0.8s var(--ease-out) both;
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 12px var(--green-400);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.35rem;
  animation: fadeDown 0.8s 0.1s var(--ease-out) both;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--green-400) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.25rem;
  max-width: 520px;
  animation: fadeDown 0.8s 0.2s var(--ease-out) both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeDown 0.8s 0.3s var(--ease-out) both;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeDown 0.8s 0.4s var(--ease-out) both;
}

.hero__stat {
  text-align: left;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero__stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.hero__visual {
  position: relative;
  animation: fadeDown 1s 0.3s var(--ease-out) both;
}

.hero__card-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.hero__float {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
  animation: floatSoft 5s ease-in-out infinite;
}

.hero__float:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
  z-index: 2;
  animation-play-state: paused;
}

.hero__float--1 { animation-delay: 0s; }
.hero__float--2 { animation-delay: -1.2s; }
.hero__float--3 { animation-delay: -2.4s; }
.hero__float--4 { animation-delay: -3.6s; }

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero__float-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  margin-bottom: 0.8rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.hero__float-icon--green { background: rgba(34, 160, 107, 0.28); }
.hero__float-icon--amber { background: rgba(245, 158, 11, 0.22); }
.hero__float-icon--blue { background: rgba(56, 189, 248, 0.2); }

.hero__float h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hero__float p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}

/* ─── Sections ─── */
section {
  padding-block: var(--section-py);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), transparent);
  border-radius: 2px;
}

.section-head--center .section-label::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--slate-950);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--slate-600);
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head--center .section-desc { margin-inline: auto; }

/* ─── Service cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.08) 100%);
}

.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover .service-card__bg { transform: scale(1.08); }

.service-card--equip .service-card__bg {
  background-image: url('../images/garden.jpg');
}

.service-card--service .service-card__bg {
  background-image: url('../images/service.jpg');
}

.service-card--premises .service-card__bg {
  background-image: url('../images/warehouse.jpg');
}

.service-card__content {
  position: relative;
  z-index: 2;
}

.service-card__tag {
  display: inline-block;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.service-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  margin-bottom: 1.35rem;
  line-height: 1.55;
}

.service-card .btn { align-self: flex-start; }

/* ─── Equipment categories ─── */
.categories {
  background: linear-gradient(180deg, var(--green-100) 0%, #f4faf7 100%);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(34, 160, 107, 0.2);
}

.cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1.15rem;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--green-100), rgba(34, 160, 107, 0.18));
  transition: transform 0.3s var(--ease-out);
}

.cat-card:hover .cat-card__icon { transform: scale(1.1) rotate(-3deg); }

.cat-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
  color: var(--slate-950);
}

.cat-card p {
  font-size: 0.86rem;
  color: var(--slate-600);
  line-height: 1.55;
  flex: 1;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
  justify-content: center;
  align-items: center;
}

.badge {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--white);
  color: var(--green-800);
  border: 1px solid rgba(26, 122, 82, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ─── Service support ─── */
.service-support {
  background: var(--slate-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(34, 160, 107, 0.12), transparent);
  pointer-events: none;
}

.service-support .section-title { color: var(--white); }
.service-support .section-desc { color: rgba(255, 255, 255, 0.6); }
.service-support .section-label { color: var(--green-400); }
.service-support .section-label::before {
  background: linear-gradient(90deg, var(--green-400), transparent);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
}

.support-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(61, 214, 140, 0.25);
}

.support-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(34, 160, 107, 0.3), rgba(34, 160, 107, 0.1));
}

.support-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.support-item p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.support-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.support-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.support-visual:hover img { transform: scale(1.05); }

.support-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 46, 31, 0.5), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
}

.support-visual__badge {
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── Premises ─── */
.prem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.prem-card {
  background: var(--slate-950);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.prem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.prem-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(34, 160, 107, 0.35), transparent 70%);
  pointer-events: none;
}

.prem-card--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
}

.prem-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.prem-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.prem-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  flex: 1;
}

.prem-card--highlight .prem-card__icon { margin-bottom: 0.75rem; }
.prem-card--highlight h4 { font-size: 1.45rem; }
.prem-card--highlight p { color: rgba(255, 255, 255, 0.82); max-width: 560px; }

/* ─── Steps ─── */
.steps { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-200, #b8e6cf), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  z-index: 1;
}

.step:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 1.35rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 122, 82, 0.35);
  transition: transform 0.3s var(--ease-out);
}

.step:hover .step__num { transform: scale(1.1); }

.step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.step p {
  font-size: 0.86rem;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ─── Why ─── */
.why {
  background: linear-gradient(180deg, var(--green-100) 0%, var(--white) 60%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  transition: transform 0.3s var(--ease-out);
}

.why-card:hover .why-card__icon { transform: rotate(-5deg) scale(1.05); }

.why-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ─── Contact ─── */
.contact {
  background: var(--slate-950);
  color: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 100%, rgba(34, 160, 107, 0.1), transparent);
  pointer-events: none;
}

.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255, 255, 255, 0.58); }
.contact .section-label { color: var(--green-400); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1rem;
}

.contact-list a {
  color: var(--green-400);
  transition: color 0.2s;
}

.contact-list a:hover { color: var(--green-400); text-decoration: underline; }

.contact-list__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}

.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(61, 214, 140, 0.12);
}

.form-group select option { background: var(--slate-900); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

.form-check input { margin-top: 0.2rem; accent-color: var(--green-500); flex-shrink: 0; }
.form-check a { color: var(--green-400); text-decoration: underline; }

.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success.show { display: block; animation: fadeDown 0.5s var(--ease-out); }

.form-success__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 1.35rem;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  background: rgba(34, 160, 107, 0.2);
  color: var(--green-400);
  animation: scaleIn 0.5s var(--ease-out);
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.form-success p { color: rgba(255, 255, 255, 0.58); }

/* ─── FAQ ─── */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  color: var(--slate-900);
  gap: 1.25rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--green-700); }

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-600);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-a-inner {
  padding: 0 0 1.35rem;
  color: var(--slate-600);
  font-size: 0.93rem;
  line-height: 1.65;
}

.faq-item.open .faq-a { max-height: 220px; }

/* ─── Footer ─── */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 0 1.75rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer .logo__name { color: var(--white); }
.footer .logo__sub { color: rgba(255, 255, 255, 0.42); }

.footer h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a { transition: color 0.2s; }
.footer ul a:hover { color: var(--green-400); }

.footer-meaning {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
}

.legal-block {
  margin-top: 0;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom {
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── Cookie ─── */
.cookie {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(580px, 92vw);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.65rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  animation: slideUp 0.6s var(--ease-out);
}

.cookie.hidden { display: none; }

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie p {
  flex: 1;
  font-size: 0.84rem;
  color: var(--slate-600);
  min-width: 200px;
  line-height: 1.5;
}

.cookie .btn { padding: 0.62rem 1.25rem; font-size: 0.82rem; }

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin-inline: auto; width: 100%; }
  .support-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav > .btn--green { display: none; }

  .nav__toggle { display: flex; }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--slate-200);
    align-items: stretch;
  }

  .nav.open .nav__links a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav.open .nav__mobile-cta {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + 280px);
    left: 1.5rem;
    right: 1.5rem;
  }

  .nav__mobile-cta { display: none; }

  .cat-grid,
  .prem-grid,
  .steps-grid,
  .why-grid,
  .contact-wrap,
  .footer-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .prem-card--highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 1rem; }
  section { padding-block: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ─── About ─── */
.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 540px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.trust-badge {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid rgba(26, 122, 82, 0.12);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-100) 0%, var(--white) 100%);
  border: 1px solid rgba(26, 122, 82, 0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.about-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.about-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ─── Map ─── */
.map-wrap {
  margin-top: 2rem;
}

.map-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.map-iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--green-400);
  transition: color 0.2s;
}

.map-link:hover {
  color: var(--green-400);
  text-decoration: underline;
}

/* ─── Steps progress ─── */
.steps-grid--animated {
  position: relative;
}

.steps-progress {
  position: absolute;
  top: 48px;
  left: 12%;
  height: 3px;
  width: 0;
  max-width: 76%;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  border-radius: 4px;
  z-index: 2;
  transition: width 0.6s var(--ease-out);
  box-shadow: 0 0 12px rgba(34, 160, 107, 0.4);
}

/* ─── Form extras ─── */
.form-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  font-size: 0.82rem;
  text-align: center;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not([value=""]),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 4px 20px rgba(26, 122, 82, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 122, 82, 0.5);
}

/* ─── Sticky mobile CTA ─── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .about-layout { grid-template-columns: 1fr; }
  .steps-progress { display: none; }
  .scroll-top { bottom: 5rem; right: 1rem; }
}

@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}

/* ─── Promo banner ─── */
.promo-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner.hidden { display: none; }

.promo-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  padding-right: 2.5rem;
}

.promo-banner__tag {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.9);
  color: var(--slate-950);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.promo-banner__inner p {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.5;
  min-width: 200px;
  color: rgba(255, 255, 255, 0.92);
}

.promo-banner__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s;
}

.promo-banner__close:hover { background: rgba(255, 255, 255, 0.22); }

/* ─── Why rent ─── */
.why-rent {
  background: var(--slate-950);
  color: var(--white);
}

.why-rent .section-title { color: var(--white); }
.why-rent .section-desc { color: rgba(255, 255, 255, 0.58); }
.why-rent .section-label { color: var(--green-400); }

.rent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rent-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
}

.rent-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 214, 140, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.rent-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-400), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.rent-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.rent-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

/* ─── Gallery ─── */
.gallery {
  background: linear-gradient(180deg, var(--green-100) 0%, var(--white) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--slate-200);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__label {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.lightbox[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox__img {
  max-width: min(900px, 92vw);
  max-height: 70vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__cap {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  text-align: center;
}

/* ─── Reviews ─── */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--green-100);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: var(--amber);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.93rem;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-card footer {
  font-size: 0.82rem;
  color: var(--slate-600);
}

.review-card footer strong { color: var(--green-800); }

/* ─── CTA strip ─── */
.cta-strip {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(245, 158, 11, 0.12), transparent 50%);
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.cta-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 520px;
}

/* ─── Footer 4 col ─── */
.footer-grid--4 {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .rent-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .promo-banner__inner { flex-direction: column; align-items: flex-start; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
