/* МАГфорс — Home Page Styles */

/* ─── ACCENT GRADIENT ────────────────────────────────────────────────────── */
.accent-gradient {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-l) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tag { gap: 10px; }
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  animation: pulseDot 2s ease-in-out infinite; display: inline-block;
}
@keyframes pulseDot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.6} }

.btn-glow { box-shadow: 0 0 28px var(--red-glow), 0 4px 16px var(--red-a) !important; }
.btn-glow:hover { box-shadow: 0 0 44px var(--red-glow), 0 8px 24px rgba(26,79,214,0.35) !important; }

.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px;
  animation: fadeInUp 0.8s 0.6s var(--ease) both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.60); border: 1px solid rgba(255,255,255,0.80);
  color: var(--t1); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 99px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(12,24,41,0.06);
}
.hero-badge span { color: #16a34a; font-weight: 800; }

/* Floating stat cards near magnet */
.hero-float-cards {
  position: absolute; right: -20px; top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: space-around; gap: 12px;
}
.hfc {
  background: rgba(255,255,255,0.92); border: 1px solid rgba(12,24,41,0.08);
  border-radius: 14px; padding: 14px 18px; text-align: center;
  backdrop-filter: blur(12px); min-width: 110px;
  box-shadow: 0 8px 32px rgba(12,24,41,0.12);
  animation: fadeInRight 0.8s var(--ease) both;
}
.hfc-1 { animation-delay: .7s; }
.hfc-2 { animation-delay: .9s; }
.hfc-3 { animation-delay: 1.1s; }
.hfc-num { font-family: var(--font-d); font-size: 32px; color: var(--red); line-height: 1; }
.hfc-label { font-size: 11px; color: var(--t2); font-weight: 600; letter-spacing: .5px; margin-top: 2px; }

/* ─── MARQUEE (dark strip) ────────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden; padding: 14px 0;
  background: #0c1829;
  border-top: none; border-bottom: none;
}
.marquee-track {
  display: flex; align-items: center; gap: 32px; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65);
  white-space: nowrap; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  padding: 5px 16px; border-radius: 99px;
}
.marquee-dot {
  color: var(--red-l) !important; font-size: 8px !important;
  background: none !important; border: none !important; padding: 0 !important;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── HOW IT WORKS ────────────────────────────────────────────────────────── */
.how-section {
  padding: 100px 32px;
  background: transparent;
}
.how-inner { max-width: 1320px; margin: 0 auto; }
.section-h2 {
  font-family: var(--font-d); font-size: clamp(38px,5vw,68px);
  letter-spacing: 2px; color: var(--t1); margin: 8px 0 56px; line-height: 1;
}
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; }
.how-step {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: all .3s var(--ease);
  box-shadow: 0 2px 16px rgba(12,24,41,0.07);
}
.how-step:hover { border-color: rgba(26,79,214,0.25); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,24,41,0.14); }
.how-step-num {
  font-family: var(--font-d); font-size: 80px; color: var(--b2);
  line-height: 1; position: absolute; top: 16px; right: 20px;
  pointer-events: none; letter-spacing: -2px;
}
.how-step-icon { font-size: 44px; margin-bottom: 16px; }
.how-step h3 { font-family: var(--font-d); font-size: 26px; letter-spacing: 1px; color: var(--t1); margin-bottom: 12px; }
.how-step p { font-size: 14px; color: var(--t2); line-height: 1.8; }
.how-arrow {
  position: absolute; right: -24px; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--red); z-index: 2; font-weight: 700;
}

