@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #050812;
  --steel: #0c1424;
  --panel: #101a2d;
  --blue: #2563ff;
  --cyan: #3cb8ff;
  --amber: #ffb21c;
  --white: #f7faff;
  --muted: #a7b4c8;
  --line: rgba(77, 126, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 5%, rgba(37, 99, 255, 0.12), transparent 30rem),
    var(--ink);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(4, 7, 16, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  height: 92px;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  height: 72px;
  overflow: hidden;
  width: 146px;
}

.brand img {
  height: 72px;
  object-fit: cover;
  width: 146px;
}

.site-header nav {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  justify-content: center;
}

.site-header nav a,
.header-phone {
  font-size: 15px;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.header-phone:hover {
  color: var(--cyan);
}

.header-phone {
  color: var(--cyan);
  text-align: right;
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(400px, 0.84fr) minmax(540px, 1.16fr);
  min-height: calc(100vh - 92px);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: 72px 3vw 64px 4vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(64px, 6vw, 100px);
  line-height: 0.91;
  margin: 0;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 30px 0;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 28px;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), #0f52eb);
  box-shadow: 0 10px 32px rgba(37, 99, 255, 0.3);
}

.button-primary:hover {
  box-shadow: 0 12px 44px rgba(37, 99, 255, 0.48);
}

.button-outline {
  border-color: var(--blue);
}

.button-outline:hover {
  background: rgba(37, 99, 255, 0.12);
}

.hero-proof {
  align-items: center;
  border-left: 2px solid var(--amber);
  display: flex;
  gap: 18px;
  margin-top: 38px;
  padding-left: 16px;
}

.hero-proof strong {
  color: var(--amber);
  text-transform: uppercase;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-collage {
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.hero-collage::after {
  background: linear-gradient(90deg, var(--ink), transparent 26%, transparent 80%, rgba(5, 8, 18, 0.15));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-shot {
  background: var(--panel);
  border: 1px solid rgba(60, 184, 255, 0.5);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.hero-shot img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-shot figcaption {
  background: rgba(5, 8, 18, 0.9);
  border: 1px solid rgba(255,255,255,.35);
  bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 9px 13px;
  position: absolute;
  right: 16px;
  text-transform: uppercase;
}

.hero-shot-main {
  inset: 0;
}

.hero-shot-top {
  height: 37%;
  right: 0;
  top: 0;
  width: 47%;
}

.hero-shot-bottom {
  bottom: 0;
  height: 37%;
  right: 0;
  width: 53%;
}

.service-strip {
  background: #071020;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 24px 4vw;
}

.service-strip span {
  color: #dce6f7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 8px 18px;
  text-transform: uppercase;
}

.service-strip span::before {
  color: var(--blue);
  content: "◆";
  margin-right: 12px;
}

.section {
  padding: 112px 6vw;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.15fr .85fr;
  margin-bottom: 54px;
}

.section h2,
.contact h2 {
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: .98;
  margin: 0;
}

.section-heading > p,
.why-copy > p,
.contact > div > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.services {
  background:
    linear-gradient(rgba(37,99,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.service-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 260px;
  padding: 34px;
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(37,99,255,.16), rgba(255,178,28,.03));
  transform: translateY(-3px);
}

.service-number {
  color: var(--blue);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}

.service-card h3 {
  font-size: 20px;
  margin: 44px 0 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.service-card small {
  bottom: 28px;
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  left: 34px;
  letter-spacing: .08em;
  position: absolute;
  text-transform: uppercase;
}

.projects {
  background: #080d18;
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-auto-rows: 320px;
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  background: var(--panel);
  overflow: hidden;
  position: relative;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
  width: 100%;
}

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

.project-wide {
  grid-column: span 2;
}

.project-tall {
  grid-row: span 2;
}

.project-overlay {
  background: linear-gradient(transparent, rgba(3,6,13,.95));
  bottom: 0;
  left: 0;
  padding: 70px 24px 24px;
  position: absolute;
  right: 0;
}

.project-overlay p {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.project-overlay h3 {
  font-size: 22px;
  margin: 0 0 7px;
}

.project-overlay span {
  color: var(--muted);
  font-size: 12px;
}

.why {
  align-items: center;
  display: grid;
  gap: 7vw;
  grid-template-columns: 1.05fr .95fr;
}

.why-image {
  border: 1px solid var(--line);
  box-shadow: -22px 22px 0 rgba(37,99,255,.09);
  position: relative;
}

.why-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.why-image > span {
  background: var(--amber);
  bottom: -18px;
  color: #151006;
  font-size: 11px;
  font-weight: 800;
  left: 24px;
  letter-spacing: .12em;
  padding: 14px 20px;
  position: absolute;
  text-transform: uppercase;
}

.why-copy ul {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.why-copy li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 170px 1fr;
  padding: 21px 0;
}

.why-copy li strong {
  font-size: 14px;
}

.why-copy li span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.process {
  background: #071020;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process li {
  border-left: 1px solid var(--line);
  min-height: 220px;
  padding: 24px 28px;
}

.process li:last-child {
  border-right: 1px solid var(--line);
}

.process li > span {
  color: var(--blue);
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  margin-bottom: 42px;
}

.process li strong {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}

.process li p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.contact {
  align-items: center;
  background:
    radial-gradient(circle at 75% 50%, rgba(255,178,28,.15), transparent 28rem),
    linear-gradient(135deg, #0b1d43, #071020 62%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6vw;
  grid-template-columns: 1.15fr .85fr;
  padding: 96px 6vw;
}

.contact > div > p:last-child {
  margin-top: 22px;
  max-width: 650px;
}

.contact-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button-amber {
  background: var(--amber);
  color: #151006;
  justify-content: center;
}

.button-amber:hover {
  box-shadow: 0 12px 38px rgba(255,178,28,.27);
}

.contact-link {
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  padding: 16px 20px;
  text-align: center;
}

footer {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 11px;
  gap: 30px;
  grid-template-columns: 180px 1fr auto;
  padding: 34px 6vw;
}

.footer-brand {
  height: 50px;
  overflow: hidden;
  width: 106px;
}

.footer-brand img {
  height: 50px;
  object-fit: cover;
  width: 106px;
}

.floating-whatsapp {
  align-items: center;
  background: #21c063;
  border: 3px solid #d9ffe7;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 56px;
  z-index: 40;
}

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

  .site-header nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: 20px;
    position: relative;
  }

  .mobile-menu summary {
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
  }

  .mobile-menu > div {
    background: #071020;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    position: absolute;
    right: 0;
    top: 34px;
    width: 190px;
  }

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

  .hero-collage {
    clip-path: none;
    min-height: 580px;
    order: -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-tall {
    grid-row: span 1;
  }

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

  .process ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 74px;
    padding: 0 20px;
  }

  .brand,
  .brand img {
    height: 58px;
    width: 118px;
  }

  .header-phone {
    display: none;
  }

  .hero-collage {
    min-height: 430px;
  }

  .hero-shot-top,
  .hero-shot-bottom {
    display: none;
  }

  .hero-copy {
    padding: 60px 22px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 15px;
  }

  .button {
    justify-content: center;
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .section {
    padding: 78px 22px;
  }

  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .service-grid,
  .project-grid,
  .process ol {
    grid-template-columns: 1fr;
  }

  .project-wide {
    grid-column: span 1;
  }

  .service-card {
    min-height: 245px;
  }

  .why-copy li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact {
    padding: 78px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 32px 22px 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
