:root {
  --black: #020407;
  --charcoal: #080d13;
  --panel: #0d141c;
  --panel-strong: #111b26;
  --blue: #0098ff;
  --blue-soft: #46c7ff;
  --silver: #e8edf3;
  --muted: #93a2b3;
  --line: rgba(255,255,255,.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--silver);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 8%, rgba(0,152,255,.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, #020407 0%, #07111d 48%, #020407 100%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(2,4,7,.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 0 24px rgba(0,152,255,.25);
}

.brand span {
  display: grid;
  gap: 1px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand small {
  color: var(--blue-soft);
  font-size: .66rem;
  letter-spacing: .22em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-cta,
.button,
.package-grid button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-cta,
.button-primary,
.package-grid button {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0067d7);
  box-shadow: 0 12px 34px rgba(0,152,255,.24);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
}

.nav-toggle { display: none; }

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  align-items: center;
  gap: 34px;
  padding: 70px clamp(18px, 6vw, 86px) 64px;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.label {
  margin: 0 0 16px;
  color: var(--blue-soft);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 5.3rem);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

h3 {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-brand-panel::before {
  content: "";
  position: absolute;
  width: min(92vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0,152,255,.2), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.02));
  box-shadow: inset 0 0 70px rgba(255,255,255,.05), 0 0 90px rgba(0,152,255,.22);
}

.hero-brand-panel img {
  position: relative;
  width: min(88vw, 520px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 6vw, 86px);
  background: #07101a;
}

.proof article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px;
  background: rgba(9,14,20,.92);
}

.proof strong {
  color: var(--blue-soft);
  font-size: .8rem;
  letter-spacing: .18em;
}

.proof span {
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.12;
}

section {
  padding: 96px clamp(18px, 6vw, 86px);
}

.section-head {
  max-width: 980px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article,
.package-grid article,
.order-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.service-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-grid p,
.package-grid p,
.package-grid li,
.contact-copy > p {
  color: var(--muted);
}

.card-media,
.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #070b11;
}

.card-media {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
}

.media-frame {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-media::after,
.media-frame::after,
.result-board article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(2,4,7,.82));
  pointer-events: none;
}

.card-media img,
.media-frame img,
.result-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid article h3 {
  margin: 24px 24px 10px;
}

.service-grid article p {
  margin: 0 24px 28px;
}

.photo-credit {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  color: rgba(255,255,255,.82);
  background: rgba(2,4,7,.64);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-credit a {
  color: inherit;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, .85fr);
  align-items: center;
  gap: 56px;
  background: #05080d;
}

.process-photo {
  width: 100%;
  max-width: 100%;
  min-height: 430px;
  aspect-ratio: 5 / 4;
}

.process ol {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process strong {
  color: var(--white);
  text-transform: uppercase;
}

.process span {
  color: var(--muted);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-grid article {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.featured-package {
  border-color: rgba(0,152,255,.65) !important;
  box-shadow: 0 0 46px rgba(0,152,255,.14);
}

.package-name {
  margin: 0;
  color: var(--blue-soft) !important;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.package-grid strong {
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1;
}

.package-grid ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  background: var(--blue);
  transform: rotate(45deg);
}

.package-grid button {
  width: 100%;
}

.package-grid button.selected {
  color: var(--black);
  background: linear-gradient(135deg, var(--white), #aeb8c4);
}

.results {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.08));
}

.result-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-board article {
  position: relative;
  aspect-ratio: 1.18 / 1;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
}

.result-board img {
  position: absolute;
  inset: 0;
}

.result-board span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 45px;
  z-index: 2;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-board .photo-credit {
  bottom: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy > p {
  max-width: 560px;
  margin-top: 22px;
}

.contact-card {
  max-width: 420px;
  display: grid;
  gap: 4px;
  margin-top: 32px;
  padding: 22px;
}

.contact-card strong {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card span {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  color: var(--white);
  background: rgba(0,0,0,.28);
}

input, select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--blue-soft);
}

.site-footer {
  display: grid;
  gap: 34px;
  padding: 46px clamp(18px, 6vw, 86px) 22px;
  border-top: 1px solid var(--line);
  background: #04070b;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, .65fr));
  gap: 28px;
  align-items: start;
}

.site-footer p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: var(--blue-soft);
}

.footer-column a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .86rem;
}

.footer-bottom p:last-child {
  text-align: right;
}

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

  .nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 2px 0;
    background: var(--white);
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5,8,13,.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .results,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-brand-panel {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 74px;
    padding-inline: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: .82rem;
  }

  .brand small {
    font-size: .52rem;
  }

  .site-nav {
    top: 74px;
  }

  .hero,
  section {
    padding: 62px 16px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-brand-panel img {
    width: 100%;
    border-radius: 16px;
  }

  .proof,
  .service-grid,
  .package-grid,
  .result-board,
  .quote-form,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .proof {
    padding: 0;
  }

  .proof article {
    min-height: 112px;
  }

  .process-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .quote-form .wide,
  .form-note {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
