/* ============================================================
   GET FOX — стили главной страницы
   ============================================================ */

/* ---- Hero ---- */
.hero {
  background: var(--bg);
  padding: 56px 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-copy { padding-bottom: 56px; }
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.hero-trust span {
  font-size: 13.5px; color: var(--ink-2);
  display: flex; align-items: center; gap: 7px;
}
.hero-trust span::before { content: '✓'; color: var(--orange); font-weight: 700; }

.hero-img-wrap { position: relative; align-self: stretch; min-height: 420px; }
.hero-ph {
  width: 100%; height: 100%; min-height: 420px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-real-img {
  width: 100%; height: 100%; min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
.cat-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-badge {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px; font-weight: 600; color: var(--orange);
  letter-spacing: -0.02em; line-height: 1;
}
.hero-badge-label { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ---- Stats strip ---- */
.stats-strip { background: var(--ink); }
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid #2e2c28;
}
.stat-item { padding: 28px 28px; border-right: 1px solid #2e2c28; }
.stat-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px; font-weight: 600;
  color: #fff; line-height: 1; margin-bottom: 6px;
  display: flex; align-items: baseline; gap: 3px;
}
.stat-num sup { font-size: 14px; color: var(--orange); font-weight: 400; line-height: 2; }
.stat-label { font-size: 13px; color: #9a968e; line-height: 1.4; }

/* ---- Categories ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  text-decoration: none; color: inherit;
}
.cat-card:hover { border-color: var(--orange-line); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-card-img { aspect-ratio: 16/9; width: 100%; }
.cat-card-body {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; gap: 12px;
}
.cat-card-info b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.cat-card-info span { font-size: 13px; color: var(--muted); }
.cat-card-arrow {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: all .15s;
}
.cat-card:hover .cat-card-arrow { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---- Features ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.feature-item { background: var(--white); padding: 28px 24px; }
.feature-icon {
  width: 40px; height: 40px; background: var(--surface);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 16px;
}
.feature-item h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; }
.feature-item p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.feature-item a { color: var(--orange-dark); }

/* ---- Delivery ---- */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.delivery-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column;
}
.delivery-card.dark { background: var(--ink); border-color: var(--ink); color: #fff; justify-content: space-between; }
.dc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.dc-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dc-icon.light { background: var(--surface); color: var(--orange); }
.dc-icon.on-dark { background: #2e2c28; color: var(--orange); }
.dc-head h3 { margin: 0 0 3px; font-size: 16px; font-weight: 600; }
.delivery-card.dark .dc-head h3 { color: #fff; }
.dc-head p { margin: 0; font-size: 13px; color: var(--muted); }
.delivery-card.dark .dc-head p { color: #9a968e; }
.dc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.dc-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; font-weight: 500;
  border: 1px solid var(--line-strong); padding: 5px 11px;
  border-radius: var(--radius-sm); color: var(--ink-2);
}
.dc-routes-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.dc-route {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 11px 0; border-top: 1px solid var(--line); font-size: 14.5px;
}
.dc-route-cities {
  width: 100%; font-size: 12.5px; color: var(--muted); margin-top: 2px;
}
.dc-route-date {
  font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  font-size: 14px; color: var(--orange); width: 46px; flex-shrink: 0;
}
.dc-nearest {
  margin-left: auto; font-size: 11.5px; font-weight: 600;
  background: var(--orange-tint); color: var(--orange-dark);
  padding: 3px 9px; border-radius: 20px;
}
.dc-free { margin-bottom: 14px; }
.dc-free-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.dc-free-price {
  font-family: 'IBM Plex Mono', monospace; font-size: 46px; font-weight: 600;
  color: var(--orange); line-height: 1;
}
.dc-free-cur { font-size: 24px; color: #9a968e; }
.dc-free-caption { font-size: 13.5px; color: #9a968e; line-height: 1.4; }
.dc-free-caption b { color: #fff; }
.dc-note { font-size: 13px; color: #9a968e; line-height: 1.5; margin-top: 18px; }

/* ---- CTA ---- */
.cta-simple {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: 36px 48px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-simple h2 { font-size: 22px; font-weight: 700; margin: 0; color: #fff; flex-shrink: 0; }
.cta-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.cta-input {
  flex: 1; height: 46px; padding: 0 16px;
  background: #2e2c28; border: 1.5px solid #3e3c38;
  border-radius: var(--radius); color: #fff; font-family: inherit; font-size: 14px;
  outline: none; transition: border-color .15s;
}
.cta-input::placeholder { color: #7a7670; }
.cta-input:focus { border-color: var(--orange); }

/* ---- Адаптив ---- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .hero-copy { padding-bottom: 36px; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: 1fr; }
  .cta-simple { padding: 28px 28px; flex-direction: column; align-items: stretch; }
  .cta-form { max-width: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 30px; }
  .cat-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
