:root {
  --font-heading: "Trebuchet MS", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --copper: #F23600;
  --copper-dark: #9D2300;
  --copper-soft: #FFB15A;
  --graphite: #151515;
  --graphite-2: #212121;
  --cream: #FFF7F2;
  --line: rgba(242, 54, 0, 0.24);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: #2f2f2f;
  background: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 54, 0, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(255, 177, 90, 0.13), transparent 24rem),
    #ffffff;
}

a { text-decoration: none; }

p, li { font-size: 16px; line-height: 1.72; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  line-height: 1.06;
}

h1 { font-size: clamp(39px, 6vw, 76px); }
h2 { font-size: clamp(31px, 4vw, 52px); }
h3, h4 { font-size: clamp(22px, 2.2vw, 29px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 21, 21, 0.94);
  backdrop-filter: blur(18px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img { width: 42px; height: 42px; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
}

.desktop-nav a, .mobile-menu a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  opacity: 0.9;
}

.desktop-nav a:hover, .mobile-menu a:hover { color: var(--copper-soft); }

.phone-button, .hero-phone, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.42), 0 16px 36px rgba(157, 35, 0, 0.38);
  animation: pulseGlow 2.2s infinite;
  transition: transform 180ms ease, filter 180ms ease;
}

.phone-button:hover, .hero-phone:hover, .cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hamburger {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.26);
  background: transparent;
  color: #ffffff;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.mobile-menu {
  display: none;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 0.8rem 0 0.2rem;
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.72rem;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(10,10,10,0.72), rgba(10,10,10,0.78));
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 46%;
  background: radial-gradient(ellipse at center, rgba(242,54,0,0.46), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 6rem 1rem 4.5rem;
  text-align: center;
}

.hero h1, .hero p { color: #ffffff; }

.hero h1 { margin: 1rem auto 0.8rem; max-width: 980px; }

.hero-copy {
  max-width: 900px;
  margin: 1.25rem auto 1.6rem;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}

.eyebrow, .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  background: rgba(242,54,0,0.1);
  color: #9D2300;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0 auto;
  color: #ffffff;
  border-color: rgba(255,177,90,0.5);
  background: rgba(242,54,0,0.3);
}

.stars {
  margin: 0.5rem 0 1rem;
  color: var(--copper-soft);
  font-size: 25px;
  letter-spacing: 0.18em;
}

.gallery-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem auto 1.5rem;
}

.gallery-icons img {
  width: auto;
  height: 48px;
  max-width: 118px;
  object-fit: contain;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-area {
  margin-top: 1.3rem;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 1rem; }

.section { padding: 5.5rem 0; }

.section-dark {
  position: relative;
  background: radial-gradient(circle at 12% 10%, rgba(242,54,0,0.18), transparent 28rem), #151515;
  color: #f7f7f7;
}

.section-dark p, .section-dark li { color: rgba(255,255,255,0.82); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff; }

.section-alt { background: var(--cream); }

.section-heading { max-width: 850px; margin-bottom: 2.2rem; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.center .section-badge { margin-left: auto; margin-right: auto; }

.heading-rule {
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--copper), var(--copper-soft));
}

.section-heading.center .heading-rule { margin-left: auto; margin-right: auto; }

.intro-panel {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(242,54,0,0.18);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 24px 70px rgba(21,21,21,0.08);
}

.intro-panel img, .split-image img, .process-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  padding: 1.4rem;
  min-height: 100%;
  border: 1px solid rgba(242,54,0,0.18);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(21,21,21,0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,54,0,0.5);
  box-shadow: 0 24px 60px rgba(157,35,0,0.16);
}

.service-icon, .feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border: 1px solid rgba(242,54,0,0.36);
  background: linear-gradient(135deg, rgba(242,54,0,0.09), rgba(255,177,90,0.12));
  color: var(--copper-dark);
}

.service-icon svg, .feature-icon svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.service-card ul, .problem-list { padding-left: 1.1rem; }

.split {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 2rem;
  align-items: center;
}

.split.reverse { grid-template-columns: 30% 70%; }

