
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --or: #F59E0B;        /* основной оранжево-желтый */
  --or-dark: #D97706;   /* темнее для кнопок / hover */
  --or-light: #FFF7E6;  /* светлый теплый фон блоков */
  --or-border: #FCD68A; /* рамки / разделители */

  --bg: #FFFDF8;        /* общий фон */
  --surface: #FFFFFF;   /* карточки */

  --bd: #F3E7CC;
  --bd2: #E8D8B5;

  --t1: #1F2937;        /* основной текст */
  --t2: #374151;
  --t3: #6B7280;
  --t4: #9CA3AF;
}

html { scroll-behavior: smooth; }

body {
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--t2);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* -- HEADER -- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bd);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 19px; font-weight: 900; color: var(--or); letter-spacing: 0.2px; }
.header-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--or);
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
.header-call i { font-size: 16px; }

/* -- HERO -- */
.hero {
  background: var(--surface);
  padding: 28px 20px 26px;
  border-bottom: 1px solid var(--bd);
}
.badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid var(--bd2);
  color: var(--t3);
  background: var(--bg);
}
.badge i { font-size: 12px; }
.badge-o {
  background: var(--or-light);
  border-color: var(--or-border);
  color: #D97706;
}

h1 {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--t1);
  margin-bottom: 14px;
}
h1 span { color: var(--or); }

.hero-sub { font-size: 15px; color: var(--t3); line-height: 1.65; margin-bottom: 20px; }
.hero-sub b { color: var(--t2); font-weight: 600; }

.tip {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--or-light);
  border-left: 3px solid var(--or);
  border-radius: 0 10px 10px 0;
  padding: 13px 15px;
  margin-bottom: 22px;
  font-size: 13px;
  color: #15105a;
  line-height: 1.6;
}
.tip i { font-size: 22px; color: var(--or); flex-shrink: 0; margin-top: 1px; }
.tip b { color: #92400E; }

.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--or);
  color: #fff;
  text-decoration: none;
  padding: 17px;
  border-radius: 13px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.1s;
}
.btn-main i { font-size: 22px; }
.btn-main:active { background: var(--or-dark); transform: scale(0.99); }

.cta-sub { text-align: center; font-size: 12px; color: var(--t4); margin-top: 9px; }
.cta-sub a { color: var(--t3); text-decoration: none; }

/* -- STATS -- */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-bottom: 1px solid var(--bd);
}
.stat {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
.stat i { font-size: 28px; color: var(--or); margin-bottom: 3px; }
.stat-val { font-size: 20px; font-weight: 800; color: var(--t1); line-height: 1; }
.stat-label { font-size: 11px; color: var(--t4); line-height: 1.4; }

/* -- BLOCK 2 -- */
.block2 { padding: 26px 20px; display: flex; flex-direction: column; gap: 26px; background: var(--bg); }

.sec-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--t4);
  margin-bottom: 12px;
}
.sec-label i { font-size: 15px; }

/* Цены */
.price-card { background: var(--surface); border: 1px solid var(--bd); border-radius: 12px; overflow: hidden; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  border-bottom: 1px solid #F5F5F5;
}
.price-row:last-child { border-bottom: none; }
.price-zone { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--t2); }
.price-zone i { font-size: 22px; color: var(--t4); }
.price-val { font-size: 15px; font-weight: 800; color: var(--or); }

/* Техника */
.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vitem {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 14px 13px;
  font-size: 13px;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vitem.wide { grid-column: span 2; }
.vitem i { font-size: 24px; color: var(--or); flex-shrink: 0; }

/* Гарантии */
.glist { display: flex; flex-direction: column; gap: 8px; }
.gitem {
  background: var(--surface);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 14px 15px;
  font-size: 13px;
  color: var(--t2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.gitem i { font-size: 24px; color: var(--or); flex-shrink: 0; margin-top: 1px; }

/* -- BOTTOM CTA -- */
.btm-cta {
  background: var(--surface);
  border-top: 1px solid var(--bd);
  padding: 26px 20px 36px;
  text-align: center;
}
.btm-cta p { font-size: 14px; color: var(--t3); margin-bottom: 16px; }

/* -- FOOTER -- */
footer {
  background: #EFEEE9;
  border-top: 1px solid var(--bd2);
  padding: 24px 20px 48px;
}

.foot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.foot-logo { font-size: 16px; font-weight: 800; color: var(--or); letter-spacing: 0px; }
.foot-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--t2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.foot-phone i { font-size: 16px; color: var(--or); }

.foot-divider { border: none; border-top: 1px solid var(--bd2); margin-bottom: 16px; }

.foot-legal {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.9;
  margin-bottom: 18px;
}
.foot-legal-row { display: flex; gap: 6px; }
.foot-legal-label { color: var(--t4); min-width: 56px; flex-shrink: 0; }
.foot-legal-val { color: var(--t3); }

.foot-links { display: flex; flex-direction: column; margin-bottom: 16px; }
.foot-links a {
  font-size: 12px;
  color: var(--t3);
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid var(--bd2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-links a i { font-size: 15px; color: var(--t4); }
.foot-links a:last-child { border-bottom: none; }

.foot-copy { font-size: 10px; color: #C0BEB8; line-height: 1.8; }

/* -- FAB -- */
.fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
  transition: bottom 0.3s ease, transform 0.15s;
}
.fab i { font-size: 28px; }
.fab:active { transform: scale(0.92); }
.fab::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.25);
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  0%   { opacity: 1; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.4); }
  100% { opacity: 0; }
}

/* -- COOKIE -- */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--bd);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  font-size: 10px;
  color: var(--t3);
}
.cookie-bar p { flex: 1; line-height: 1.5; }
.cookie-bar a { color: var(--or); }
.cookie-ok {
  background: var(--or);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 480px) { h1 { font-size: 32px; } }
@media (min-width: 768px) {
  body { max-width: 480px; margin: 0 auto; box-shadow: 0 0 40px rgba(0,0,0,0.06); }
  .fab { right: calc(50% - 240px + 20px); }
  .cookie-bar { max-width: 480px; left: 50%; transform: translateX(-50%); border-left: 1px solid var(--bd); border-right: 1px solid var(--bd); }
}