/* ─── FEATURED PRODUCTS ───────────────────────────────────────────────────── */
.featured-section { padding: 100px 32px; }
.featured-inner { max-width: 1320px; margin: 0 auto; }
.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}
.featured-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.featured-skeleton {
  height: 360px; border-radius: var(--r-lg);
  background: linear-gradient(90deg, var(--s1) 25%, var(--s2) 50%, var(--s1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.featured-card {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; transition: all .3s var(--ease);
  box-shadow: 0 2px 12px rgba(12,24,41,0.06);
}
.featured-card:hover { border-color: rgba(26,79,214,0.2); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(12,24,41,0.14); }
.featured-img { position: relative; height: 200px; overflow: hidden; background: var(--s2); }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.featured-card:hover .featured-img img { transform: scale(1.06); }
.featured-overlay {
  position: absolute; inset: 0;
  background: rgba(26,79,214,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 1px;
}
.featured-card:hover .featured-overlay { opacity: 1; }
.featured-info { padding: 18px; }
.featured-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.featured-name { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 8px; line-height: 1.4; }
.featured-desc { font-size: 12px; color: var(--t2); line-height: 1.6; margin-bottom: 14px; }
.featured-footer { display: flex; justify-content: space-between; align-items: center; }
.featured-price { font-family: var(--font-d); font-size: 18px; color: var(--t1); }

/* ─── STATS (dark section) ────────────────────────────────────────────────── */
.stats-section {
  padding: 80px 32px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0c1829 0%, #0f2040 50%, #0c1829 100%);
}
.stats-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,79,214,0.15) 0%, transparent 70%);
}
.stats-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  position: relative; z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-l), transparent);
  transform: scaleX(0); transition: transform .4s var(--ease);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { border-color: rgba(26,79,214,0.3); transform: translateY(-4px); }
.stat-card-num { font-family: var(--font-d); font-size: 64px; color: #fff; line-height: 1; }
.stat-card-unit { font-family: var(--font-d); font-size: 32px; color: var(--red-l); line-height: 1; }
.stat-card-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: .5px; margin-top: 8px; }

/* ─── CATEGORIES SECTION ─────────────────────────────────────────────────── */
.cats-section { padding: 100px 32px; }
.cats-inner { max-width: 1320px; margin: 0 auto; }

/* ─── INDUSTRIES ──────────────────────────────────────────────────────────── */
.industries-section { padding: 100px 32px; background: var(--s1); border-top: 1px solid var(--b1); }
.industries-inner { max-width: 1320px; margin: 0 auto; }
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.industry-card {
  background: var(--s2); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 32px 28px; transition: all .3s var(--ease); position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(12,24,41,0.04);
}
.industry-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-l));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover { border-color: rgba(26,79,214,0.18); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(12,24,41,0.10); }
.industry-icon { font-size: 44px; margin-bottom: 16px; }
.industry-card h4 { font-family: var(--font-d); font-size: 22px; letter-spacing: 1px; color: var(--t1); margin-bottom: 10px; }
.industry-card p { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── WHY US LAYOUT ───────────────────────────────────────────────────────── */
.why-us {
  padding: 100px 32px;
  background: transparent;
  border-top: none;
}
.why-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 340px) 3px minmax(0, 1fr);
  gap: 64px; align-items: start;
}
.why-left { position: static; min-width: 0; }
.why-divider {
  width: 3px; align-self: stretch; min-height: 400px; border-radius: 99px;
  background: linear-gradient(180deg, var(--red), var(--red-l), var(--red));
  background-size: 100% 300%;
  animation: dividerFlow 3s linear infinite;
}
@keyframes dividerFlow {0%{background-position:0 0}100%{background-position:0 300%}}
.why-right { padding-left: 0; min-width: 0; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--b1);
  transition: all .2s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover .why-item-icon { transform: scale(1.15); }
.why-item-icon { font-size: 32px; flex-shrink: 0; transition: transform .2s; margin-top: 2px; }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials-section { padding: 100px 32px; background: var(--s1); border-top: 1px solid var(--b1); }
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.testimonials-slider { overflow: hidden; border-radius: var(--r-lg); margin-top: 48px; }
.testimonials-track { display: flex; transition: transform .5s var(--ease); }
.t-card {
  min-width: 100%; background: var(--s2); border: 1px solid var(--b1);
  border-radius: var(--r-lg); padding: 40px; box-sizing: border-box;
}
.t-stars { color: #f59e0b; font-size: 20px; margin-bottom: 20px; letter-spacing: 2px; }
.t-text { font-size: 16px; color: var(--t1); line-height: 1.9; margin-bottom: 28px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-l));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 18px; color: #fff;
}
.t-name { font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
.t-role { font-size: 13px; color: var(--t2); }
.testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.tctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--s1); border: 1px solid var(--b2);
  color: var(--t1); font-size: 18px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.tctrl-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.tctrl-dots { display: flex; gap: 8px; align-items: center; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--b3); border: none;
  cursor: pointer; transition: all .2s; padding: 0;
}
.t-dot.active { background: var(--red); transform: scale(1.3); }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { padding: 100px 32px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--b1); overflow: hidden; transition: all .2s;
}
.faq-item.active {
  background: var(--s1); border-radius: var(--r); margin: 4px 0;
  border: 1px solid rgba(26,79,214,0.18);
  box-shadow: 0 4px 16px rgba(12,24,41,0.07);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  color: var(--t1); font-family: var(--font-b); font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: left; gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-item.active .faq-q { color: var(--red); }
.faq-icon { font-size: 22px; font-weight: 300; flex-shrink: 0; color: var(--red); transition: transform .3s; }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px;
  font-size: 14px; color: var(--t2); line-height: 1.9;
  transition: max-height .4s var(--ease), padding .3s;
}
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }

