:root {
  --bg: #0b0f14;
  --text: #ffffff;
  --muted: rgba(255,255,255,.75);
  --soft: rgba(255,255,255,.1);
  --accent: #ff7a00;
  --panel: #202832;
  --panel-dark: rgba(32,40,50,.58);
  --line: rgba(255,255,255,.14);
  --max: 1220px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,122,0,.18), transparent 62%);
  pointer-events: none;
  z-index: 2;
  opacity: .72;
  mix-blend-mode: screen;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 48px), 1420px);
  margin: 20px auto 0;
  padding: 16px 20px;
  border: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, margin .35s ease;
}
.site-header.is-scrolled {
  background: rgba(11,15,20,.64);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.logo {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}
.logo::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 30px rgba(255,122,0,.9);
}
.logo span { color: var(--accent); }
.main-nav {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.main-nav a {
  transition: color .25s ease;
}
.main-nav a:hover { color: var(--text); }
.header-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255,122,0,.58);
  color: var(--text);
  background: rgba(255,122,0,.1);
  transition: background .25s ease, transform .25s ease;
}
.header-cta:hover {
  background: rgba(255,122,0,.22);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 0 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px 0;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(11,15,20,.95) 0%, rgba(11,15,20,.72) 45%, rgba(11,15,20,.22) 100%),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=2200&q=88") center/cover;
  transform: scale(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,15,20,.16), var(--bg) 96%),
    radial-gradient(circle at 75% 48%, rgba(255,122,0,.22), transparent 28%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .55fr);
  gap: 64px;
  align-items: center;
  padding-top: 94px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(50px, 7vw, 84px);
  line-height: 1.4;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 68px);
  line-height: .98;
  font-weight: 850;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.6;
  margin-bottom: 28px;
}
.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 13px 22px;
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.88);
}
.proof-list span {
  position: relative;
  padding-left: 27px;
}
.proof-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}
.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.hero-stats {
  background: linear-gradient(145deg, rgba(32,40,50,.78), rgba(11,15,20,.52));
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.hero-stats div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.hero-stats div:first-child { padding-top: 0; }
.hero-stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.hero-stats strong {
  display: block;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-stats span { color: var(--muted); }
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.section {
  padding: clamp(86px, 10vw, 150px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 54px;
}
.section-head.wide h2 { max-width: 1020px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 300px;
  padding: 34px;
  background: rgba(255,255,255,.025);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, transform .35s ease;
}
.service-card:hover {
  background: var(--panel);
  transform: translateY(-8px);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
  color: var(--accent);
}
.service-top span { font-weight: 800; }
.service-top i {
  font-style: normal;
  font-size: 42px;
  color: rgba(255,255,255,.76);
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.metrics {
  background: linear-gradient(90deg, #101720, #151c24);
  padding: 64px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.metric {
  background: #111820;
  padding: 44px 30px;
}
.metric strong {
  display: block;
  color: var(--accent);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  margin-bottom: 12px;
}
.metric span {
  color: var(--muted);
  font-weight: 700;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--panel);
  grid-column: span 2;
  grid-row: span 2;
}
.project-card.tall { grid-row: span 3; }
.project-card.wide-card { grid-column: span 2; }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transition: transform .7s ease, filter .7s ease;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.84));
  opacity: .86;
}
.project-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.08);
}
.project-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  transform: translateY(18px);
  transition: transform .35s ease;
}
.project-card:hover .project-info { transform: translateY(0); }
.project-info h3 {
  font-size: clamp(25px, 2.2vw, 38px);
  margin-bottom: 8px;
}
.project-info p {
  color: var(--muted);
  margin-bottom: 18px;
}
.project-info a {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.project-card:hover a {
  opacity: 1;
  transform: translateY(0);
}
.about {
  background: #0f151c;
}
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(255,122,0,.42);
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 28px 0;
}
.about-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.about-list li {
  padding: 18px 20px 18px 48px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  position: relative;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,.85), transparent);
}
.step {
  position: relative;
  padding-top: 88px;
}
.step span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,122,0,.58);
  background: var(--bg);
  color: var(--accent);
  font-weight: 900;
}
.step h3 {
  max-width: 150px;
  font-size: 20px;
  margin-bottom: 0;
}
.testimonials {
  background: #101720;
  overflow: hidden;
}
.testimonial-slider {
  overflow: hidden;
}
.testimonial {
  height: auto;
  padding: 32px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
}
.testimonial img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
}
.testimonial div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.testimonial span {
  color: var(--accent);
  font-weight: 900;
}
.testimonial p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 17px;
  font-weight: 900;
}
.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 72px;
  align-items: start;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.accordion-item span {
  display: block;
  position: relative;
  padding-right: 42px;
  font-size: 21px;
  font-weight: 800;
}
.accordion-item span::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
  transition: transform .25s ease;
}
.accordion-item.is-open span::after {
  transform: rotate(45deg);
}
.accordion-item p {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  transition: max-height .35s ease, margin-top .35s ease;
}
.accordion-item.is-open p {
  max-height: 140px;
  margin-top: 16px;
}
.cta {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(11,15,20,.98), rgba(11,15,20,.82)),
    url("https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&w=2200&q=84") center/cover fixed;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 500px);
  gap: 80px;
  align-items: center;
}
.cta h2 {
  max-width: 850px;
  font-size: clamp(42px, 5.2vw, 82px);
}
.contact-lines {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 30px;
}
.contact-lines a {
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.cta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.cta li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 10px;
}
.lead-form {
  padding: 34px;
  background: rgba(32,40,50,.64);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
}
.lead-form label {
  display: block;
  margin-bottom: 18px;
}
.lead-form span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(11,15,20,.78);
  color: var(--text);
  padding: 16px;
  outline: 0;
  transition: border-color .25s ease, background .25s ease;
}
.lead-form textarea {
  resize: vertical;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  background: rgba(11,15,20,.95);
}
.lead-form .btn {
  width: 100%;
  border-radius: 0;
  cursor: pointer;
}
.form-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.5;
}
.footer {
  padding: 70px 0 26px;
  background: #080b0f;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}
.footer p,
.footer a,
.footer span {
  display: block;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
}
.footer p { max-width: 330px; margin-top: 18px; }
.footer h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer a:hover { color: var(--accent); }
.copyright {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.45);
  font-size: 14px;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
}
@media (max-width: 1200px) {
  .main-nav { gap: 15px; }
  .hero-grid { gap: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
  .timeline::before { display: none; }
}
@media (max-width: 992px) {
  .site-header { width: min(calc(100% - 28px), 1420px); }
  .main-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle { display: block; }
  .main-nav.is-open {
    display: grid;
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    padding: 26px;
    background: rgba(11,15,20,.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    font-size: 22px;
    z-index: 22;
  }
  .hero { min-height: auto; padding: 150px 0 90px; }
  .hero-grid,
  .about-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats div {
    padding: 0 18px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .hero-stats div:last-child { border-right: 0; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .metrics-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }
  .project-card,
  .project-card.wide-card {
    grid-column: span 1;
  }
  .about-image,
  .about-image img { min-height: 480px; height: 480px; }
}
@media (max-width: 768px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .cursor-glow { display: none; }
  h1 {
    font-size: clamp(36px, 10.6vw, 52px);
    line-height: .95;
    overflow-wrap: anywhere;
  }
  h2 { font-size: clamp(31px, 9vw, 48px); }
  .proof-list,
  .services-grid,
  .metrics-grid,
  .masonry,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stats div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-stats div:first-child { padding-top: 0; }
  .project-card,
  .project-card.tall,
  .project-card.wide-card {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 360px;
  }
  .about-image::before { display: none; }
  .about-image,
  .about-image img { min-height: 390px; height: 390px; }
  .cta {
    background-attachment: scroll;
  }
  .lead-form { padding: 24px; }
}
@media (max-width: 576px) {
  .site-header { padding: 12px 14px; }
  .hero { padding-top: 132px; }
  .hero-actions .btn { width: 100%; }
  .service-card { min-height: auto; padding: 26px; }
  .service-top { margin-bottom: 46px; }
  .metric { padding: 34px 24px; }
  .section { padding: 76px 0; }
  .testimonial { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
