:root {
  --orange: #f37021;
  --orange-dark: #c65a15;
  --black: #050505;
  --dark: #111111;
  --gray: #1f1f1f;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --text: #d6d6d6;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 88%);
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .3s ease;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.brand span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--orange);
}

.nav-btn {
  background: var(--orange);
  color: var(--black) !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: var(--orange);
  border: none;
  color: var(--black);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 25px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero.png") center/cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 45%, rgba(243,112,33,.35), transparent 35%),
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
  padding-top: 90px;
}

.eyebrow,
.tag,
.section-head span,
.about-box span {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  margin-bottom: 22px;
}

h3 {
  font-size: 24px;
  font-weight: 900;
}

.hero-content p {
  max-width: 690px;
  color: var(--text);
  font-size: 21px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
}

.btn-primary:hover {
  background: #ff8a34;
  transform: translateY(-3px);
}

.btn-light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
}

.btn-light:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.info-strip {
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 22px 0;
}

.section {
  padding: 105px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-head.light h2 {
  color: var(--white);
}

.feature-grid,
.stihl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card,
.stihl-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 220px;
  box-shadow: var(--shadow);
  transition: .3s ease;
}

.feature-card:hover,
.stihl-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243,112,33,.7);
}

.feature-card h3,
.stihl-card h3 {
  color: var(--orange);
  margin-bottom: 12px;
}

.feature-card p,
.stihl-card p,
.service p,
.empty-box p,
.about-box p,
.contact p,
.footer p {
  color: var(--text);
}

.stihl-section {
  background: linear-gradient(135deg, #151515, #050505);
}

.stihl-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service {
  background: var(--black);
}

.service-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  background: rgba(255,255,255,.08);
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  padding: 20px 24px;
  font-weight: 900;
}

.empty-box {
  background: linear-gradient(135deg, rgba(243,112,33,.2), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 780px;
}

.empty-box h3 {
  margin-bottom: 12px;
}

.about {
  background: #111;
}

.about-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
  border-radius: 36px;
  padding: 70px;
}

.about-box span,
.about-box p {
  color: var(--black);
}

.about-box p {
  max-width: 900px;
  font-size: 19px;
  font-weight: 650;
}

.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-form {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 16px;
  font: inherit;
}

.contact-form button {
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 999px;
  padding: 17px 26px;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  background: #030303;
  padding-top: 70px;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 22px;
  color: #777;
}

.map-box {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  min-height: 380px;
}

.map-box iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.success-box {
    background: #22c55e;
    color: white;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 700;
}

.error-box {
    background: #ef4444;
    color: white;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 700;
}

.privacy-link {
  margin-top: 15px;
  text-align: center;
}

.privacy-link a {
  color: #f37021;
  text-decoration: none;
  font-size: 14px;
}

.privacy-link a:hover {
  text-decoration: underline;
}