:root {
  --ink: #101522;
  --muted: #566072;
  --line: #d8e0ea;
  --surface: #ffffff;
  --surface-cool: #f4f8fb;
  --blue: #008ce2;
  --blue-dark: #063b72;
  --orange: #f47a18;
  --silver: #dbe5ee;
  --shadow: 0 22px 58px rgba(16, 21, 34, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background: var(--surface);
}

body::selection {
  color: #ffffff;
  background: var(--blue-dark);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 96px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #243044;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 86svh);
  align-items: center;
  overflow: hidden;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 74px;
  color: #ffffff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.84) 0%, rgba(8, 12, 20, 0.7) 36%, rgba(8, 12, 20, 0.22) 75%),
    linear-gradient(0deg, rgba(8, 12, 20, 0.34), rgba(8, 12, 20, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb15c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.55rem, 5.55vw, 5.45rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-intro {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof div {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 21, 34, 0.42);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.section,
.why-section,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section[id],
.contact-section[id] {
  scroll-margin-top: 112px;
}

.section {
  padding: 108px 0 0;
}

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  color: var(--ink);
}

.about-section {
  padding-top: 96px;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 28px;
  align-items: stretch;
}

.about-intro {
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 248, 251, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 0 0, rgba(0, 140, 226, 0.12), transparent 34%);
}

.about-intro h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.about-intro p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.about-intro p + p {
  margin-top: 12px;
}

.about-proof-card {
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(16, 21, 34, 0.95), rgba(6, 59, 114, 0.96)),
    var(--ink);
}

.about-proof-stat strong {
  display: block;
  color: #ffb15c;
  font-size: clamp(4rem, 9vw, 6.2rem);
  line-height: 0.9;
}

.about-proof-stat span {
  display: block;
  max-width: 220px;
  margin-top: 12px;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.about-pill-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.about-pill-grid span,
.service-number,
.project-meta span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-pill-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.services-section {
  padding-top: 112px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  min-height: 276px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(0, 140, 226, 0.13), transparent 36%);
}

.service-card h3 {
  margin-top: 44px;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: stretch;
  margin-top: 112px;
  padding: 68px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 21, 34, 0.98), rgba(6, 59, 114, 0.94)),
    var(--ink);
}

.why-section h2 {
  color: #ffffff;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.benefit-list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  content: "\2713";
  font-size: 0.82rem;
  font-weight: 800;
}

.finish-sample {
  display: grid;
  min-height: 360px;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.78), transparent 10%),
    radial-gradient(circle at 62% 36%, rgba(244, 122, 24, 0.78), transparent 17%),
    radial-gradient(circle at 76% 74%, rgba(0, 140, 226, 0.92), transparent 24%),
    linear-gradient(135deg, #111827 0%, #d8e4ee 42%, #004a86 64%, #f47a18 100%);
  box-shadow: inset 0 0 52px rgba(255, 255, 255, 0.24);
}

.finish-sample span {
  display: block;
  margin: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(16, 21, 34, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.projects-heading {
  display: block;
  max-width: 720px;
}

.projects-heading > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.projects-heading .eyebrow {
  margin-bottom: 10px;
}

.projects-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 21, 34, 0.14);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 380ms ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 12, 20, 0.8));
  content: "";
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-meta {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #ffffff;
}

.project-meta span {
  color: #ffb15c;
}

.project-meta h3 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.testimonial {
  margin: 34px 0 0;
  padding: 34px;
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: var(--surface-cool);
}

.testimonial p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.14;
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 112px;
  padding: 58px;
  border: 1px solid rgba(216, 224, 234, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 248, 251, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 0 0, rgba(0, 140, 226, 0.1), transparent 34%);
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-copy .eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 320px;
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(16, 21, 34, 0.96), rgba(6, 59, 114, 0.96)),
    var(--ink);
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.16);
}

.contact-panel-label {
  margin: 0;
  color: #ffb15c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-panel p:not(.contact-panel-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a {
  display: flex;
  min-height: 56px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 800;
}

.closing-cta {
  max-width: 540px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 52px auto 0;
  padding: 28px 0 34px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer img {
  width: 104px;
  height: 58px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 18px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 128px;
  }

  .about-shell,
  .about-pill-grid,
  .service-grid,
  .why-section,
  .projects-heading,
  .project-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 14px;
  }

  .why-section,
  .contact-section {
    padding: 42px;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding: 8px 10px;
  }

  .brand img {
    width: 76px;
    height: 50px;
  }

  .hero {
    min-height: 80svh;
    padding: 112px 16px 56px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 12, 20, 0.9) 0%, rgba(8, 12, 20, 0.72) 100%),
      linear-gradient(0deg, rgba(8, 12, 20, 0.26), transparent);
  }

  .section,
  .why-section,
  .contact-section {
    width: calc(100% - 32px);
  }

  .section {
    padding-top: 74px;
  }

  .about-shell,
  .about-pill-grid,
  .projects-heading,
  .contact-section {
    gap: 26px;
  }

  .about-intro,
  .about-proof-card {
    padding: 28px 22px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .why-section,
  .contact-section {
    margin-top: 74px;
    padding: 30px 22px;
  }

  .finish-sample {
    min-height: 260px;
  }

  .project-card,
  .project-card img {
    min-height: 340px;
  }

  .testimonial {
    padding: 26px 22px;
  }

  .contact-panel {
    padding: 28px 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 26px;
  }
}
