/* ============================================
   СТІЛЛАР — Design System & Styles
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --red: #C62828;
  --red-hover: #A51E1E;
  --red-light: #E53935;
  --dark: #1A1A1A;
  --dark-alt: #2A2A2A;
  --dark-overlay: rgba(26, 26, 26, 0.85);
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #666666;
  --gray-bg: #F5F5F5;
  --border: #E0E0E0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(198, 40, 40, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--dark-alt);
  border-color: var(--dark-alt);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--white-outline:hover,
.btn--white-outline:focus-visible {
  background: var(--white);
  color: var(--dark);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 50px;
}

/* Logo */
.header__logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.header__logo-img {
  max-height: 46px;
  width: auto;
  display: block;
  margin-top: 24px; /* Vertically align with menu text */
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.header__nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color var(--transition);
  z-index: 2;
}

.header--scrolled .header__nav-link {
  color: #333;
}

.header__nav-link:hover,
.header__nav-link--active,
.header--scrolled .header__nav-link:hover,
.header--scrolled .header__nav-link--active {
  color: var(--red);
}

/* The red line under the active link */
.header__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
}

/* Header right */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-toggle {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3px;
  width: 96px;
  transition: background var(--transition);
}

.header--scrolled .lang-toggle {
  background: #f4f4f4;
}

.lang-toggle__slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--red);
  border-radius: 16px;
  transition: transform var(--transition);
  z-index: 1;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.4);
}

.lang-toggle__item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  transition: color var(--transition);
}

.header--scrolled .lang-toggle__item {
  color: #999;
}

.lang-toggle__item--active,
.header--scrolled .lang-toggle__item--active {
  color: var(--white);
}

.lang-toggle__item:hover:not(.lang-toggle__item--active) {
  color: var(--white);
}

.header--scrolled .lang-toggle__item:hover:not(.lang-toggle__item--active) {
  color: var(--dark);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header--scrolled .header__hamburger span {
  background: var(--dark);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--red);
}

.mobile-menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

.mobile-menu__overlay.active {
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(26, 26, 26, 0.75) 50%,
    rgba(26, 26, 26, 0.3) 100%
  );
}

.hero__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero__top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding-top: calc(var(--header-height) + 30px);
}

.hero__phone {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

.hero__callback-btn {
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: calc(var(--header-height) + 160px) 0 80px;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero__subtitle span {
  margin: 0 6px;
  opacity: 0.5;
}

.hero__badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.hero__badge-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
}

.hero__badge + .hero__badge {
  padding-left: 32px;
  position: relative;
}

.hero__badge + .hero__badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.hero__badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 70px 0;
}

.section--gray {
  background: var(--gray-bg);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 16px;
}

.section__title::after {
  content: '';
  width: 50px;
  height: 3px;
  background: var(--red);
  display: inline-block;
}

.section--dark .section__title {
  color: var(--white);
}

/* ============================================
   DIRECTIONS (НАШІ НАПРЯМКИ)
   ============================================ */
.directions__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.direction-card {
  width: calc(33.333% - 16px);
  min-width: 300px;
  max-width: 400px;
  background: var(--white);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.direction-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.direction-card__image {
  width: 100%;
  height: 180px;
  position: relative;
}

.direction-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition);
}

.direction-card:hover .direction-card__image img {
  transform: scale(1.05);
}

.direction-card__icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.direction-card__body {
  padding: 36px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.direction-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--dark);
}

.direction-card__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  margin-bottom: 24px;
}

.direction-card__tag {
  background: #f5f6f8;
  border: 1px solid #e1e3e8;
  color: #555;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 4px;
  text-align: center;
  transition: all var(--transition);
}

.direction-card__tag:hover {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}

.direction-card__link {
  font-size: 0.8rem;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
  margin-top: auto;
  transition: color var(--transition);
  text-decoration: none;
}

.direction-card__link:hover {
  color: var(--red);
}

/* ============================================
   WAREHOUSE (was ВЛАСНЕ ВИРОБНИЦТВО)
   ============================================ */
.warehouse {
  padding: 70px 0;
}

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

.warehouse__video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.warehouse__video img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.warehouse__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.warehouse__play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--dark);
  margin-left: 4px;
}

.warehouse__video:hover .warehouse__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.warehouse__info h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

