* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
}

.hero {
  background: #0a0a0a;
  padding: 80px 24px 72px;
  text-align: center;
  border-bottom: 1px solid #1f1f1f;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.4);
  color: #ffaa33;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero h1 span.orange {
  color: #ff8c00;
}

.hero h1 span.yellow {
  color: #ffd700;
}

.hero p {
  font-size: 17px;
  color: #aaa;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  opacity: 0.92;
}

.cta-sub {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

.stats {
  background: #111;
  padding: 56px 24px;
  border-bottom: 1px solid #1f1f1f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  background: #0a0a0a;
  padding: 32px 20px;
  text-align: center;
}

.stat-item:first-child {
  border-radius: 12px 0 0 12px;
}

.stat-item:last-child {
  border-radius: 0 12px 12px 0;
}

.stat-num {
  font-size: 38px;
  font-weight: 700;
  color: #ff8c00;
  line-height: 1;
}

.stat-num span {
  color: #ffd700;
}

.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  line-height: 1.4;
}

.services {
  padding: 72px 24px;
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
}

.section-label {
  text-align: center;
  font-size: 12px;
  color: #ff8c00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 15px;
  color: #888;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(255, 140, 0, 0.4);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 140, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.results {
  background: #111;
  padding: 72px 24px;
  border-bottom: 1px solid #1f1f1f;
}

.results-inner {
  max-width: 900px;
  margin: 0 auto;
}

.results-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.result-box {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 24px;
}

.result-box .big {
  font-size: 32px;
  font-weight: 700;
  color: #ff8c00;
}

.result-box .desc {
  font-size: 14px;
  color: #999;
  margin-top: 6px;
  line-height: 1.5;
}

.result-box.accent {
  border-color: rgba(255, 140, 0, 0.3);
  background: rgba(255, 140, 0, 0.05);
}

.result-box.accent .big {
  color: #ffd700;
}

.testimonial {
  background: #0a0a0a;
  padding: 72px 24px;
  border-bottom: 1px solid #1f1f1f;
}

.testi-inner {
  max-width: 700px;
  margin: 0 auto;
}

.testi-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-left: 3px solid #ff8c00;
  border-radius: 12px;
  padding: 32px 28px;
  margin-top: 40px;
}

.testi-text {
  font-size: 17px;
  color: #ddd;
  line-height: 1.75;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #1f1f1f;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ffd700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #0a0a0a;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.testi-role {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.process {
  background: #111;
  padding: 72px 24px;
  border-bottom: 1px solid #1f1f1f;
}

.steps {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #1a1a1a;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.4);
  color: #ff8c00;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.final-cta {
  background: #0a0a0a;
  padding: 80px 24px;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.25;
}

.final-cta p {
  font-size: 16px;
  color: #888;
  max-width: 440px;
  margin: 0 auto 36px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer {
  background: #0a0a0a;
  border-top: 1px solid #1f1f1f;
  padding: 24px;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: #555;
}

svg.icon path,
svg.icon rect,
svg.icon circle,
svg.icon polyline,
svg.icon line {
  stroke: #ff8c00;
}

@media (max-width: 600px) {
  .results-row {
    grid-template-columns: 1fr;
  }

  .stat-item:first-child {
    border-radius: 12px 12px 0 0;
  }

  .stat-item:last-child {
    border-radius: 0 0 12px 12px;
  }
}