:root {
  --bg: #0b0f14;
  --panel: #0f1620;
  --panel-2: #121b26;
  --text: #e7eef7;
  --muted: rgba(231, 238, 247, 0.72);
  --line: rgba(231, 238, 247, 0.12);
  --accent: #56a7ff;
  --accent-2: #7c5cff;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-lg: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(124, 92, 255, 0.2), transparent 60%),
    radial-gradient(1100px 700px at 90% 10%, rgba(86, 167, 255, 0.18), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 15, 20, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(86, 167, 255, 0.9), rgba(124, 92, 255, 0.9));
  box-shadow: 0 10px 30px rgba(86, 167, 255, 0.16);
  font-size: 0.9rem;
}

.logo-text {
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a {
  font-size: 0.95rem;
  color: rgba(231, 238, 247, 0.82);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 140ms ease, color 140ms ease;
}

.nav a:hover {
  background: rgba(231, 238, 247, 0.08);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(86, 167, 255, 0.35);
  background: linear-gradient(135deg, rgba(86, 167, 255, 0.95), rgba(124, 92, 255, 0.9));
  color: #071018;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: transform 120ms ease, filter 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(231, 238, 247, 0.22);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(231, 238, 247, 0.08);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  height: 92vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 8, 14, 0.38), rgba(4, 8, 14, 0.58)),
    rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: white;
  top: 48%;
  transform: translateY(-50%);
  opacity: 0;
  animation: heroFade 1.5s ease-out forwards;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.2s ease-out forwards;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.2s ease-out forwards;
  animation-delay: 0.35s;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.2s ease-out forwards;
  animation-delay: 0.55s;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.2s ease-out forwards;
  animation-delay: 0.7s;
}

.hero-trust span {
  position: relative;
}

.hero-trust span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.45);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
  z-index: 2;
}

.section {
  padding: 54px 0;
}

.seo {
  padding: 36px 0 10px;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 1.8rem;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

p {
  margin: 0;
}

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

.small {
  font-size: 0.92rem;
}

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

.card {
  background: linear-gradient(180deg, rgba(18, 27, 38, 0.9), rgba(15, 22, 32, 0.85));
  border: 1px solid rgba(231, 238, 247, 0.12);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(231, 238, 247, 0.78);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.shot {
  background: linear-gradient(180deg, rgba(18, 27, 38, 0.9), rgba(15, 22, 32, 0.85));
  border: 1px solid rgba(231, 238, 247, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shot figcaption {
  padding: 10px 10px 11px;
  font-size: 0.92rem;
  color: rgba(231, 238, 247, 0.78);
  border-top: 1px solid rgba(231, 238, 247, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-card {
  background: rgba(231, 238, 247, 0.03);
  border: 1px solid rgba(231, 238, 247, 0.1);
  border-radius: 16px;
  padding: 14px 14px 12px;
}

.contact-card a {
  color: rgba(86, 167, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form {
  background: linear-gradient(180deg, rgba(18, 27, 38, 0.9), rgba(15, 22, 32, 0.85));
  border: 1px solid rgba(231, 238, 247, 0.12);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(231, 238, 247, 0.88);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(231, 238, 247, 0.14);
  background: rgba(7, 16, 24, 0.5);
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(86, 167, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(86, 167, 255, 0.14);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.pricing-card {
  max-width: 420px;
  margin: 28px auto 0;
  background: linear-gradient(180deg, rgba(18, 27, 38, 0.95), rgba(15, 22, 32, 0.9));
  border: 1px solid rgba(231, 238, 247, 0.12);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 10px 0 18px;
  color: #56a7ff;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-features li {
  padding: 6px 0;
  color: rgba(231, 238, 247, 0.85);
}

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(-42%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

@media (max-width: 980px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav {
    gap: 8px;
  }

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 560px;
    height: 86vh;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-trust {
    gap: 10px;
    font-size: 0.88rem;
  }

  .hero-trust span:not(:last-child)::after {
    display: none;
  }

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

/* SteadyLife Aerial logo overrides */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  gap: 0;
}

.logo-image {
  display: block;
  height: auto;
}

.logo-image--monogram {
  width: clamp(112px, 10vw, 150px);
}

.thank-you-logo {
  display: block;
  height: auto;
  margin: 0 auto 26px;
}

.thank-you-logo--monogram {
  width: min(220px, 58vw);
}

@media (max-width: 640px) {
  .header-inner {
    padding: 12px 0;
  }

  .logo-image--monogram {
    width: 108px;
  }

  .thank-you-logo--monogram {
    width: min(190px, 62vw);
    margin-bottom: 22px;
  }
}


/* --- Header tuning: slimmer, overlaid on hero, monogram brighter --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0.72), rgba(5, 10, 18, 0.18) 70%, transparent);
  backdrop-filter: none;
  border-bottom: none;
}

.header-inner {
  padding: 18px 0 10px;
  gap: 20px;
}

.logo-image--monogram {
  width: clamp(92px, 8vw, 124px);
  filter: brightness(0) invert(1) contrast(1.08);
  opacity: 0.96;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn.btn-small {
  color: #ffffff;
}

.hero {
  height: 100vh;
  min-height: 700px;
}

.hero-content {
  top: 52%;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 16px 0 10px;
  }

  .logo-image--monogram {
    width: 96px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 14px 0 8px;
  }

  .logo-image--monogram {
    width: 88px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    padding: 7px 8px;
    font-size: 0.9rem;
  }
}


/* Make logo visible on dark backgrounds (thank-you page) */
.logo-light {
  filter: brightness(0) invert(1) contrast(1.1);
  opacity: 0.95;
}


/* --- Hanging header: stays with the user while scrolling --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 18, 0.88),
    rgba(5, 10, 18, 0.55) 58%,
    rgba(5, 10, 18, 0.18) 82%,
    transparent
  );
  backdrop-filter: blur(6px);
}

/* Keep content from feeling cramped under the fixed header */
.hero {
  padding-top: 86px;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 78px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 12, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.site-logo {
  display: block;
  height: 48px; 
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) contrast(1.08);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
  padding: 0 20px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 16px;
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
  display: block;
}

/* Burger animates into X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile behavior */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-logo {
    height: 44px;
  }

  .nav-wrap {
    padding: 12px 16px;
  }
}