@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.eot');
    src: local('Gilroy Light'), local('Gilroy-Light'),
    url('fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Light.woff') format('woff'),
    url('fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Extrabold.eot');
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
    url('fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Extrabold.woff') format('woff'),
    url('fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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

:root {
  --red: #f32735;
  --red-hover: #C8001A;
  --black: #000;
  --dark: #1C1C1C;
  --gray-bg: #f3f3f3;
  --gray-light: #E8E8E8;
  --gray-mid: #AAAAAA;
  --gray-text: #6B6B6B;
  --white: #f9f9f9;
  --font: 'Gilroy', sans-serif;
  --max: 1280px;
  --pad: 80px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.5; }

a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.header__wrap {
  max-width: var(--max); margin: 0 auto;
  height: 68px;
  display: flex; align-items: center; gap: 40px;
      justify-content: space-between;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0;}
.logo img { max-width: 200px;  height: auto; }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 16px; font-weight: 500; color: var(--dark);
  transition: color .2s; white-space: nowrap;
  position: relative;
}
.header-nav a.active {
 color: #f32735;
}
.header-nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 2px;
}
.header-nav a:hover { color: var(--red); }
.header-dots { font-size: 14px; color: var(--gray-mid); cursor: pointer; }


.btn-red {
  background: var(--red); color: #fff;
  border: none; border-radius: 100px;
  padding: 12px 32px;
  font-size: 16px;
font-weight: 400;
  transition: background .2s;
  display: inline-flex; align-items: center; white-space: nowrap;
}
.btn-red:hover { background: var(--red-hover); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; border: none; background: none; }
.burger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; display: block; }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: white; padding: 20px 24px; flex-direction: column; gap: 4px;
  z-index: 199; box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-bottom: 1px solid var(--gray-light);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--gray-light); color: var(--dark); }
.mobile-nav a:last-child { border: none; }
.mobile-nav .btn-red { margin-top: 12px; justify-content: center; border-radius: 100px; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: var(--white);
  padding: 60px 40px 72px;
}
.hero__wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__breadcrumb {
  display: inline-flex; align-items: center;
  background: rgba(187, 0, 4, 0.1);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 12px; 
  font-weight: 500; 
 color: #bb0004;
  margin-bottom: 28px;
  gap: 6px;
}


.hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 105%;
  letter-spacing: -0.05em;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero__desc {
  margin-bottom: 36px;
  max-width: 500px;

  font-size: 20px;
line-height: 163%;
color: #5f5e5e;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red-lg {
  background: var(--red); color: #fff;
  border: none; border-radius: 100px;
  padding: 22px 40px;
  font-size: 18px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-red-lg:hover { background: var(--red-hover); transform: translateY(-1px); }

.btn-outline-lg {
  background: var(--white); color: var(--dark);
  border: 1.5px solid var(--gray-light);
  border-radius: 100px; 
  padding: 22px 40px;
  font-size: 18px; 
  font-weight: 400;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s;
}
.btn-outline-lg:hover { border-color: var(--dark); }

.hero__img {
  border-radius: 24px; overflow: hidden;

  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
background: rgba(255, 255, 255, 0);
transform: rotate(2deg);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════
   SECTION КОГДА ПОДХОДИТ (dark)
══════════════════════════════ */
.s-dark {
  background: var(--black);
  padding: var(--pad) 40px;
  color: white;
}
.s-white {
  background: var(--white);
  padding: var(--pad) 40px;
}
.s-gray {
  background: var(--gray-bg);
  padding: var(--pad) 40px;
}
.s-red {
  background: var(--red);
  padding: var(--pad) 40px;
  color: white;
}

.s__inner { max-width: var(--max); margin: 0 auto; }

.s-h2 {
  font-size:  36px;
  font-weight: 400; 
  margin-bottom: 32px;
  line-height: 111%;
letter-spacing: -0.02em;
}
.s-h2--center { text-align: center; }
.s-desc { font-size: 18px; line-height: 1.7; margin-bottom: 48px; max-width: 1000px; }
.s-desc--center { text-align: center; margin: 0 auto 48px; }
.s-desc--dark { color: rgba(255,255,255,.6); }
.s-desc--gray { color: var(--gray-text); }

/* When cards */
.when-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.when-card {
  background: var(--white); 
  border-radius: 48px;
  padding: 32px 28px;
}
.when-card__icon {
  margin-bottom: 24px;
}
/* .when-card__icon svg { width: 40px; height: 40px; } */
.when-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.when-card p { font-size: 16px; color: var(--gray-text); line-height: 1.65; }

.autodelivery .s-h2 {
  font-weight: 700;
}
/* ══════════════════════════════
   ЧТО ВХОДИТ
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: #fff;
border-radius: 48px;
  overflow: hidden;
}
.srv-card {
  background: #fff;
  padding: 28px 24px 32px;
  position: relative;
}
.srv-card--red {
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  text-align: center; cursor: default;
}
.srv-card--red .srv-title { color: white; font-size: 20px; font-weight: 400; }

/* Заголовок + иконка в одной строке, иконка прижата к правому нижнему углу */
.srv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 48px; /* чтобы однострочный и двухстрочный заголовки выровнялись */
}
.srv-icon {
  color: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2px;
}
.srv-icon svg { width: 24px; height: 24px; }
.srv-title {
  font-weight: 400; 
  font-size: 18px;
line-height: 156%;
color: #1a1c1c; }
.srv-text { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ══════════════════════════════
   КАКИЕ ГРУЗЫ
══════════════════════════════ */
.cargo-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cargo-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 32px; margin-top: 32px;
}
.cargo-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px;
line-height: 150%;
 font-weight: 500; color: var(--dark);
  padding: 4px 0;
}
.cargo-item::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.cargo-img {
  border-radius: 24px; overflow: hidden;
 background: #ddd;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.cargo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════
   ПОЧЕМУ REDHAN (dark)
══════════════════════════════ */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 48px; 
}
.stat-col {
  padding: 40px 0 0;
  border-left: 2px solid var(--red);
  padding-left: 24px;
  margin-right: 40px;
}
.stat-col:last-child { margin-right: 0; }
.stat-val {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
  line-height: 1; color: white; margin-bottom: 6px;
}
.stat-lbl-top {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-mid); margin-bottom: 10px;
}
.stat-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ══════════════════════════════
   КАК ПРОХОДИТ РАБОТА
