* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 122, 43, 0.16);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #e0e0e0;
  font-size: 0.97rem;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: #ff7a2b;
}

.nav-call {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #ff7a2b;
  color: #ff7a2b !important;
  font-weight: 700;
}

.nav-call:hover {
  background: #ff7a2b;
  color: #0b0b0b !important;
}

/* HERO */
.hero {
  position: relative;
  padding: 86px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58)),
    #0b0b0b;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 43, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  color: #ff7a2b;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

h3 {
  line-height: 1.2;
}

h4 {
  line-height: 1.2;
}

.hero-text,
.section-subtext,
.info-card p,
.service-card p,
.ba-copy p,
.contact-card p,
.contact-card a,
.footer-grid p,
.footer-grid a,
.service-row-copy p {
  color: #cbcbcb;
}

.hero-text {
  max-width: 650px;
  font-size: 1.05rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ececec;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: #ff7a2b;
  color: #0b0b0b;
}

.btn-primary:hover {
  background: #ff9352;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-secondary:hover {
  border-color: #ff7a2b;
  color: #ff7a2b;
}

.hero-image-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-image-card img {
  height: 540px;
  object-fit: cover;
}

/* SECTIONS */
.section,
.page-hero {
  padding: 86px 0;
}

.page-hero {
  padding-bottom: 44px;
}

.section-dark {
  background: #121212;
}

.quick-section {
  padding-top: 20px;
}

.center {
  text-align: center;
}

.section-head {
  margin-bottom: 34px;
}

/* QUICK GRID */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card,
.service-card,
.contact-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px;
}

.info-card h3,
.service-card h3,
.contact-card h3 {
  color: #ff7a2b;
  margin-bottom: 10px;
}

/* BEFORE/AFTER */
.ba-grid {
  display: grid;
  gap: 28px;
}

.ba-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-image-wrap {
  position: relative;
}

.ba-image-wrap img {
  height: 380px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff7a2b;
  color: #0b0b0b;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.ba-copy {
  padding: 24px;
}

.ba-copy h3 {
  margin-bottom: 10px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-list {
  display: grid;
  gap: 28px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse .service-row-copy {
  direction: ltr;
}

.service-row-image img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.service-row-copy {
  padding: 34px;
}

.check-list {
  list-style: none;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #e0e0e0;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: #ff7a2b;
  font-size: 1.4rem;
}

/* SHOWCASE */
.showcase-section {
  background: #101010;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.showcase-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-card img {
  height: 420px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showcase-card:hover img {
  transform: scale(1.03);
}

.showcase-card.wide {
  grid-column: 1 / -1;
}

.showcase-card.wide img {
  height: 500px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CTA */
.cta-section {
  background: linear-gradient(180deg, #101010, #151515);
}

.cta-box h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .section-subtext {
  max-width: 680px;
  margin: 0 auto 22px;
}

/* FOOTER */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #ff7a2b;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-grid h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: #ff7a2b;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid,
  .quick-grid,
  .service-grid,
  .showcase-grid,
  .footer-grid,
  .contact-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .showcase-card.wide {
    grid-column: auto;
  }

  .hero-image-card img,
  .showcase-card img,
  .showcase-card.wide img,
  .service-row-image img {
    height: auto;
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 14px;
  }

  .nav-call {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 68px 0 54px;
  }

  .section,
  .page-hero {
    padding: 70px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }

  .ba-image-wrap img {
    height: 280px;
  }

  .brand-logo {
    width: 210px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .info-card,
  .service-card,
  .contact-card,
  .ba-copy,
  .service-row-copy {
    padding: 20px;
  }
}