:root {
  --bg: #0b3f4a;
  --surface: #11505d;
  --surface-2: #0e4955;
  --text: #f4f8fa;
  --muted: #c2d0d4;
  --line: #5e7a80;
  --primary: #9fb2b6;
  --primary-dark: #7f8f93;
  --accent: #d8e2e4;
  --dark: #093842;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(3, 18, 24, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 0%, rgba(150, 176, 184, 0.2), transparent 34%),
    radial-gradient(circle at 90% 4%, rgba(112, 138, 146, 0.18), transparent 34%),
    var(--bg);
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}

p {
  margin: 0 0 0.82rem;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #c5d4d8;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.45rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(10px);
  background: rgba(8, 54, 64, 0.9);
  border-bottom: none;
}

.header-grid {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: auto;
  height: 74px;
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  border: 1px solid #062b3a;
  border-radius: 10px;
  padding: 8px 10px;
  background: #062b3a;
  color: var(--text);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 8px 11px;
  border-radius: 10px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-splash {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-splash__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-splash__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 45, 54, 0.9) 0%, rgba(7, 45, 54, 0.66) 48%, rgba(7, 45, 54, 0.3) 100%),
    radial-gradient(circle at 20% 40%, rgba(159, 178, 182, 0.18), transparent 35%);
}

.hero-splash__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(72px, 12vh, 128px);
  max-width: 720px;
  width: min(720px, 100%);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-splash__content img {
  width: 220px;
  height: auto;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}

.hero-brand p {
  margin: 0;
  color: #e7f1f9;
  font-weight: 800;
  font-size: clamp(1rem, 1.45vw, 1.36rem);
  letter-spacing: 0.01em;
}

.hero-splash__content h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  max-width: 15ch;
  margin-bottom: 1.2rem;
}

.intro-copy p {
  color: var(--muted);
}

.intro-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.intro-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.intro-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 10px;
  border-left: 3px solid #b3c4c8;
  border-bottom: 3px solid #b3c4c8;
  transform: rotate(-45deg);
}

.hero {
  padding-top: 46px;
}

.hero-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  max-width: 16ch;
  margin-bottom: 0.95rem;
}

