/* Redcord — premium landing (red palette) */

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

:root {
  --green-dark: #1A0E0E;
  --green-mid: #3D1515;
  --green-olive: #9B3D35;
  --green-soft: #E07058;
  --accent: #FF5C00;
  --accent-hover: #E85100;
  --accent-glow: rgba(255, 92, 0, 0.42);
  --cream: #FFF9F7;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #5C5C5C;
  --sand: #FFEAE3;
  --card-gray: #F5E8E8;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-header: 30px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-h: 80px;
  --shadow-soft: 0 12px 40px rgba(26, 14, 14, 0.12);
  --shadow-glow: 0 8px 32px var(--accent-glow), 0 4px 16px rgba(26, 14, 14, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);
  --font: 'Wix Madefor Display', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga' 1, 'calt' 1;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Glass */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn--accent {
  background: linear-gradient(180deg, #FF7030 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn--accent:hover {
  background: linear-gradient(180deg, #FF7030 0%, var(--accent-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 92, 0, 0.55), 0 4px 20px rgba(26, 14, 14, 0.1);
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(26, 14, 14, 0.15);
}

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

.btn--sm { padding: 11px 22px; font-size: 13px; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  margin-top: 12px;
  padding: 12px 24px;
  border-radius: var(--radius-header);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header--solid .header__inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(26, 14, 14, 0.08);
  box-shadow: var(--shadow-soft);
}

.header--solid .logo img { filter: none; }
.header--solid .nav a { color: var(--text-muted); }
.header--solid .nav a:hover { color: var(--accent); }
.header--solid .header__tel { color: var(--green-dark); }
.header--solid .burger span { background: var(--green-dark); }

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

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.nav a:hover { color: var(--white); }

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

.header__tel {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero__slide.is-active img {
  animation: heroKenBurns 6s linear forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(26, 14, 14, 0.75) 0%,
    rgba(26, 14, 14, 0.35) 50%,
    rgba(26, 14, 14, 0.55) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-end;
  width: 100%;
  padding-top: calc(var(--header-h) + 40px);
}

.hero__text h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero__text h1.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero__lead {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 28px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero__lead.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.hero__text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__glass {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  max-width: 340px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero__glass.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.hero__glass-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__glass strong {
  display: block;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 4px;
}

.hero__glass p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, width 0.25s;
}

.hero__dot.is-active {
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 92, 0, 0.55);
}

/* Mission */
.mission {
  background: var(--green-olive);
  padding: 100px 0 0;
  color: var(--white);
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
}

.mission__grid h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mission__right p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* Circles gallery */
.circles {
  position: relative;
  padding: 40px 0 80px;
  overflow: hidden;
}

.circles__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.circles__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.circles__row img {
  width: clamp(120px, 18vw, 200px);
  height: clamp(120px, 18vw, 200px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.25);
  margin-left: -24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.circles__row img:first-child { margin-left: 0; }

.circles__row img:hover {
  transform: scale(1.08);
  z-index: 2;
  position: relative;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 48px;
}

.features__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px 44px;
  border: 1.5px solid rgba(255, 92, 0, 0.35);
  border-radius: var(--radius);
  background: var(--white);
}

.features__intro h2 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--green-dark);
  letter-spacing: -0.03em;
}

.features__lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
}

.features__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features__stats li {
  font-size: 14px;
  color: var(--text-muted);
}

.features__stats strong {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.features__hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.features__hero-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid rgba(255, 92, 0, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  padding: 36px 32px 32px;
  border-right: 1.5px solid rgba(255, 92, 0, 0.2);
}

.feature:last-child {
  border-right: none;
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, #FFF0E8 0%, #FFE0CC 100%);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(255, 92, 0, 0.12);
}

.feature__icon svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #FF7030 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature__arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(255, 92, 0, 0.6);
}

/* Services offer cards */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.services__tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid rgba(26, 14, 14, 0.18);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.services__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 56px;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 720px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  border-radius: 30px;
  padding: 32px 28px 0;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.offer-card--accent {
  background: #FFE8DC;
}

.offer-card--outline {
  background: var(--white);
  border-color: rgba(26, 14, 14, 0.1);
}

.offer-card--outline:hover {
  box-shadow: 0 12px 40px rgba(26, 14, 14, 0.08);
}

.offer-card__num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.65;
  margin-bottom: 24px;
}

.offer-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.offer-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--green-dark);
  opacity: 0.7;
  transition: transform 0.25s, opacity 0.25s;
}

.offer-card__arrow svg {
  width: 20px;
  height: 20px;
}

.offer-card:hover .offer-card__arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

.offer-card__img {
  margin-top: auto;
  margin-left: -28px;
  margin-right: -28px;
  width: calc(100% + 56px);
}

.offer-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.services__footer {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.services__footer a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.services__footer a:hover {
  color: var(--accent);
}

/* Stats banner */
.stats-banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: stretch;
}

.stats-banner__bg {
  position: absolute;
  inset: 0;
}