/* ─── CTA SECTION (dark) ──────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 32px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0c1829 0%, #0f2040 40%, #0c1829 100%);
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26,79,214,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(74,120,240,0.08) 0%, transparent 50%);
}
.cta-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.cta-text h2 {
  font-family: var(--font-d); font-size: clamp(36px,4vw,60px);
  letter-spacing: 2px; color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.cta-features { display: flex; flex-direction: column; gap: 8px; }
.cta-features span {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.80);
  display: flex; align-items: center; gap: 8px;
}
.cta-features span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-l); flex-shrink: 0;
}
.cta-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(16px);
}
.cta-form input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm); color: #fff; font-family: var(--font-b); font-size: 14px;
  padding: 13px 16px; outline: none; transition: border-color .2s;
}
.cta-form input:focus { border-color: var(--red-l); background: rgba(255,255,255,0.12); }
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form .btn-primary { width: 100%; padding: 15px; font-size: 14px; }
.cta-policy { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.5; }
.cta-policy a { color: var(--red-l); text-decoration: none; }
.cta-policy a:hover { text-decoration: underline; }

/* ─── FOOTER BOTTOM (in home) ─────────────────────────────────────────────── */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .how-arrow { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-divider { display: none; }
  .featured-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-float-cards { display: none; }
}
@media (max-width: 640px) {
  .featured-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .how-section, .featured-section, .cats-section, .industries-section,
  .why-us, .testimonials-section, .faq-section, .cta-section, .stats-section
  { padding: 60px 20px; }
  .t-card { padding: 24px; }
  .t-text { font-size: 14px; }
}

/* ─── ADVANTAGES BENTO ────────────────────────────────────────────────────── */
.adv-section { padding: 100px 32px; }
.adv-inner { max-width: 1320px; margin: 0 auto; }
.adv-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}

/* BENTO GRID */
.adv-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

