:root {
  --dark: #05080d;
  --navy: #07111f;
  --blue: #1478ff;
  --blue-bright: #39b8ff;
  --white: #ffffff;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.075);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(57, 184, 255, 0.2), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(20, 120, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #05080d 0%, #07111f 45%, #05080d 100%);
  color: var(--white);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(57, 184, 255, 0.26);
  border-radius: 999px;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.34),
    0 0 60px rgba(57, 184, 255, 0.22);
}

.brand img,
.hero-logo,
.footer-logo img {
  filter: drop-shadow(0 12px 22px rgba(20, 120, 255, 0.25));
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(57, 184, 255, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.42), rgba(5, 8, 13, 0.92)),
    linear-gradient(0deg, rgba(5, 8, 13, 1), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  text-align: center;
  padding: 110px 0 105px;
  animation: riseIn 0.9s ease both;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 78vw);
  min-height: 120px;
  margin: 0 auto 26px;
  padding: 24px 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(57, 184, 255, 0.26);
  backdrop-filter: blur(14px);
}

.hero-logo {
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow.blue {
  color: var(--blue-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  color: var(--white);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.44);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--white);
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-subtext {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 16px 42px rgba(20, 120, 255, 0.38);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.btn.secondary.light {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
  border: 0;
}

.btn:hover,
.sticky-contact a:hover,
.hero-contact-pill:hover {
  transform: translateY(-2px);
}

.hero-contact-pill {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro-card,
.service-card,
.glass-panel,
.process-grid div,
.contact-card,
.quote-form {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.intro-card {
  border-radius: var(--radius);
  padding: 32px;
}

.intro-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 800;
}

.intro-card strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.06em;
  color: var(--blue-bright);
}

.center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 184, 255, 0.45);
}

.lottie-box {
  width: 100%;
  height: 210px;
  margin-bottom: 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(57, 184, 255, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  overflow: hidden;
}

.lottie-fallback {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(57, 184, 255, 0.28), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: var(--white);
}

.lottie-fallback span {
  display: block;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.lottie-fallback small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img {
  position: absolute;
  width: 72%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.photo-stack img:first-child {
  top: 0;
  left: 0;
}

.photo-stack img:last-child {
  right: 0;
  bottom: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list span {
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.glass-panel {
  border-radius: var(--radius);
  padding: 34px;
}

.glass-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process-grid div {
  border-radius: var(--radius);
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--blue-bright);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  border-radius: var(--radius);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-form {
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  outline: none;
}

select option {
  color: #111;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  padding: 60px 16px 110px;
  text-align: center;
  color: var(--muted);
}

.footer-logo {
  width: 140px;
  min-height: 62px;
  margin: 0 auto 18px;
  padding: 14px 20px;
}

.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  transform: translate(-50%, 120px);
  width: min(520px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 8, 13, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: 0.35s ease;
}

.sticky-contact.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.sticky-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.sticky-contact a:first-child {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.sticky-contact a:last-child {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .intro,
  .photo-feature,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .hero-content {
    padding: 90px 0 95px;
  }

  .hero-logo-wrap {
    min-height: 100px;
    padding: 20px 26px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .lottie-box {
    height: 240px;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .photo-stack img {
    position: static;
    width: 100%;
    height: 320px;
  }

  .contact-card,
  .glass-panel,
  .quote-form {
    padding: 22px;
  }

  .sticky-contact {
    border-radius: 22px;
  }
}