:root {
  --bg: #06080c;
  --bg-soft: #0b1017;
  --panel: rgba(12, 16, 24, 0.9);
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.08);
  --text: #f4f1ea;
  --muted: #c5ccd5;
  --orange: #f56f22;
  --orange-2: #ff8d3f;
  --shadow: 0 18px 40px rgba(0,0,0,.38);
  --radius: 22px;
  --site-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,120,30,.10), transparent 20%),
    radial-gradient(circle at 100% 10%, rgba(255,120,30,.14), transparent 18%),
    linear-gradient(180deg, #040608 0%, #070a10 100%);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05), transparent 12%, transparent 88%, rgba(255,255,255,.05)),
    url('images/texture.png') center/720px repeat;
  mix-blend-mode: screen;
}

.container {
  width: min(calc(100% - 32px), var(--site-width));
  margin: 0 auto;
}

.section-divider {
  position: relative;
  padding: 22px 0;
}
.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}
.section-divider::before { top: 0; }
.section-divider::after { bottom: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,7,10,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img {
  width: clamp(210px, 22vw, 300px);
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--orange-2); }
.nav-call {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* HERO */
.hero {
  padding-top: 28px;
}
.hero-stage {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(5,7,10,.78) 0%, rgba(5,7,10,.55) 30%, rgba(5,7,10,.18) 62%, rgba(5,7,10,.05) 100%),
    url('images/hero-bg.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,125,30,.32), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 68px 48px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #efc4a8;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1,
.section-heading h2,
.trust h2,
.cta h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .93;
}
.hero h1 {
  font-size: clamp(3.7rem, 5vw, 5.8rem);
  max-width: 8ch;
  text-shadow: 0 5px 18px rgba(0,0,0,.55);
}
.hero h1 span,
.section-heading span,
.trust span {
  color: var(--orange);
}
.hero-subline {
  margin: 16px 0 0;
  color: rgba(255,255,255,.96);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 38rem;
  text-shadow: 0 3px 14px rgba(0,0,0,.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7a2b 0%, #c53b11 100%);
}
.btn-secondary {
  color: #fff;
  background: linear-gradient(180deg, rgba(17,20,27,.92), rgba(12,14,19,.96));
  box-shadow: 0 10px 25px rgba(0,0,0,.28);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(245,111,34,.45);
  color: #ffd3b4;
}

/* services etc */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-chip {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}
.service-chip::before {
  content: "✓";
  color: var(--orange);
  margin-right: 10px;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}
.section-heading h2,
.trust h2,
.cta h2 {
  font-size: clamp(2.7rem, 4.3vw, 4rem);
}
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.build-card {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.build-tag {
  margin: 0 0 10px;
  color: #dbe2ea;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
}
.build-card img {
  width: 100%;
  aspect-ratio: 1 / .8;
  object-fit: cover;
  border-radius: 12px;
}
.build-card h3 {
  margin: 12px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.trust-copy p {
  margin: 12px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}
.benefit-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}
.benefit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 1.25rem;
}

.cta-shell {
  text-align: center;
  padding: 8px 0;
}
.cta-actions { justify-content: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.stars {
  margin-top: 14px;
  color: #f7a63c;
  letter-spacing: .25em;
}

.site-footer {
  padding-bottom: 30px;
}
.footer-inner {
  text-align: center;
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,120,30,.16), rgba(255,255,255,.03));
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
}
.footer-address,
.footer-phone,
.footer-service {
  margin: 8px 0 0;
  color: var(--muted);
}
.footer-phone a:hover { color: var(--orange-2); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(8,12,18,.97);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }

  .hero-stage {
    min-height: 520px;
    background-position: 65% center;
  }
  .hero-content {
    padding: 52px 34px;
    width: min(100%, 520px);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .build-grid,
  .benefit-list,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--site-width)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 190px; }

  .hero-stage {
    min-height: 590px;
    background:
      linear-gradient(180deg, rgba(5,7,10,.56) 0%, rgba(5,7,10,.18) 30%, rgba(5,7,10,.58) 100%),
      linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
      url('images/hero-bg.jpg') 68% center / cover no-repeat;
  }
  .hero-content {
    width: 100%;
    padding: 28px 20px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .eyebrow {
    font-size: .72rem;
    max-width: 18rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
    max-width: 7.5ch;
  }
  .hero-subline {
    font-size: 1.1rem;
    max-width: 18rem;
  }

  .services-grid,
  .build-grid,
  .reviews-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .service-chip { min-height: 52px; }
  .section-heading h2,
  .trust h2,
  .cta h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
  .trust-copy p {
    font-size: 1.5rem;
  }
  .btn {
    width: 100%;
  }
  .hero-actions { flex-direction: column; }
}


/* CONTACT PAGE */
.contact-page {
  padding-top: 28px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    radial-gradient(circle at 100% 0%, rgba(245,111,34,.18), transparent 24%),
    linear-gradient(180deg, rgba(8,12,18,.94), rgba(8,12,18,.88));
}

.contact-copy {
  padding: 14px 10px 14px 6px;
}

.contact-copy h1 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .93;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.contact-intro {
  margin: 16px 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #efc4a8;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(4,7,12,.85);
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(245,111,34,.55);
  box-shadow: 0 0 0 3px rgba(245,111,34,.12);
}

.form-actions {
  margin-top: 18px;
}

.form-actions .btn {
  min-width: 180px;
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-shell {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-form {
    padding: 14px;
    border-radius: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions .btn {
    width: 100%;
  }
}


/* PAGE HERO */
.page-hero {
  padding-top: 28px;
}
.page-hero-shell {
  padding: 30px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    radial-gradient(circle at 100% 0%, rgba(245,111,34,.18), transparent 24%),
    linear-gradient(180deg, rgba(8,12,18,.94), rgba(8,12,18,.88));
}
.page-hero-shell h1 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .93;
  font-size: clamp(3rem, 5vw, 5.2rem);
}
.page-hero-shell p {
  margin: 14px 0 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-panel,
.review-panel {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.service-panel h2,
.review-panel h2 {
  margin: 0 0 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.service-panel p,
.review-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.service-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  color: #e7edf5;
  margin: 10px 0 0;
}
.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-logo img {
  width: min(260px, 72vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

@media (max-width: 980px) {
  .service-page-grid,
  .reviews-page-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .page-hero-shell {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.g-recaptcha {
    margin-bottom: 10px;
}