.warehouse__list {
  margin-bottom: 28px;
}

.warehouse__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.warehouse__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

.warehouse__btn {
  padding: 14px 32px;
  font-size: 0.875rem;
}

/* ============================================
   PROJECTS (НАШІ ПРОЕКТИ)
   ============================================ */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.project-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  display: flex;
  align-items: flex-end;
}

.project-card__title {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section__header .btn--outline {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ============================================
   WHY US (ЧОМУ ОБИРАЮТЬ НАС)
   ============================================ */
.why-us {
  padding: 80px 0;
  background: #1a1a1a;
  color: #fff;
}

.why-us__header {
  margin-bottom: 50px;
}

.why-us__title {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-us__title-line {
  height: 2px;
  width: 60px;
  background-color: #c32026;
  display: inline-block;
}

.why-us__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.why-us__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.why-us__icon {
  width: 48px;
  height: 48px;
  color: #c32026;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us__icon svg {
  width: 100%;
  height: 100%;
}

.why-us__text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.why-us__separator {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   CTA (ГОТОВІ РОЗПОЧАТИ ПРОЕКТ)
   ============================================ */
.cta-v2 {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.cta-v2__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.cta-v2__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-v2__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #fff 30%, rgba(255,255,255,0.85) 55%, rgba(255,255,255,0) 100%);
}

.cta-v2__container {
  position: relative;
  z-index: 2;
}

.cta-v2__content {
  max-width: 680px;
}

.cta-v2__top-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.cta-v2__line {
  width: 30px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.cta-v2__title {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.cta-v2__subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.5;
}

.cta-v2__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-v2__form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cta-v2__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-v2__input-wrapper svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #aaa;
  pointer-events: none;
  stroke-width: 1.5;
}

.cta-v2__input-wrapper input[type="text"] {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color var(--transition);
}

.cta-v2__input-wrapper input[type="text"]:focus {
  border-color: #c32026;
}

.cta-v2__input-wrapper--file {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.cta-v2__input-wrapper--file:hover {
  border-color: #bbb;
}

.cta-v2__file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.cta-v2__input-wrapper--file label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 14px;
  cursor: pointer;
}

.cta-v2__input-wrapper--file label svg {
  position: static;
  margin-right: 10px;
  color: #aaa;
  width: 18px;
  height: 18px;
}

.cta-v2__file-texts {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cta-v2__file-title {
  font-size: 0.88rem;
  color: #555;
  font-weight: 400;
}

.cta-v2__file-desc {
  font-size: 0.7rem;
  color: #aaa;
}

.cta-v2__bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-v2__submit-btn {
  padding: 16px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background-color: #c32026;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition);
  white-space: nowrap;
}

.cta-v2__submit-btn:hover {
  background-color: #a01a1f;
}

.cta-v2__privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-v2__privacy-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: #ccc;
}

.cta-v2__privacy-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.cta-v2__privacy-text {
  font-size: 0.72rem;
  color: #aaa;
  line-height: 1.4;
}

/* ============================================
   SITE FOOTER — new design matching reference
   ============================================ */
.site-footer {
  background-color: #1a1e2a;
  background-image: linear-gradient(180deg, rgba(30, 35, 48, 0.3) 0%, rgba(12, 14, 20, 0.92) 100%), url('images/footer-bg.jpg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  color: #fff;
  position: relative;
}

.site-footer__main {
  padding: 70px 0 50px;
}

/* Wide layout stretching to 90px from screen edges */
.site-footer__inner {
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  padding: 0 90px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* ── Columns ── */
.sf-col {
  display: flex;
  flex-direction: column;
}

.sf-col--about {
  width: 320px;
  flex-shrink: 0;
}

.sf-col--nav {
  flex-shrink: 0;
  min-width: 150px;
}

.sf-col--contacts {
  flex-shrink: 0;
  min-width: 230px;
}

.sf-col--map {
  width: 370px;
  flex-shrink: 1;
}

/* ── Logo ── */
.sf-logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
  margin-top: -6px; /* align higher */
}

.sf-logo__img {
  height: 62px;
  width: auto;
}

/* ── Description ── */
.sf-desc {
  font-size: 0.88rem;
  color: #a4aab9;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ── Feature icons with vertical separators ── */
.sf-features {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.sf-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.sf-feature svg {
  width: 32px;
  height: 32px;
  color: #a4aab9;
  stroke-width: 1.2;
}

.sf-feature span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.sf-feat-sep {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Column titles with short red underline ── */
.sf-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 10px;
  position: relative;
}

.sf-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background-color: #c32026;
}

/* ── Nav menu ── */
.sf-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sf-menu a {
  font-size: 0.9rem;
  color: #a4aab9;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.4;
}

.sf-menu a:hover {
  color: #fff;
}

/* ── Contacts ── */
.sf-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sf-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.sf-contact svg {
  width: 22px;
  height: 22px;
  color: #c32026;
  margin-top: 3px;
  flex-shrink: 0;
  stroke-width: 1.5;
}

.sf-contact__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sf-contact__text strong {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.sf-contact__text span {
  font-size: 0.78rem;
  color: #a4aab9;
}

/* ── Social icons ── */
.sf-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.sf-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition);
}

.sf-social a:hover {
  border-color: #c32026;
  background: #c32026;
  color: #fff;
}

.sf-social svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* ── Map ── */
.sf-map {
  position: relative;
  width: 100%;
  max-width: 370px;
  height: 330px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sf-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.sf-map__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  background: #181d28;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* ── Bottom row ── */
.site-footer__bottom {
  padding: 20px 0;
}

/* Inside container line that matches content alignment */
.site-footer__bottom-inner {
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 90px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sf-copy {
  font-size: 0.78rem;
  color: #7d8393;
}

.sf-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: #7d8393;
}

.sf-bottom-links a {
  color: #7d8393;
  text-decoration: none;
  transition: color var(--transition);
}

.sf-bottom-links a:hover {
  color: #fff;
}

.sf-bottom-links span {
  color: rgba(255,255,255,0.15);
}

.sf-dev {
  font-size: 0.78rem;
  color: #7d8393;
}

.sf-dev strong {
  color: #b2b8c6;
  font-weight: 700;
  letter-spacing: 0.04em;
}
/* ============================================
   MODALS
   ============================================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.2s ease;
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-light);
  border-radius: 50%;
  transition: all var(--transition);
}

.modal__close:hover {
  background: var(--gray-bg);
  color: var(--dark);
}


.modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-right: 36px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.modal__input {
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.modal__input:focus {
  border-color: var(--red);
}

.modal__input.error {
  border-color: var(--red-light);
}

.modal__error {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}

.modal__error.visible {
  display: block;
}

.modal__submit {
  margin-top: 8px;
  padding: 14px;
  width: 100%;
}

.modal__success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.modal__success.visible {
  display: block;
}

.modal__success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal__success-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.modal__success-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

/* Video modal */
.modal--video .modal__content {
  max-width: 700px;
  padding: 30px;
  text-align: center;
}

.modal--video .modal__placeholder {
  padding: 60px 20px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  margin-top: 16px;
}

.modal--video .modal__placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal--video .modal__placeholder-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from { 
    opacity: 0;
    transform: translateY(-20px) scale(0.97);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   TOP 10 BLOCKS
   ============================================ */
.top10 {
  background-color: #0f0f0f;
  padding: 80px 0;
  color: #fff;
}

.top10__main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}

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

.top10__card {
  position: relative;
  background-color: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.top10__card--full {
  grid-column: span 2;
}

.top10__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.top10__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, #0f0f0f 30%, rgba(15, 15, 15, 0.4) 100%);
}

.top10__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #c32026;
  color: #fff;
  font-weight: 700;
  padding: 8px 16px;
  font-size: 1.1rem;
  z-index: 4;
  border-bottom-right-radius: 4px;
}

.top10__content-wrap {
  position: relative;
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.top10__content-wrap--row {
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}

.top10__col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top10__col-right {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.top10__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.top10__subtitle {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 24px;
  line-height: 1.4;
}

.top10__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.top10__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 0.95rem;
}

.top10__features svg {
  width: 24px;
  height: 24px;
  color: #c32026;
  flex-shrink: 0;
}

.top10__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  margin-top: 10px;
}

.top10__links-grid a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
  transition: color var(--transition);
}

.top10__links-grid a:hover {
  color: #fff;
}

.top10__links-grid .arrow {
  color: #c32026;
}

.top10__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.top10__list--mt {
  margin-top: 20px;
}

.top10__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.4;
}

.top10__list svg {
  width: 20px;
  height: 20px;
  color: #c32026;
  flex-shrink: 0;
  margin-top: 2px;
}

.top10__list .arrow {
  color: #c32026;
  margin-left: auto;
}

.top10__list--check li::before {
  content: "✓";
  color: #c32026;
  font-weight: bold;
  margin-right: 8px;
}

.top10__horizontal-list {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
}

.top10__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 0.95rem;
}

.top10__list-item svg {
  width: 24px;
  height: 24px;
  color: #c32026;
}

.top10__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
}

.top10__stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top10__stat svg {
  width: 32px;
  height: 32px;
  color: #c32026;
  flex-shrink: 0;
}

.top10__stat-text {
  font-size: 0.8rem;
  color: #bbb;
  line-height: 1.3;
}

.top10__stat-text strong {
  color: #fff;
  font-size: 1.1rem;
}

.top10__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.top10__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.4;
}