/* ── Главная тёмная карточка (col 1-2, row 1-2) ── */
.adv-main {
  grid-column: 1 / 3; grid-row: 1 / 3;
  background: linear-gradient(135deg, #0c1829 0%, #0f2040 100%);
  border-radius: 28px; padding: 52px 56px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 380px;
}
.adv-main-ghost {
  position: absolute; right: -24px; top: -24px;
  font-family: var(--font-d); font-size: 280px; line-height: 1;
  color: rgba(255,255,255,0.03); pointer-events: none; user-select: none;
}
.adv-main-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red-l);
}
.adv-main-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-l); flex-shrink: 0;
}
.adv-main-title {
  font-family: var(--font-d); font-size: clamp(36px, 4vw, 58px);
  letter-spacing: 2px; line-height: 1; color: #fff; margin: 0;
}
.adv-main-desc {
  font-size: 15px; color: rgba(255,255,255,0.50); line-height: 1.8;
  max-width: 460px; margin: 0;
}
.adv-main-stats {
  display: flex; gap: 0; margin-top: auto;
}
.adv-main-stat {
  display: flex; flex-direction: column; padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.10);
  margin-right: 32px;
}
.adv-main-stat:last-child { border-right: none; margin-right: 0; }
.adv-main-stat span {
  font-family: var(--font-d); font-size: 40px; color: var(--red-l); line-height: 1;
  display: block;
}
.adv-main-stat {
  font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 4px;
}
.adv-main-link {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
.adv-main-link:hover { color: var(--red-l); }

/* ── ISO карточка (col 3, row 1) ── */
.adv-iso {
  grid-column: 3; grid-row: 1;
  background: linear-gradient(145deg, var(--red) 0%, var(--red-l) 100%);
  border-radius: 28px; padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 16px;
}
.adv-iso-ring {
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.adv-iso-ring::before {
  content: ''; position: absolute; inset: 6px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
}
.adv-iso-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.adv-iso-label {
  font-family: var(--font-d); font-size: 20px; color: #fff;
  letter-spacing: 4px; line-height: 1;
}
.adv-iso-num {
  font-family: var(--font-d); font-size: 30px; color: rgba(255,255,255,0.85);
  letter-spacing: 2px; line-height: 1;
}
.adv-iso h4 {
  font-size: 15px; font-weight: 700; color: #fff;
}
.adv-iso p {
  font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6;
}

/* ── Маленькие карточки (col 3, row 2) — гарантия; строка 3 — отгрузка ── */
.adv-card {
  background: var(--s1); border: 1px solid var(--b1); border-radius: 28px;
  padding: 28px 28px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 16px rgba(12,24,41,0.06); transition: all 0.3s var(--ease);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12,24,41,0.12); border-color: rgba(26,79,214,0.18); }
.adv-card--dark { background: #0c1829; border-color: transparent; }
.adv-card--dark:hover { border-color: rgba(26,79,214,0.3); }
.adv-card-top { display: flex; align-items: center; justify-content: space-between; }
.adv-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.adv-card-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--t3); border: 1px solid var(--b2); padding: 4px 10px; border-radius: 99px;
}
.adv-card-big {
  font-family: var(--font-d); font-size: 64px; color: var(--red);
  line-height: 1; letter-spacing: -1px;
}
.adv-card-unit { font-size: 13px; font-weight: 700; color: var(--t2); margin-top: -6px; }
.adv-card-desc { font-size: 13px; color: var(--t2); line-height: 1.7; }

/* ── Карточка поддержки — полная ширина (row 3) ── */
.adv-support {
  grid-column: 1 / 4;
  background: var(--s1); border: 1px solid var(--b1); border-radius: 28px;
  padding: 36px 48px; display: flex; align-items: center; gap: 32px;
  box-shadow: 0 2px 16px rgba(12,24,41,0.06); transition: all 0.3s var(--ease);
}
.adv-support:hover { border-color: rgba(26,79,214,0.18); box-shadow: 0 8px 32px rgba(12,24,41,0.10); }
.adv-support-icon {
  font-size: 52px; flex-shrink: 0;
  width: 80px; height: 80px; border-radius: 20px;
  background: var(--red-a); display: flex; align-items: center; justify-content: center;
}
.adv-support-body { flex: 1; min-width: 0; }
.adv-support-title {
  font-family: var(--font-d); font-size: 30px; color: var(--t1);
  letter-spacing: 1px; margin-bottom: 8px;
}
.adv-support-desc { font-size: 14px; color: var(--t2); line-height: 1.75; max-width: 520px; }
.adv-support-pills {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px;
}
.adv-support-pills span {
  font-size: 12px; font-weight: 600; color: var(--t2);
  background: var(--s2); border: 1px solid var(--b1);
  padding: 5px 14px; border-radius: 99px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .adv-bento { grid-template-columns: 1fr 1fr; }
  .adv-main { grid-column: 1 / 3; grid-row: 1; }
  .adv-iso { grid-column: 1; grid-row: 2; }
  .adv-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .adv-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .adv-support { grid-column: 1 / 3; grid-row: 4; }
}
@media (max-width: 768px) {
  .adv-section { padding: 60px 20px; }
  .adv-bento { grid-template-columns: 1fr; }
  .adv-main { grid-column: 1; grid-row: auto; padding: 36px 28px; min-height: auto; }
  .adv-iso { grid-column: 1; grid-row: auto; }
  .adv-card { grid-column: 1; grid-row: auto; }
  .adv-support { grid-column: 1; grid-row: auto; padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .adv-main-ghost { font-size: 160px; }
  .adv-main-stats { gap: 0; flex-wrap: wrap; }
  .adv-header { flex-direction: column; align-items: flex-start; }
}