.hero-content p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-media {
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(198, 216, 229, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.hero-media figcaption {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 12px 16px 15px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-primary {
  color: #ffffff;
  background: #062b3a;
  border-color: #062b3a;
  box-shadow: 0 12px 22px rgba(3, 18, 23, 0.52);
}

.btn-ghost {
  background: #062b3a;
  border-color: #062b3a;
  color: #ffffff;
}

.metrics {
  padding-top: 0;
}

.metrics-grid {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
}

.metrics-grid article {
  padding: 14px;
  border-radius: 12px;
}

.metrics-grid h3 {
  font-size: 1.32rem;
  margin-bottom: 4px;
}

.metrics-grid p {
  color: var(--muted);
  margin: 0;
}

.service-preview-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease;
}

.service-preview:hover {
  transform: translateY(-4px);
}

.service-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-preview h3,
.service-preview p {
  padding-inline: 18px;
}

.service-preview h3 {
  margin: 16px 0 6px;
}

.service-preview p {
  color: var(--muted);
  padding-bottom: 17px;
  margin-bottom: 0;
}

.pricing-section {
  background: linear-gradient(162deg, #0a3742 0%, #0b3f4a 100%);
  color: #e8edf4;
}

.pricing-section .eyebrow {
  color: #c2d2d7;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px;
}

.price-card ul {
  padding-left: 18px;
  margin: 0;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--accent);
  color: #0a2f42;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.price-card.featured {
  border-color: rgba(159, 178, 182, 0.72);
  box-shadow: 0 12px 30px rgba(16, 47, 56, 0.32);
}

.urgent {
  margin-top: 20px;
  background: rgba(159, 178, 182, 0.14);
  border: 1px solid rgba(159, 178, 182, 0.55);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.price-action {
  margin-top: 12px;
}

.cta-banner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.inner-hero {
  padding-bottom: 20px;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.inner-hero p {
  max-width: 70ch;
  color: var(--muted);
}

.service-detail-grid {
  display: grid;
  gap: 32px;
}

.service-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-detail img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.service-detail > div {
  padding: 22px;
}

.service-detail ul {
  margin-bottom: 0;
}

.service-detail.reverse img {
  order: 2;
}

.dark-strip {
  background: var(--dark);
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f1f5f9;
  border-radius: 14px;
  padding: 16px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #142433;
  font-weight: 800;
  margin-bottom: 8px;
}

.case-grid {
  display: grid;
  gap: 20px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.case-card > div {
  padding: 22px;
}

.case-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 7px;
  font-weight: 800;
}

.gallery-section {
  background: var(--surface-2);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  border-radius: 14px;
  border: 1px solid rgba(198, 216, 229, 0.28);
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1.1fr;
}

.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 22px;
}

.contact-profile-photo {
  width: 100%;
  max-width: 340px;
  height: 430px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 6px 0 14px;
}

.contact-pricing h2 {
  margin-bottom: 12px;
}

.price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.price-line:last-of-type {
  margin-bottom: 8px;
}

.price-line__title {
  display: block;
  font-weight: 700;
}

.price-line__desc {
  margin: 2px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.price-line strong {
  white-space: nowrap;
  font-weight: 800;
}

.terms-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.text-link {
  color: #d3ebf8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link:hover {
  color: #ffffff;
}

.contact-form {
  padding: 22px;
  display: grid;
  gap: 12px;
  position: relative;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c3d2de;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  color: #102231;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
}

.checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-success {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(172, 207, 186, 0.45);
  background: rgba(76, 124, 99, 0.24);
  color: #d5f0df;
  font-weight: 700;
}

.spacer-line {
  height: 8px;
  margin: 0;
}

.faq-section {
  background: var(--surface-2);
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.site-footer {
  background: linear-gradient(160deg, #082f38 0%, #0b3f4a 100%);
  color: #dbe8f3;
  padding: 46px 0 18px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1fr;
  gap: 22px;
}

.footer-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 221, 233, 0.18);
  border-radius: 14px;
  padding: 16px;
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 10px;
}

.footer-col h4 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #c2d1d6;
}

.footer-col p {
  margin: 0 0 10px;
  color: #dbe3f1;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.footer-list li {
  color: #dbe3f1;
}

.footer-link {
  color: #f7fbff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  width: fit-content;
}

.footer-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(219, 227, 241, 0.24);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #c4d8e7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0a3742 0%, #0e4955 100%);
}

.intro__inner {
  width: min(720px, 90vw);
  text-align: center;
  color: #e8edf4;
}

.intro__name {
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.swoosh-track {
  position: relative;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(145, 167, 174, 0.66) 24%,
    rgba(223, 232, 234, 0.88) 52%,
    rgba(255, 255, 255, 0) 100%
  );
  overflow: hidden;
}

.swoosh-track::after {
  content: "";
  position: absolute;
  inset: 20px 26px;
  border-radius: 999px;
  background: rgba(3, 28, 42, 0.58);
}

.intro__drone {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: -150px;
  width: 120px;
  filter: drop-shadow(0 8px 14px rgba(146, 168, 175, 0.44));
  animation: swoosh-flight 0.8s cubic-bezier(0.32, 0.88, 0.35, 0.98) forwards;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #c2d4d8;
  outline-offset: 2px;
}

.intro--hide {
  animation: intro-fade 0.25s ease forwards;
}

@keyframes swoosh-flight {
  from {
    transform: translateX(0) translateY(0) rotate(-5deg);
  }
  55% {
    transform: translateX(410px) translateY(-3px) rotate(0deg);
  }
  to {
    transform: translateX(860px) translateY(1px) rotate(4deg);
  }
}

@keyframes intro-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .service-preview-grid,
  .pricing-grid,
  .gallery-grid,
  .faq-grid,
  .footer-main,
  .contact-layout,
  .process-grid,
  .service-detail,
  .case-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-grid {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 58px 0;
  }

  .header-grid {
    min-height: 72px;
    padding: 12px 0 10px;
    row-gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .brand {
    flex: 1 1 100%;
    min-width: 0;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .brand img {
    width: auto;
    height: 46px;
    flex: 0 0 auto;
  }

  .brand span {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.96rem, 3.8vw, 1.12rem);
    line-height: 1.2;
    max-width: 100%;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
    width: fit-content;
    margin-left: 0;
    margin-inline: auto;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    text-align: center;
  }

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

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .hero-grid,
  .metrics-grid,
  .service-preview-grid,
  .pricing-grid,
  .gallery-grid,
  .faq-grid,
  .footer-main,
  .contact-layout,
  .process-grid,
  .service-detail,
  .case-card {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse img {
    order: 0;
  }

  .hero-media img,
  .service-detail img,
  .case-card img {
    height: 240px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-splash {
    min-height: calc(100svh - 72px);
    align-items: start;
  }

  .hero-splash__content {
    padding-top: clamp(30px, 8vh, 58px);
    padding-bottom: 28px;
    width: 100%;
    text-align: center;
  }

  .hero-brand {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 12px;
    gap: 8px;
  }

  .hero-brand img {
    width: 184px;
    height: auto;
  }

  .hero-brand p {
    font-family: "Outfit", sans-serif;
    font-size: 1.02rem;
    line-height: 1.25;
    max-width: 18ch;
    text-align: center;
  }

  .hero-splash__content h1 {
    font-size: clamp(2.05rem, 10.4vw, 2.95rem);
    max-width: 12ch;
    margin-inline: auto;
    margin-bottom: 0.95rem;
  }

  .hero-splash__content .btn {
    width: min(100%, 520px);
    justify-content: center;
    padding-inline: 16px;
    margin-inline: auto;
  }

  .intro__name {
    font-size: 0.92rem;
  }

  @keyframes swoosh-flight {
    from {
      transform: translateX(0) translateY(0) rotate(-5deg);
    }
    55% {
      transform: translateX(250px) translateY(-3px) rotate(0deg);
    }
    to {
      transform: translateX(480px) translateY(1px) rotate(4deg);
    }
  }
}

@media (max-width: 480px) {
  .hero-brand img {
    width: 160px;
    height: auto;
  }

  .hero-brand p {
    font-size: 0.98rem;
    max-width: 15ch;
  }
}
