:root {
  --orange: #f97316;
  --orange-dark: #c2410c;
  --soft-orange: #fff7ed;
  --border: #fed7aa;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --shadow: 0 10px 30px rgba(249, 115, 22, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.8px;
  color: var(--text);
}

.logo span {
  color: var(--orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--orange);
}

.header-btn,
.btn,
.contact-form button {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
}

.header-btn:hover,
.btn:hover,
.contact-form button:hover {
  background: var(--orange-dark);
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, var(--soft-orange) 100%);
  padding: 90px 22px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--orange-dark);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  color: var(--text);
}

.hero p {
  margin: 0 0 30px;
  max-width: 720px;
  font-size: 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--orange-dark);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  background: var(--soft-orange);
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 24px;
}

.stat {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.stat:first-of-type {
  border-top: none;
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 72px 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.section.soft {
  max-width: none;
  background: var(--soft-orange);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.soft .section-heading,
.section.soft .category-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  color: var(--text);
}

.section-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.soi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap: 12px;
}

.soi-grid a {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--orange-dark);
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  border-radius: 14px;
  padding: 15px 10px;
  box-shadow: 0 5px 18px rgba(249, 115, 22, 0.07);
}

.soi-grid a:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  font-weight: 900;
  color: var(--orange-dark);
  box-shadow: var(--shadow);
}

.business-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.business-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.business-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 24px;
}

.business-list {
  display: grid;
  gap: 16px;
}

.business-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.business-list h3 {
  margin: 0 0 8px;
  color: var(--orange-dark);
}

.business-list p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  background: #ffffff;
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
}

.site-footer {
  background: var(--soft-orange);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 28px 20px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 850px) {
  .header-inner {
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding: 70px 20px;
  }

  .hero-inner,
  .business-wrap {
    grid-template-columns: 1fr;
  }

  .hero p {
    font-size: 18px;
  }
}