══════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-top: 56px;
}
.step-item { position: relative; padding-top: 60px; min-height: 120px; }
.step-num {
   font-family: 'Open Sans', Arial, sans-serif;
  font-size: 120px; font-weight: 400; letter-spacing: -4px;
  color: rgba(187, 0, 4, 0.05); line-height: 1;
  position: absolute; top: 0; left: -8px;
  z-index: 0;
  pointer-events: none;
}
.step-title { font-size: 20px; font-weight: 400; margin-bottom: 10px; color: var(--dark); position: relative; z-index: 1; }
.step-text { font-size: 16px; color: var(--gray-text); line-height: 1.65; position: relative; z-index: 1; }

/* ══════════════════════════════
   СТОИМОСТЬ (red)
══════════════════════════════ */
.price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 48px 0 32px;
}
.price-col { text-align: center; padding: 0 64px; }
.price-col + .price-col { border-left: 1px solid rgba(255,255,255,.3); }
.price-big {
  font-size: 60px; font-weight: 400; letter-spacing: -3px;
  color: white; line-height: 1; margin-bottom: 8px;
}
.price-sub {
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}
.price-desc-text {
  text-align: center; font-size: 18px; color: rgba(255,255,255,.8);
  line-height: 1.75; max-width: 600px; margin: 0 auto;
}

