:root {
  --bg: #ffffff;
  --surface: #f7f7f9;
  --surface-2: #f2f4f7;
  --dark: #15181d;
  --dark-2: #232933;
  --text: #222a33;
  --muted: #68707d;
  --primary: #ff7a00;
  --primary-dark: #e46500;
  --border: rgba(21, 24, 29, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.2; }
.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }
.section { padding: 5rem 0; }
.bg-light { background: var(--surface); }
.bg-dark { background: linear-gradient(145deg, var(--dark), var(--dark-2)); color: #fff; }
.light { color: #fff; }
.section-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
}
.section-tag-light { color: #ffb870; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--primary); color: #fff; }
.btn-solid:hover { background: var(--primary-dark); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-light { background: #fff; color: var(--dark); }
.btn-dark-outline { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
.full-width { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo { height: 62px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 700;
  color: #27303b;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.site-nav a:hover::after { width: 100%; }
.nav-cta { white-space: nowrap; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11,14,18,0.88) 0%, rgba(11,14,18,0.68) 42%, rgba(11,14,18,0.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero h1 span { color: #ff9b3d; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 52rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0 2.2rem; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-points div {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-points strong { display: block; margin-bottom: 0.3rem; }
.hero-points span { color: rgba(255,255,255,0.82); font-size: 0.95rem; }

.strip {
  margin-top: -3.2rem;
  position: relative;
  z-index: 2;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.strip-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.strip-card h3 { color: var(--dark); margin-bottom: 0.45rem; }
.strip-card p { color: var(--muted); margin: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.mini-grid,
.cards-grid,
.features-grid,
.process-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}
.mini-grid { grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; }
.mini-card,
.service-card,
.feature,
.process-step,
.quote-form,
.about-panel,
.radius-box,
.grade-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.mini-card { padding: 1.2rem; }
.about-panel { padding: 2rem; background: linear-gradient(180deg, #ffffff, #f7f8fa); }
.about-logo { max-width: 320px; margin-inline: auto; margin-bottom: 1rem; }
.about-contact ul { padding: 0; margin: 0; list-style: none; }
.about-contact li { margin-bottom: 0.8rem; }

.cards-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
.service-card { padding: 1.6rem; }
.service-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,122,0,0.1);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card p { color: var(--muted); }

.grades-grid { align-items: start; }
.grade-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.grade-card { padding: 1.4rem; }
.grade-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.45rem;
}
.grade-card p { color: var(--muted); margin: 0; }

.features-grid { grid-template-columns: repeat(4, 1fr); margin-top: 2rem; }
.feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  padding: 1.5rem;
}
.feature p { color: rgba(255,255,255,0.85); margin: 0; }

.service-area-grid { align-items: center; }
.radius-box { padding: 2rem; text-align: center; }
.radius-circle {
  width: min(360px, 85vw);
  height: min(360px, 85vw);
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,122,0,0.16), rgba(255,122,0,0.08) 45%, rgba(255,122,0,0.03) 62%, transparent 62%),
              linear-gradient(135deg, rgba(255,122,0,0.12), rgba(255,122,0,0.03));
  border: 1px dashed rgba(255,122,0,0.35);
  display: grid;
  place-items: center;
}
.inner-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dark), #303744);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.inner-circle strong { font-size: 2.1rem; }
.inner-circle span { font-size: 1rem; color: rgba(255,255,255,0.85); }
.center-note { margin-top: 1rem; color: var(--muted); }

.process-grid { grid-template-columns: repeat(4, 1fr); margin-top: 2rem; }
.process-step { padding: 1.5rem; position: relative; }
.process-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}
.process-step p { color: var(--muted); margin: 0; }

.contact-grid { align-items: start; }
.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.quote-form {
  padding: 1.8rem;
  background: linear-gradient(180deg, #fff, #fafafa);
}
.quote-form h3 { margin-bottom: 1rem; }
.quote-form label { display: block; margin-bottom: 1rem; font-weight: 700; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  font: inherit;
  color: var(--text);
  background: #fff;
}
.quote-form textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; }

.cta-band {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--primary), #ff8e22);
  color: #fff;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-band h2 { margin-bottom: 0.4rem; }
.cta-band p { margin: 0; }
.cta-band-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.site-footer {
  background: #12151a;
  color: #cbd2dc;
  padding: 3.5rem 0 1.3rem;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  align-items: start;
}
.footer-logo { max-width: 210px; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; margin-bottom: 0.8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.7rem; }
.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 999;
}
.floating-actions a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 14px 28px rgba(255,122,0,0.28);
}

@media (max-width: 1080px) {
  .cards-grid,
  .features-grid,
  .process-grid,
  .hero-points,
  .strip-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding: 6rem 0 4rem; }
  .hero h1 { font-size: clamp(2.35rem, 9vw, 4rem); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .cards-grid,
  .features-grid,
  .process-grid,
  .hero-points,
  .strip-grid,
  .mini-grid,
  .grade-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .cta-band-inner,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn, .btn-light, .btn-dark-outline { width: 100%; }
  .brand-logo { height: 54px; }
  .strip { margin-top: -1.8rem; }
  .floating-actions { right: 0.75rem; bottom: 0.75rem; }
}


.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}
.form-status.success {
  display: block;
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  display: block;
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}
.btn[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