.stats-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 14, 14, 0.45) 0%,
    rgba(26, 14, 14, 0.65) 45%,
    rgba(26, 14, 14, 0.88) 100%
  );
}

.stats-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  padding: 80px 28px 72px;
}

.stats-banner__stats {
  position: relative;
  flex: 1;
  min-height: 280px;
}

.stats-banner__item {
  position: absolute;
  text-align: left;
  max-width: 240px;
}

.stats-banner__item--1 {
  top: 0;
  left: 0;
}

.stats-banner__item--2 {
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
}

.stats-banner__item--3 {
  top: 62%;
  right: 8%;
}

.stats-banner__num {
  display: block;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  color: #FFE4A8;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.stats-banner__num sup {
  font-size: 0.35em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: 0;
}

.stats-banner__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 200px;
}

.stats-banner__bottom {
  margin-top: 48px;
}

.stats-banner__tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.stats-banner__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 640px;
}

/* Accordion */
.accordion-section {
  background: var(--green-dark);
  color: var(--white);
  padding: 100px 0;
}

.accordion-section.is-hovering,
.accordion-section.is-hovering * {
  cursor: none !important;
}

.accordion {
  position: relative;
  margin-bottom: 32px;
}

.accordion__items {
  width: 100%;
}

.accordion__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  transition: color 0.25s;
  position: relative;
  z-index: 1;
  user-select: none;
}

.accordion__item:hover {
  color: var(--accent);
}

.accordion__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-left: 24px;
}

.accordion__explore {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF7030 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, box-shadow 0.2s;
}

.accordion__explore.is-visible {
  opacity: 1;
  visibility: visible;
}

.accordion-section__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.7;
  min-height: 1.7em;
  opacity: 0;
  transition: opacity 0.25s;
}

.accordion-section__desc.is-visible {
  opacity: 1;
}

/* Testimonial */
.testimonial {
  padding: 100px 0;
  background: var(--cream);
}

.testimonial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonial__nav {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.testimonial__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(26, 14, 14, 0.12);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.testimonial__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.testimonial blockquote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--green-dark);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

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

.testimonial__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
}

.testimonial__author strong {
  display: block;
  font-size: 15px;
  color: var(--green-dark);
}

.testimonial__author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

/* News / Partners */
.news {
  padding: 100px 0;
  background: var(--white);
}

.news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.news__head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.15;
}

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

.news-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 14, 14, 0.12);
}

.news-card > img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 24px;
  background: var(--white);
}

.news-card__tag {
  display: inline-block;
  margin: 16px 20px 8px;
  padding: 6px 14px;
  background: linear-gradient(180deg, #FF7030 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.news-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  padding: 0 20px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.news-card time {
  display: block;
  padding: 0 20px 24px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Forms */
.forms {
  padding: 80px 0 100px;
  background: var(--cream);
}

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

.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s;
}

.form-panel:hover {
  box-shadow: 0 16px 48px rgba(26, 14, 14, 0.1), 0 0 32px rgba(255, 92, 0, 0.08);
}

.form-panel h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.form-panel > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel input {
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14px;
  border: 1px solid rgba(26, 14, 14, 0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-panel input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.15);
}

/* Footer */
.footer {
  position: relative;
  padding: 80px 0 40px;
}

.footer__bg {
  position: absolute;
  inset: 0;
}

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

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 14, 0.88);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__glass {
  border-radius: var(--radius);
  padding: 48px 40px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.footer__brand {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(255, 92, 0, 0.3);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__contacts a,
.footer__contacts p {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__contacts a:hover { color: var(--accent); }

.footer__links h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal--open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 14, 0.6);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 44px 40px;
  max-width: 400px;
  width: calc(100% - 48px);
  text-align: center;
  color: var(--text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
}

.modal__box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.modal__box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__content,
  .mission__grid,
  .features__top,
  .features__grid,
  .services__grid,
  .testimonial__grid,
  .news__grid,
  .forms__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__content { align-items: start; }
  .hero__glass { max-width: 100%; }
  .hero__lead { max-width: none; }
  .hero__dots { bottom: 24px; }

  .feature {
    border-right: none;
    border-bottom: 1.5px solid rgba(255, 92, 0, 0.2);
  }

  .feature:last-child { border-bottom: none; }

  .features__intro { padding: 32px 28px; }
}

@media (max-width: 768px) {
  .stats-banner,
  .stats-banner__content {
    min-height: auto;
  }

  .stats-banner__content {
    padding: 64px 28px 56px;
  }

  .stats-banner__stats {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 36px;
    min-height: auto;
    margin-bottom: 48px;
  }

  .stats-banner__item {
    position: static;
    max-width: none;
    transform: none;
  }

  .stats-banner__bottom {
    margin-top: 0;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a { color: var(--text); }
  .burger { display: flex; }
  .header__tel { display: none; }

  .circles__row img { margin-left: -16px; }
  .news__head { flex-direction: column; align-items: flex-start; }
}
