/* ============ Reset & Base ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --orange: #FF6B1A;
  --orange-dark: #E5530A;
  --yellow: #FFB800;
  --yellow-light: #FFD66B;
  --gradient: linear-gradient(135deg, #FFB800 0%, #FF6B1A 100%);
  --dark: #1A1A1A;
  --gray: #6B7280;
  --gray-light: #F5F5F5;
  --gray-bg: #FAFAFA;
  --shadow: 0 8px 24px rgba(255, 107, 26, 0.15);
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gradient);
  color: #FFFFFF;
  transition: transform 0.15s ease;
}
.header-phone:hover { transform: translateY(-1px); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 107, 26, 0.15) 0%, transparent 50%),
    #FFFFFF;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 26, 0.1);
  color: var(--orange-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 26, 0.25);
}
.btn-secondary {
  background: #FFFFFF;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-secondary:hover {
  background: var(--dark);
  color: #FFFFFF;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.hero-stat-num {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* ============ Sections ============ */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray);
}

/* ============ Advantages ============ */
.advantages {
  background: var(--gray-bg);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.adv-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}
.adv-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
}
.adv-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.adv-text {
  color: var(--gray);
  font-size: 16px;
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: #FFFFFF;
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ About ============ */
.about {
  background: var(--gray-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.about-text h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: #FFFFFF;
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.about-stat {
  padding: 16px;
}
.about-stat-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-label {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.4;
}

/* ============ Steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 24px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid var(--gray-light);
}
.step-num {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.step-title {
  font-size: 19px;
  font-weight: 700;
  margin: 16px 0 10px;
}
.step-text {
  color: var(--gray);
  font-size: 15px;
}

/* ============ CTA ============ */
.cta {
  background: var(--gradient);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta::before { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta::after { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.cta-inner { position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta p {
  font-size: 18px;
  margin-bottom: 36px;
  opacity: 0.95;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background: #FFFFFF;
  color: var(--orange-dark);
}
.cta .btn-primary:hover {
  background: var(--dark);
  color: #FFFFFF;
}
.cta .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cta .btn-secondary:hover {
  background: #FFFFFF;
  color: var(--orange-dark);
}

/* ============ Footer ============ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; font-size: 15px; }
.footer-list a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.footer-list a:hover { color: var(--yellow-light); }
.footer-requisites {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.footer-requisites b { color: rgba(255, 255, 255, 0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============ Doc pages (policy, order) ============ */
.doc-page {
  background: #FFFFFF;
}
.doc-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
.doc-back {
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
}
.doc-back:hover { color: var(--orange-dark); }
.doc-brand {
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.doc-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}
.doc-content h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.doc-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 16px;
  letter-spacing: -0.3px;
}
.doc-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #2A2A2A;
}
.doc-content ul {
  margin: 12px 0 16px 24px;
  color: #2A2A2A;
}
.doc-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.doc-requisites {
  margin-top: 48px;
  padding: 24px;
  background: var(--gray-bg);
  border-radius: 16px;
  border-left: 4px solid var(--orange);
}
.doc-requisites p { margin-bottom: 6px; font-size: 15px; }
.doc-footer {
  text-align: center;
  padding: 32px 24px 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.doc-footer a {
  color: var(--orange);
  font-weight: 600;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .header-phone span { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 48px 0 72px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