.top10__contacts svg {
  width: 20px;
  height: 20px;
  color: #c32026;
  flex-shrink: 0;
}

.top10__btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 4px;
  align-self: flex-start;
  transition: all var(--transition);
}

.top10__btn:hover {
  border-color: #c32026;
  background-color: rgba(195, 32, 38, 0.1);
  color: #fff;
}

/* ============================================
   TOP 10 BLOCKS (LIGHT THEME)
   ============================================ */
.top10-light {
  background-color: #f7f7f7;
  padding: 80px 0;
  color: #333;
}

.top10-light__main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #333;
}

.top10-light__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.top10-light__card {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.top10-light__card--full {
  grid-column: span 2;
}

.top10-light__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.top10-light__bg--left {
  left: 0;
  right: auto;
}

.top10-light__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0) 100%);
}

.top10-light__overlay--left {
  background: linear-gradient(to left, #fff 40%, rgba(255, 255, 255, 0) 100%);
}

.top10-light__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #c32026;
  color: #fff;
  font-weight: 700;
  padding: 8px 16px;
  font-size: 1.1rem;
  z-index: 4;
  border-bottom-right-radius: 4px;
}

.top10-light__content-wrap {
  position: relative;
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.top10-light__content-wrap--row {
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}

.top10-light__col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top10-light__col-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top10-light__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #222;
}