.split-card {
  padding: 2rem;
  border-left: 4px solid var(--copper);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.light-card {
  background: #ffffff;
  border: 1px solid rgba(242,54,0,0.17);
  box-shadow: 0 20px 60px rgba(21,21,21,0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  counter-increment: process;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 0.9rem;
  color: var(--copper-soft);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
}

.reviews-shell { position: relative; }

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: start;
  padding: 1.45rem;
  border: 1px solid rgba(242,54,0,0.18);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(21,21,21,0.07);
}

.review-card strong { display: block; color: #111827; font-size: 18px; margin-bottom: 0.6rem; }
.review-card .stars { margin: 0 0 0.6rem; font-size: 16px; letter-spacing: 0.08em; }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.slider-controls button {
  width: 50px;
  height: 44px;
  border: 1px solid rgba(242,54,0,0.35);
  background: #151515;
  color: #ffffff;
  font-size: 22px;
}

.cta-band {
  padding: 3rem 2rem;
  border: 1px solid rgba(255,177,90,0.34);
  background: linear-gradient(135deg, rgba(242,54,0,0.92), rgba(157,35,0,0.98));
  color: #ffffff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(157,35,0,0.32);
}

.cta-band h2, .cta-band p { color: #ffffff; }
.cta-band .heading-rule { margin-left: auto; margin-right: auto; }
.cta-band .cta-button { background: #151515; border-color: rgba(255,255,255,0.22); }

.payment-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.payment-item, .feature-card {
  padding: 1.4rem;
  border: 1px solid rgba(242,54,0,0.2);
  background: #ffffff;
}

.site-footer {
  padding: 3.5rem 0 2rem;
  background: #111111;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.site-footer p, .site-footer a, .site-footer li { font-size: 14px; color: rgba(255,255,255,0.78); }
.site-footer h3, .site-footer h4 { color: #ffffff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.footer-links { display: grid; gap: 0.45rem; }

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  padding: 0.72rem 0.8rem calc(0.72rem + env(safe-area-inset-bottom));
  background: rgba(17,17,17,0.96);
  transform: translateY(105%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.38), 0 16px 36px rgba(157, 35, 0, 0.36); }
  70% { box-shadow: 0 0 0 13px rgba(255,255,255,0), 0 16px 36px rgba(157, 35, 0, 0.36); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 16px 36px rgba(157, 35, 0, 0.36); }
}

@media (min-width: 768px) and (max-width: 900px) {
  .header-grid { grid-template-columns: 1fr auto; }
  .brand { order: 1; }
  .header-phone { order: 2; }
  .desktop-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .desktop-nav { display: none; }
  .hamburger { display: block; justify-self: end; }
  .header-grid { grid-template-columns: 1fr auto; }
  .header-phone { grid-column: 1 / -1; justify-self: stretch; width: 100%; }
}

@media (max-width: 767px) {
  h1 { font-size: clamp(39px, 12vw, 53px); }
  h2 { font-size: clamp(31px, 9vw, 37px); }
  .hero { min-height: 720px; }
  .hero-inner { padding-top: 4.8rem; }
  .hero-copy { font-size: 16px; }
  .brand { font-size: 24px; max-width: 245px; }
  .brand img { width: 38px; height: 38px; }
  .section { padding: 4rem 0; }
  .intro-panel, .split, .split.reverse { grid-template-columns: 1fr; }
  .service-grid, .process-grid, .payment-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .review-track { grid-auto-columns: 88%; }
  .sticky-call { display: block; }
  .sticky-call.is-visible { transform: translateY(0); opacity: 1; }
  body { padding-bottom: 76px; }
}

@media (min-width: 768px) {
  .sticky-call, .sticky-call.is-visible { display: none !important; }
}

@media (max-width: 430px) {
  .header-grid { gap: 0.65rem; }
  .phone-button { padding-left: 0.75rem; padding-right: 0.75rem; }
  .gallery-icons img { height: 44px; max-width: 100px; }
}

@media (max-width: 374px) {
  .brand { font-size: 22px; }
  .sticky-call a { font-size: 15px; }
}