/* ══════════════════════════════
   КОМУ ПОДХОДИТ
══════════════════════════════ */
.audience-row {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.aud-item { text-align: center; }
.aud-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

.aud-label { font-size: 16px; font-weight: 600; color: var(--dark); }
.audience-caption {
  text-align: center; margin-top: 40px;
  font-size: 20px; font-weight: 600; color: #5f5e5e;
  max-width: 1000px; margin-left: auto; margin-right: auto;
  line-height: 1.65;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-wrap { max-width: 900px; margin: 48px auto 0; }
.faq-item {
  background: var(--gray-bg); border-radius: 48px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--dark);
  user-select: none;
}
.faq-arrow {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.faq-arrow svg { width: 16px; height: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  font-size: 14px; color: var(--gray-text); line-height: 1.7;
  transition: max-height .35s ease, padding .25s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ══════════════════════════════
   ФОРМА (dark card, split)
══════════════════════════════ */
.form-section { background: var(--dark); padding: var(--pad) 40px; }
.form-card {
  max-width: var(--max); margin: 0 auto;
  background: var(--dark);
  border-radius: 28px;
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.form-left-side {
  background: var(--red);
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.form-left-side h2 {
  font-size: 36px;
  font-weight: 800; color: white; line-height: 1.2;
  letter-spacing: -0.8px; margin-bottom: 24px;
}
.form-left-side p {
  font-size: 20px; color: rgba(255,255,255,.82);
  line-height: 1.75; margin-bottom: 40px;
}
.form-contact { display: flex; flex-direction: column; gap: 14px; }
.form-contact a {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 400; color: white;
}
.form-contact a svg { width: 18px; height: 18px; opacity: .85; flex-shrink: 0; }
.form-contact a:hover { opacity: .85; }

.form-right-side { background: white; padding: 56px 48px; }
.f-group { margin-bottom: 20px; }
.f-label {
  display: block; font-size: 14px; font-weight: 400;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gray-text); margin-bottom: 8px;
}
.f-input, .f-textarea {
  width: 100%; background: var(--gray-bg);
  border: none; border-radius: 48px;
  padding: 15px 18px;
  font-family: var(--font); font-size: 15px; color: var(--dark);
  outline: none; transition: box-shadow .2s, background .2s;
}
.f-input::placeholder, .f-textarea::placeholder { color: var(--gray-mid); }
.f-input:focus, .f-textarea:focus {
  background: #EBEBEB;
  box-shadow: 0 0 0 2px rgba(232,0,28,.2);
}

.f-textarea { resize: vertical; min-height: 110px; }
.f-textarea {
  padding-left: 28px;
}
.f-submit {
  width: 100%; background: var(--red); color: white;
  border: none; border-radius: 100px;
  padding: 17px;
  font-family: var(--font); font-size: 16px; font-weight: 700;
  cursor: pointer; margin-top: 8px;
  transition: background .2s, transform .15s;
}
.f-submit:hover { background: var(--red-hover); transform: translateY(-1px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--gray-bg); }
.footer__top {
  max-width: var(--max); margin: 0 auto;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap; gap: 16px;
}
.footer__phone {
  display: flex; flex-direction: column;
}
.footer__phone-main {
  font-size: 15px; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}
.footer__phone-main svg { width: 16px; height: 16px; color: var(--gray-text); }
.footer__phone-sub { font-size: 12px; color: var(--gray-text); margin-top: 2px; }
.footer__socials { display: flex; gap: 8px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.soc-btn:hover { background: var(--gray-mid); }
.soc-btn svg { width: 16px; height: 16px; color: var(--dark); }

.footer__newsletter {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--gray-light);
  border-radius: 100px; padding: 8px 16px 8px 20px;
  font-size: 14px; color: var(--gray-text);
}
.footer__newsletter button {
  background: none; border: none; cursor: pointer;
  color: var(--gray-text); display: flex; align-items: center;
}
.footer__newsletter button svg { width: 18px; height: 18px; }

.footer__bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 13px; color: var(--gray-text); }
.footer__links { display: flex; gap: 28px; }
.footer__links a { font-size: 13px; color: var(--gray-text); transition: color .2s; }
.footer__links a:hover { color: var(--dark); }
.footer__payments { display: flex; align-items: center; gap: 10px; }
.pay-logo { font-size: 13px; font-weight: 700; color: var(--gray-mid); }


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-col { margin-right: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 900px) {
  :root { --pad: 60px; }
  .header-nav, .header__right { display: none; }
  .burger { display: flex; }

  .hero__wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero__img { order: -1; max-height: 300px; }
  .hero h1 { font-size: 40px; }

  .when-cards { grid-template-columns: 1fr; }
  .cargo-layout { grid-template-columns: 1fr; }
  .cargo-img { max-width: 100%; }

  .form-card { grid-template-columns: 1fr; }
  .form-left-side { padding: 40px 32px; }
  .form-right-side { padding: 40px 32px; }

  .price-row { flex-direction: column; gap: 32px; }
  .price-col + .price-col { border-left: none; border-top: 1px solid rgba(255,255,255,.3); padding-top: 32px; }
  .price-col { padding: 0; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .audience-row { gap: 24px; }

  .footer__top, .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --pad: 48px; }
  .hero, .s-dark, .s-white, .s-gray, .s-red, .form-section, .footer { padding-left: 20px; padding-right: 20px; }
  

.header__wrap {
    padding: 0 20px;
}
.logo img {
    max-width: 120px;
}
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cargo-list { grid-template-columns: 1fr; }

  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero__btns { flex-direction: column; }
  .btn-red-lg, .btn-outline-lg { width: 100%; justify-content: center; }

  .s-h2 { font-size: 28px; }
  .stat-val { font-size: 44px; }
  .price-big { font-size: 56px; }

  .footer__links { flex-direction: column; gap: 12px; }
  .form-left-side, .form-right-side { padding: 32px 24px; }
}