.top10-light__subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.4;
}
.top10-light__subtitle--red {
  color: #c32026;
  font-weight: 500;
}

.top10-light__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.top10-light__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
}

.top10-light__features svg {
  width: 24px;
  height: 24px;
  color: #c32026;
  flex-shrink: 0;
}

.top10-light__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  margin-top: 10px;
  width: 100%;
}

.top10-light__links-grid a {
  color: #444;
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  transition: color var(--transition);
}

.top10-light__links-grid a:hover {
  color: #c32026;
}

.top10-light__links-grid .arrow {
  color: #c32026;
  font-weight: bold;
}

.top10-light__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.top10-light__list--mt {
  margin-top: 20px;
}

.top10-light__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  font-weight: 500;
}

.top10-light__list svg {
  width: 20px;
  height: 20px;
  color: #c32026;
  flex-shrink: 0;
  margin-top: 2px;
}

.top10-light__list .arrow {
  color: #c32026;
  margin-left: auto;
  font-weight: bold;
}

.top10-light__list--check li::before {
  content: "✓";
  color: #c32026;
  font-weight: bold;
  margin-right: 8px;
}

.top10-light__horizontal-list {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
}

.top10-light__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
}

.top10-light__list-item svg {
  width: 24px;
  height: 24px;
  color: #c32026;
}

.top10-light__stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.top10-light__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  text-align: center;
}

.top10-light__stat svg {
  width: 36px;
  height: 36px;
  color: #c32026;
  flex-shrink: 0;
}

.top10-light__stat-text {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.3;
}

.top10-light__stat-text strong {
  color: #222;
  font-size: 1.1rem;
}

.top10-light__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.top10-light__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.top10-light__contacts svg {
  width: 24px;
  height: 24px;
  color: #c32026;
  flex-shrink: 0;
}

.top10-light__btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #c32026;
  color: #c32026;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 4px;
  align-self: flex-start;
  transition: all var(--transition);
  font-weight: 600;
  background: transparent;
}

.top10-light__btn:hover {
  background-color: #c32026;
  color: #fff;
}

.top10-light__btn-solid {
  display: inline-block;
  padding: 12px 24px;
  background-color: #c32026;
  color: #fff;
  border: 1px solid #c32026;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 4px;
  align-self: flex-start;
  transition: all var(--transition);
  font-weight: 600;
}

.top10-light__btn-solid:hover {
  background-color: #a01a1f;
  border-color: #a01a1f;
}

/* ============================================
   RESPONSIVE — Laptop & Medium screens (1760px)
   ============================================ */
@media (max-width: 1760px) {
  .site-footer__inner {
    padding: 0 40px;
    gap: 20px;
  }
  .site-footer__bottom-inner {
    padding: 20px 40px 0;
  }
  .sf-col--about {
    width: 280px;
  }
  .sf-col--nav {
    min-width: 120px;
  }
  .sf-col--contacts {
    min-width: 200px;
  }
}

/* ============================================
   RESPONSIVE — Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  
  .header__nav {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .direction-card {
    width: calc(50% - 12px);
  }

  .warehouse__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .warehouse__video img {
    height: 280px;
  }

  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .project-card {
    height: 200px;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-us__divider {
    display: none;
  }

  /* Footer tablet styles */
  .site-footer__inner {
    padding: 0 40px;
    flex-wrap: wrap;
    gap: 30px;
  }
  .sf-col--about {
    width: 100%;
    margin-bottom: 10px;
  }
  .sf-col:not(.sf-col--about) {
    width: calc(33.333% - 20px);
  }
  .sf-col--map {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .sf-map {
    width: 100%;
    max-width: 370px;
    height: 330px;
  }
  .site-footer__bottom-inner {
    padding: 20px 40px 0;
  }
}

/* ============================================
   RESPONSIVE — Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }

  .top10__grid,
  .top10-light__grid {
    grid-template-columns: 1fr;
  }
  
  .top10__card--full,
  .top10-light__card--full {
    grid-column: auto;
  }
  
  .top10__content-wrap--row,
  .top10-light__content-wrap--row {
    flex-direction: column;
  }
  
  .top10__links-grid,
  .top10-light__links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .top10__horizontal-list,
  .top10-light__horizontal-list {
    flex-direction: column;
    gap: 15px;
  }
  
  .top10__stats,
  .top10-light__stats {
    flex-direction: column;
    gap: 15px;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 400px;
  }

  .hero__content {
    padding: 40px 0;
  }

  .hero__title {
    font-size: 1.875rem;
  }

  .hero__subtitle {
    font-size: 0.8rem;
  }

  .hero__badges {
    gap: 16px;
  }

  .hero__badge-text {
    font-size: 0.7rem;
  }

  .directions__grid {
    gap: 16px;
  }
  .direction-card {
    width: calc(50% - 8px);
  }

  .direction-card__image {
    height: 140px;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-card {
    height: 200px;
  }

  .why-us__grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-us__separator {
    display: none;
  }

  .cta__form-row {
    grid-template-columns: 1fr;
  }
  
  .cta__bg-wrapper {
    width: 100%;
    opacity: 0.15;
  }

  /* New site footer mobile styles */
  .site-footer__inner {
    padding: 0 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .sf-col:not(.sf-col--about) {
    width: 100%;
  }
  .sf-col--map {
    flex-direction: column;
    align-items: stretch;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  .sf-map {
    max-width: 100%;
    height: 300px;
  }
  .sf-about__benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .sf-about__benefit:not(:last-child)::after {
    display: none;
  }
  .site-footer__bottom-inner {
    padding: 20px 20px 0;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .sf-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .site-footer__bottom-inner .sf-copy {
    order: 3;
  }
  .site-footer__bottom-inner .sf-bottom-links {
    order: 1;
  }
  .site-footer__bottom-inner .sf-dev {
    order: 2;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================
   RESPONSIVE — Small Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .hero__badges {
    flex-direction: column;
    gap: 12px;
  }

  .direction-card {
    width: 100%;
  }

  .why-us__grid {
    flex-direction: column;
    gap: 20px;
  }

  .cta__title {
    font-size: 1.375rem;
  }

  .modal__content {
    padding: 24px;
  }
}
