:root {
  --black: #020205;
  --dark: #070812;
  --white: #ffffff;
  --blue: #1751ff;
  --cyan: #52efff;
  --purple: #845cff;
  --pink: #ff4ddd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
}

body.menu-active {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: #020205;
  background: var(--cyan);
}

/* =================================
   HERO
================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #020205;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    brightness(0.55)
    contrast(1.08)
    saturate(1.3);
  transform: scale(1.025);
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: -9;
  background: rgba(1, 2, 7, 0.42);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: -8;
  background:
    linear-gradient(
      180deg,
      rgba(1, 2, 7, 0.82) 0%,
      rgba(1, 2, 7, 0.15) 35%,
      rgba(1, 2, 7, 0.36) 67%,
      rgba(1, 2, 7, 0.96) 100%
    ),
    radial-gradient(
      circle at center,
      transparent 12%,
      rgba(1, 2, 7, 0.48) 100%
    );
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -7;
  opacity: 0.14;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(82, 239, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(82, 239, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 56px 56px;
  mask-image: radial-gradient(
    circle at center,
    #000,
    transparent 78%
  );
}

/* =================================
   HEADER
================================= */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  display: flex;
  width: min(1500px, calc(100% - 80px));
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.header-name {
  position: relative;
  z-index: 1002;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(82, 239, 255, 0.2);
}

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

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.desktop-nav a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(82, 239, 255, 0.5);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-instagram {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.header-instagram:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 25px rgba(82, 239, 255, 0.28);
  transform: translateY(-2px);
}

/* =================================
   HERO CONTENT
================================= */

.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: calc(100svh - 90px);
  align-items: center;
  justify-content: center;
  padding: 30px 24px 135px;
  text-align: center;
}

.logo-area {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 850px;
  flex-direction: column;
  align-items: center;
}

.logo-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  width: min(520px, 90vw);
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(36, 95, 255, 0.35) 0%,
      rgba(82, 239, 255, 0.12) 38%,
      transparent 70%
    );
  filter: blur(40px);
  transform: translateX(-50%);
  animation: logoGlowPulse 4s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: clamp(180px, 22vw, 315px);
  max-height: 310px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(38, 94, 255, 0.72))
    drop-shadow(0 0 42px rgba(82, 239, 255, 0.24));
  animation: logoFloat 5s ease-in-out infinite;
}

.hero-brand-name {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(1.15rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.32),
    0 0 18px rgba(82, 239, 255, 0.45),
    0 0 45px rgba(38, 94, 255, 0.28);
}

.hero-description {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin: 23px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
}

/* =================================
   NEW LESS-DIAMOND BUTTONS
================================= */

.hero-button-row {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 45px;
}

.hero-action-button {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  padding: 18px 20px;
  color: #fff;
  border: 1px solid rgba(82, 239, 255, 0.32);
  border-radius: 18px 5px 18px 5px;
  background:
    linear-gradient(
      135deg,
      rgba(82, 239, 255, 0.1),
      rgba(11, 15, 35, 0.78) 50%,
      rgba(78, 70, 255, 0.12)
    );
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.27),
    inset 0 0 25px rgba(82, 239, 255, 0.03);
  backdrop-filter: blur(16px);
  text-align: left;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.hero-action-button::before {
  position: absolute;
  top: 0;
  left: -70%;
  width: 48%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.hero-action-button::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 72px;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan)
  );
  box-shadow: 0 0 12px var(--cyan);
}

.hero-action-button:hover {
  border-color: rgba(82, 239, 255, 0.78);
  background:
    linear-gradient(
      135deg,
      rgba(82, 239, 255, 0.17),
      rgba(11, 15, 35, 0.84) 50%,
      rgba(78, 70, 255, 0.2)
    );
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(82, 239, 255, 0.18),
    inset 0 0 25px rgba(82, 239, 255, 0.06);
  transform: translateY(-6px);
}

.hero-action-button:hover::before {
  left: 130%;
}

.button-icon {
  display: flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  border: 1px solid rgba(82, 239, 255, 0.32);
  border-radius: 12px 4px 12px 4px;
  background: rgba(82, 239, 255, 0.07);
  box-shadow:
    inset 0 0 18px rgba(82, 239, 255, 0.08),
    0 0 16px rgba(82, 239, 255, 0.08);
}

.button-copy {
  min-width: 0;
}

.button-copy small,
.button-copy strong {
  display: block;
}

.button-copy small {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-copy strong {
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button-arrow {
  display: flex;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  border: 1px solid rgba(82, 239, 255, 0.24);
  border-radius: 50%;
  font-size: 0.7rem;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-action-button:hover .button-arrow {
  color: #020205;
  background: var(--cyan);
  transform: translateX(4px);
}

.pricing-button {
  border-color: rgba(132, 92, 255, 0.34);
  background:
    linear-gradient(
      135deg,
      rgba(132, 92, 255, 0.13),
      rgba(11, 15, 35, 0.8) 50%,
      rgba(255, 77, 221, 0.08)
    );
}

.pricing-button::after {
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple)
  );
  box-shadow: 0 0 12px var(--purple);
}

.pricing-button .button-icon {
  color: #ad92ff;
  border-color: rgba(132, 92, 255, 0.36);
  background: rgba(132, 92, 255, 0.08);
}

.pricing-button .button-arrow {
  color: #ad92ff;
  border-color: rgba(132, 92, 255, 0.3);
}

.pricing-button:hover {
  border-color: rgba(173, 146, 255, 0.8);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(132, 92, 255, 0.2);
}

.pricing-button:hover .button-arrow {
  color: #020205;
  background: #ad92ff;
}

/* =================================
   HERO LABELS
================================= */

.hero-services {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Orbitron", sans-serif;
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.service-dot {
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* =================================
   GLOWS
================================= */

.hero-glow {
  position: absolute;
  z-index: -5;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
}

.hero-glow-blue {
  top: 15%;
  left: -12%;
  width: 500px;
  height: 500px;
  background: rgba(22, 78, 255, 0.28);
  animation: blueGlowMove 8s ease-in-out infinite alternate;
}

.hero-glow-purple {
  right: -14%;
  bottom: -12%;
  width: 570px;
  height: 570px;
  background: rgba(132, 92, 255, 0.22);
  animation: purpleGlowMove 10s ease-in-out infinite alternate;
}

/* =================================
   MOBILE MENU
================================= */

.menu-button {
  position: relative;
  z-index: 1002;
  display: none;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.menu-line {
  position: absolute;
  left: 50%;
  width: 19px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition:
    top 0.35s ease,
    transform 0.35s ease;
}

.menu-line-one {
  top: 18px;
}

.menu-line-two {
  top: 26px;
}

.menu-button.button-open .menu-line-one {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-button.button-open .menu-line-two {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding:
    calc(80px + env(safe-area-inset-top))
    20px
    calc(35px + env(safe-area-inset-bottom));
  background: rgba(2, 2, 7, 0.98);
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.mobile-menu.menu-visible {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(
      rgba(82, 239, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(82, 239, 255, 0.1) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
}

.mobile-menu-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.mobile-menu-glow-one {
  top: -20%;
  left: -30%;
  width: 450px;
  height: 450px;
  background: rgba(22, 78, 255, 0.3);
}

.mobile-menu-glow-two {
  right: -30%;
  bottom: -20%;
  width: 450px;
  height: 450px;
  background: rgba(132, 92, 255, 0.25);
}

.mobile-nav {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mobile-nav > a:not(.mobile-instagram) {
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.45rem, 6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mobile-nav > a:not(.mobile-instagram):hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(82, 239, 255, 0.55);
}

.mobile-instagram {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 31px;
  border: 1px solid rgba(82, 239, 255, 0.42);
  border-radius: 50%;
  background: rgba(82, 239, 255, 0.06);
  font-size: 1.2rem;
}

/* =================================
   CONTENT SECTIONS
================================= */

.content-section {
  min-height: 620px;
  padding: 120px 8%;
  color: #fff;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(22, 78, 255, 0.12),
      transparent 35%
    ),
    #080912;
}

.alternate-section {
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(132, 92, 255, 0.13),
      transparent 35%
    ),
    #04050a;
}

.section-label {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.content-section h2 {
  max-width: 1000px;
  margin: 25px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.content-section h2 strong {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--cyan),
    #8b91ff
  );
  background-clip: text;
  -webkit-background-clip: text;
}

/* =================================
   ANIMATIONS
================================= */

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes logoGlowPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateX(-50%) scale(0.95);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes blueGlowMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(85px, 35px, 0);
  }
}

@keyframes purpleGlowMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-90px, -40px, 0);
  }
}

/* =================================
   TABLET
================================= */

@media (max-width: 900px) {
  .desktop-nav,
  .header-instagram {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-inner {
    width: calc(100% - 40px);
    min-height: 78px;
  }

  .hero-content {
    min-height: calc(100svh - 78px);
  }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 680px) {
  .hero-video {
    object-position: center;
    filter:
      brightness(0.46)
      contrast(1.08)
      saturate(1.25);
  }

  .hero-content {
    min-height: calc(100svh - 78px);
    align-items: center;
    padding:
      18px
      18px
      calc(120px + env(safe-area-inset-bottom));
  }

  .logo-area {
    max-width: 500px;
  }

  .hero-logo {
    width: clamp(155px, 47vw, 225px);
  }

  .hero-brand-name {
    margin-top: 12px;
    font-size: clamp(1rem, 5vw, 1.3rem);
    letter-spacing: 0.17em;
    text-indent: 0.17em;
  }

  .hero-description {
    max-width: 430px;
    margin-top: 17px;
    padding: 0 4px;
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .hero-button-row {
    max-width: 470px;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 31px;
  }

  .hero-action-button {
    min-height: 76px;
    padding: 13px 15px;
    border-radius: 15px 4px 15px 4px;
  }

  .button-icon {
    width: 43px;
    height: 43px;
  }

  .button-copy small {
    margin-bottom: 4px;
    font-size: 0.54rem;
  }

  .button-copy strong {
    font-size: 0.71rem;
  }

  .hero-services {
    bottom: calc(18px + env(safe-area-inset-bottom));
    flex-wrap: wrap;
    gap: 7px 11px;
    padding: 0 18px;
    font-size: 0.4rem;
    line-height: 1.6;
  }

  .content-section {
    min-height: 500px;
    padding: 90px 22px;
  }

  .content-section h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }
}

/* =================================
   SMALL PHONES
================================= */

@media (max-width: 390px) {
  .header-inner {
    width: calc(100% - 28px);
  }

  .header-name {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .menu-button {
    width: 43px;
    height: 43px;
  }

  .menu-line-one {
    top: 17px;
  }

  .menu-line-two {
    top: 25px;
  }

  .hero-logo {
    width: 145px;
  }

  .hero-brand-name {
    font-size: 0.94rem;
  }

  .hero-description {
    font-size: 0.75rem;
  }

  .hero-button-row {
    margin-top: 25px;
  }

  .hero-action-button {
    min-height: 70px;
    gap: 11px;
    padding: 11px 13px;
  }

  .button-icon {
    width: 39px;
    height: 39px;
    border-radius: 10px 3px 10px 3px;
  }

  .button-arrow {
    width: 27px;
    height: 27px;
  }

  .hero-services {
    font-size: 0.36rem;
  }
}

/* =================================
   SHORT MOBILE SCREENS
================================= */

@media (max-height: 720px) and (max-width: 680px) {
  .hero-content {
    align-items: flex-start;
    padding-top: 15px;
  }

  .hero-logo {
    width: 125px;
  }

  .hero-brand-name {
    margin-top: 8px;
  }

  .hero-description {
    margin-top: 12px;
    line-height: 1.55;
  }

  .hero-button-row {
    margin-top: 20px;
  }

  .hero-action-button {
    min-height: 65px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/* =================================
   SERVICES SECTION
================================= */

.services-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(20, 72, 255, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(62, 170, 255, 0.1),
      transparent 34%
    ),
    #04050a;
}

.services-container,
.pricing-container {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.services-heading,
.pricing-heading {
  max-width: 830px;
  margin-bottom: 55px;
}

.services-heading h2,
.pricing-heading h2 {
  margin: 18px 0 0;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.7rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.services-heading h2 strong,
.pricing-heading h2 strong {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--cyan),
    #3170ff,
    #9e83ff
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.services-heading p,
.pricing-heading p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 34px;
  border: 1px solid rgba(52, 107, 255, 0.18);
  border-radius: 22px 5px 22px 5px;
  background:
    linear-gradient(
      145deg,
      rgba(13, 18, 40, 0.96),
      rgba(5, 7, 15, 0.98)
    );
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    inset 0 0 25px rgba(51, 112, 255, 0.02);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 25px;
  width: 90px;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan)
  );
  box-shadow: 0 0 12px var(--cyan);
}

.service-card:hover {
  border-color: rgba(82, 239, 255, 0.46);
  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(30, 96, 255, 0.12);
  transform: translateY(-8px);
}

.featured-service {
  background:
    linear-gradient(
      145deg,
      rgba(20, 48, 134, 0.92),
      rgba(5, 8, 20, 0.98)
    );
}

.service-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.service-card-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--cyan);
  border: 1px solid rgba(82, 239, 255, 0.3);
  border-radius: 15px 4px 15px 4px;
  background: rgba(82, 239, 255, 0.06);
  box-shadow:
    inset 0 0 20px rgba(82, 239, 255, 0.06),
    0 0 18px rgba(82, 239, 255, 0.07);
  font-size: 1.2rem;
}

.service-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.service-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.87rem;
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.service-tags span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.63);
  border: 1px solid rgba(82, 239, 255, 0.15);
  border-radius: 999px;
  background: rgba(82, 239, 255, 0.035);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 29px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.services-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}

.services-glow-left {
  top: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: rgba(25, 67, 255, 0.13);
}

.services-glow-right {
  right: -15%;
  bottom: 5%;
  width: 500px;
  height: 500px;
  background: rgba(82, 239, 255, 0.08);
}

/* =================================
   PRICING SECTION
================================= */

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(20, 75, 255, 0.13),
      transparent 36%
    ),
    #070810;
}

.pricing-background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(43, 90, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(43, 90, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 55px 55px;
  mask-image: linear-gradient(
    to bottom,
    #000,
    transparent 90%
  );
}

.pricing-glow {
  position: absolute;
  top: 20%;
  left: 48%;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: rgba(20, 70, 255, 0.12);
  filter: blur(150px);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  align-items: start;
  gap: 45px;
}

.pricing-image-wrapper {
  position: sticky;
  top: 25px;
}

.pricing-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 98, 255, 0.35);
  border-radius: 26px 6px 26px 6px;
  background: #000;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(30, 88, 255, 0.14);
}

.pricing-image-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(82, 239, 255, 0.09);
  border-radius: inherit;
}

.pricing-guide-image {
  width: 100%;
  height: auto;
}

.pricing-disclaimer {
  margin: 18px 4px 0;
  color: rgba(255, 255, 255, 0.39);
  font-size: 0.72rem;
  line-height: 1.65;
}

.pricing-side-content {
  display: grid;
  gap: 18px;
}

.pricing-highlight-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(82, 239, 255, 0.3);
  border-radius: 24px 5px 24px 5px;
  background:
    linear-gradient(
      145deg,
      rgba(22, 48, 128, 0.9),
      rgba(7, 10, 22, 0.98)
    );
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(29, 83, 255, 0.1);
}

.pricing-card-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 16px;
  color: #02040a;
  background: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-highlight-icon {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  border: 1px solid rgba(82, 239, 255, 0.35);
  border-radius: 16px 4px 16px 4px;
  background: rgba(82, 239, 255, 0.07);
  font-size: 1.25rem;
}

.pricing-highlight-card h3 {
  margin: 28px 0 15px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-highlight-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.75;
}

.pricing-highlight-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-highlight-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.pricing-highlight-card li i {
  color: var(--cyan);
}

.pricing-cta {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  color: #02040a;
  border-radius: 16px 4px 16px 4px;
  background: linear-gradient(
    100deg,
    var(--cyan),
    #fff
  );
  font-family: "Orbitron", sans-serif;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(82, 239, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-cta:hover {
  box-shadow: 0 0 38px rgba(82, 239, 255, 0.38);
  transform: translateY(-3px);
}

.quick-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-price-card {
  min-height: 160px;
  padding: 23px;
  border: 1px solid rgba(53, 102, 255, 0.17);
  border-radius: 18px 4px 18px 4px;
  background:
    linear-gradient(
      145deg,
      rgba(14, 18, 35, 0.96),
      rgba(6, 8, 16, 0.98)
    );
}

.quick-price-card span,
.quick-price-card strong {
  display: block;
}

.quick-price-card span {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-price-card strong {
  margin-top: 13px;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.quick-price-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
  line-height: 1.55;
}

.pricing-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px;
  border: 1px solid rgba(82, 239, 255, 0.17);
  border-radius: 18px 4px 18px 4px;
  background: rgba(82, 239, 255, 0.035);
}

.pricing-contact-card span,
.pricing-contact-card strong {
  display: block;
}

.pricing-contact-card span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
}

.pricing-contact-card strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-contact-card a {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* =================================
   RESPONSIVE SERVICES + PRICING
================================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-image-wrapper {
    position: relative;
    top: auto;
  }

  .pricing-image-frame {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .services-section,
  .pricing-section {
    padding: 90px 0;
  }

  .services-container,
  .pricing-container {
    width: calc(100% - 36px);
  }

  .services-heading,
  .pricing-heading {
    margin-bottom: 38px;
  }

  .services-heading h2,
  .pricing-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .services-heading p,
  .pricing-heading p {
    font-size: 0.84rem;
  }

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

  .service-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .quick-price-grid {
    grid-template-columns: 1fr;
  }

  .pricing-highlight-card {
    padding: 31px 24px;
  }

  .pricing-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-contact-card a {
    width: 100%;
    justify-content: center;
    padding: 15px;
    border: 1px solid rgba(82, 239, 255, 0.2);
    border-radius: 12px 3px 12px 3px;
  }
}.package-card{
    background:#070b14;
    border:1px solid rgba(35,95,255,.55);
    border-radius:18px;
    padding:28px;
    box-shadow:
    0 0 25px rgba(0,80,255,.08),
    inset 0 0 20px rgba(0,80,255,.04);
}

.package-card h3{
    font-family:'Orbitron';
    color:#236BFF;
    font-size:1.35rem;
    margin-bottom:24px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.package-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px dashed rgba(255,255,255,.12);
}

.price-row span{
    color:white;
    font-style:italic;
    font-size:1rem;
}

.price-row strong{
    color:#1f6cff;
    font-family:'Orbitron';
    font-size:1rem;
}

.package-card:hover{
    border-color:#2f83ff;
    box-shadow:
    0 0 45px rgba(35,110,255,.18);
}/* ==================================================
   COMPLETE RESPONSIVE FIX
   KEEP THIS AT THE VERY BOTTOM OF styles.css
================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

section,
main,
header,
footer,
div {
  min-width: 0;
}

/* Prevent long words from creating horizontal scroll */

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

/* Shared containers */

.services-container,
.pricing-container,
.section-container,
.header-inner {
  width: min(1400px, calc(100% - 40px));
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1024px) {
  .desktop-nav,
  .header-instagram {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero-content {
    min-height: calc(100svh - 76px);
    padding-top: 25px;
    padding-bottom: 135px;
  }

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-image-wrapper {
    position: relative;
    top: auto;
  }

  .pricing-image-frame {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {
  .services-container,
  .pricing-container,
  .section-container,
  .header-inner {
    width: calc(100% - 32px);
  }

  /* Header */

  .header-inner {
    min-height: 70px;
  }

  .header-name {
    max-width: calc(100% - 65px);
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  /* Hero */

  .hero {
    min-height: 100svh;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .hero-content {
    min-height: calc(100svh - 70px);
    align-items: center;
    padding:
      15px
      16px
      calc(110px + env(safe-area-inset-bottom));
  }

  .logo-area {
    width: 100%;
    max-width: 100%;
  }

  .logo-glow {
    width: 90vw;
    height: 280px;
  }

  .hero-logo {
    width: clamp(130px, 42vw, 205px);
    max-height: 205px;
  }

  .hero-brand-name {
    margin-top: 10px;
    font-size: clamp(0.9rem, 4.8vw, 1.25rem);
    line-height: 1.15;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  .hero-description {
    width: 100%;
    max-width: 420px;
    margin-top: 15px;
    padding: 0 4px;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  /* Hero buttons */

  .hero-button-row {
    width: 100%;
    max-width: 460px;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 25px;
  }

  .hero-action-button {
    width: 100%;
    min-height: 70px;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 11px;
    padding: 12px 13px;
    border-radius: 14px 4px 14px 4px;
  }

  .button-icon {
    width: 42px;
    height: 42px;
  }

  .button-copy {
    min-width: 0;
  }

  .button-copy small {
    font-size: 0.5rem;
    white-space: normal;
  }

  .button-copy strong {
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .button-arrow {
    width: 28px;
    height: 28px;
  }

  /* Bottom hero labels */

  .hero-services {
    position: absolute;
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;
    padding: 0;
    font-size: 0.35rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .service-dot {
    width: 3px;
    height: 3px;
  }

  /* Services */

  .services-section,
  .pricing-section {
    padding: 78px 0;
  }

  .services-heading,
  .pricing-heading {
    width: 100%;
    margin-bottom: 34px;
  }

  .services-heading h2,
  .pricing-heading h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .services-heading p,
  .pricing-heading p {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    width: 100%;
    min-height: auto;
    padding: 25px 21px;
    border-radius: 18px 4px 18px 4px;
  }

  .service-card-number {
    font-size: 3rem;
  }

  .service-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 23px;
  }

  .service-card h3 {
    font-size: 0.94rem;
  }

  .service-card > p {
    font-size: 0.79rem;
  }

  .service-tags {
    gap: 6px;
  }

  .service-tags span {
    padding: 7px 8px;
    font-size: 0.52rem;
  }

  /* Package section */

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

  .package-card {
    width: 100%;
    padding: 21px 17px;
    border-radius: 15px;
  }

  .package-card h3 {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .price-row {
    gap: 12px;
    padding: 9px 0;
  }

  .price-row span,
  .price-row strong {
    font-size: 0.78rem;
  }

  /* Pricing image and cards */

  .pricing-layout {
    display: block;
  }

  .pricing-image-wrapper {
    width: 100%;
  }

  .pricing-image-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 18px 4px 18px 4px;
  }

  .pricing-guide-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .pricing-side-content {
    margin-top: 25px;
  }

  .pricing-highlight-card {
    width: 100%;
    padding: 28px 21px;
  }

  .pricing-highlight-card h3 {
    font-size: 1.1rem;
  }

  .quick-price-grid {
    grid-template-columns: 1fr;
  }

  .quick-price-card {
    min-height: auto;
    padding: 20px;
  }

  .pricing-contact-card {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-contact-card a {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  /* Placeholder/content sections */

  .content-section {
    min-height: auto;
    padding: 75px 20px;
  }

  .content-section h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  /* Mobile menu */

  .mobile-menu {
    padding:
      calc(75px + env(safe-area-inset-top))
      18px
      calc(25px + env(safe-area-inset-bottom));
  }

  .mobile-nav {
    max-height: calc(100svh - 120px);
    overflow-y: auto;
  }

  .mobile-nav > a:not(.mobile-instagram) {
    margin: 5px 0;
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
}

/* ==================================================
   VERY SMALL PHONES
================================================== */

@media (max-width: 390px) {
  .services-container,
  .pricing-container,
  .section-container,
  .header-inner {
    width: calc(100% - 24px);
  }

  .hero-content {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-logo {
    width: 125px;
  }

  .hero-brand-name {
    font-size: 0.85rem;
  }

  .hero-description {
    font-size: 0.72rem;
  }

  .hero-action-button {
    min-height: 64px;
    grid-template-columns: 38px minmax(0, 1fr) 26px;
    padding: 10px 11px;
  }

  .button-icon {
    width: 38px;
    height: 38px;
  }

  .button-copy small {
    display: none;
  }

  .service-card {
    padding: 22px 18px;
  }

  .package-card {
    padding: 18px 14px;
  }

  .price-row span,
  .price-row strong {
    font-size: 0.7rem;
  }
}

/* ==================================================
   SHORT PHONE SCREENS
================================================== */

@media (max-width: 700px) and (max-height: 720px) {
  .hero-content {
    align-items: flex-start;
    padding-top: 5px;
  }

  .hero-logo {
    width: 105px;
  }

  .hero-brand-name {
    margin-top: 5px;
  }

  .hero-description {
    margin-top: 9px;
    line-height: 1.45;
  }

  .hero-button-row {
    margin-top: 15px;
  }

  .hero-action-button {
    min-height: 60px;
  }

  .hero-services {
    display: none;
  }
}.pricing-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
}.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 45px;
}@media (max-width:900px){

.header-inner{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    width:calc(100% - 32px);
    min-height:70px;
}

.header-name{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin:0;
    text-align:center;
    font-size:.8rem;
    letter-spacing:.16em;
    white-space:nowrap;
    z-index:1001;
}

.menu-button{
    margin-left:auto;
}

}/* =====================================
   MOBILE HERO BUTTONS
===================================== */

@media (max-width:700px){

.hero-button-row{
    width:100%;
    max-width:420px;
    margin:28px auto 0;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.hero-action-button{
    flex:1;
    min-width:0;

    min-height:58px;
    padding:0 16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border-radius:14px 3px 14px 3px;
}

.button-icon{
    width:34px;
    height:34px;
    flex-shrink:0;
    font-size:.8rem;
}

.button-copy{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.button-copy small{
    display:none;
}

.button-copy strong{
    font-size:.62rem;
    letter-spacing:.12em;
    white-space:nowrap;
}

.button-arrow{
    display:none;
}

}.about-dspecs{
    background:#111827;
    padding:120px 0;
    overflow:hidden;
}

.about-dspecs-inner{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:70px;
}

.about-visual{
    width:100%;
    height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-main-car{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}

.about-copy{
    max-width:620px;
}

.about-kicker{
    color:#60a5fa;
    letter-spacing:.35em;
    text-transform:uppercase;
    font-size:.8rem;
    font-weight:600;
}

.about-title{
    font-family:"Orbitron",sans-serif;
    font-size:clamp(3rem,5vw,5.3rem);
    line-height:.95;
    margin:25px 0;
    color:#fff;
}

.about-copy p{
    color:#c7cbd4;
    font-size:1.08rem;
    line-height:1.9;
    margin-bottom:24px;
}

.about-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 42px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    color:#fff;
    text-decoration:none;
    letter-spacing:.2em;
    text-transform:uppercase;
    transition:.35s;
}

.about-cta:hover{
    background:#2563eb;
    border-color:#2563eb;
}

@media (max-width:992px){

    .about-dspecs-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-visual{
        order:-1;
        height:420px;
    }

    .about-copy{
        max-width:100%;
    }

    .about-title{
        font-size:3rem;
    }
}.section-description {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.9;
}#services {
    text-align: center;
}

#services .section-label {
    display: block;
    margin-bottom: 1rem;
}

#services h2 {
    max-width: 700px;
    margin: 0 auto;
}

.section-description {
    max-width: 850px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.9;
}.package-card {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.45);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at top right,
            rgba(37, 99, 235, 0.14),
            transparent 40%
        ),
        rgba(8, 11, 20, 0.92);
    box-shadow:
        inset 0 0 30px rgba(37, 99, 235, 0.04),
        0 24px 60px rgba(0, 0, 0, 0.22);
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    width: 70px;
    height: 2px;
    background: #2563eb;
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.9);
}

.package-card h3 {
    margin-bottom: 1.7rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 54px;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
}

.price-row strong {
    flex-shrink: 0;
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 800;
}

.price-row small {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.price-row strong small {
    margin: 0 0 0.15rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
}

.price-row-stacked {
    align-items: flex-start;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.25rem;
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-radius: 24px;
    background:
        linear-gradient(
            110deg,
            rgba(37, 99, 235, 0.16),
            rgba(5, 7, 13, 0.96) 60%
        );
}

.pricing-cta h3 {
    margin-top: 0.7rem;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
}

.pricing-cta p {
    max-width: 620px;
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.pricing-cta-buttons {
    display: flex;
    flex-shrink: 0;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pricing-call-btn,
.pricing-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
    padding: 0 1.35rem;
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.pricing-call-btn {
    color: #ffffff;
    background: #2563eb;
}

.pricing-social-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-call-btn:hover,
.pricing-social-btn:hover {
    transform: translateY(-3px);
}

.pricing-social-btn:hover {
    color: #05070d;
    background: #ffffff;
}

@media (max-width: 900px) {
    .pricing-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-cta-buttons {
        width: 100%;
    }
}

@media (max-width: 640px) {
    #pricing {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .package-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .price-row {
        gap: 1rem;
    }

    .price-row span {
        font-size: 0.88rem;
    }

    .pricing-cta {
        padding: 1.6rem;
    }

    .pricing-cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pricing-call-btn,
    .pricing-social-btn {
        width: 100%;
    }
}.gallery-quote-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:130px;
    height:42px;

    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

    color:#fff;
    font-family:"Orbitron",sans-serif;
    font-size:.68rem;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    text-decoration:none;

    transition:.3s ease;
}

.gallery-quote-btn:hover{
    background:#fff;
    color:#05070d;
    transform:translateY(-2px);
    box-shadow:0 12px 35px rgba(255,255,255,.18);
}.video-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-top:30px;
}

.video-gallery video{
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 80px rgba(0,0,0,.35);

    transition:.35s ease;
}

.video-gallery video:hover{
    transform:translateY(-8px);
}

.gallery-bottom{
    display:flex;
    justify-content:center;
    margin-top:60px;
}

.gallery-main-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:240px;
    height:58px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.18);

    background:#fff;

    color:#05070d;

    font-family:"Orbitron",sans-serif;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    text-decoration:none;

    transition:.3s;
}

.gallery-main-btn:hover{
    transform:translateY(-3px);
}

@media (max-width:900px){

    .video-gallery{
        grid-template-columns:1fr;
        gap:20px;
    }

}/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  position: relative;
  overflow: hidden;

  padding: 110px 24px;

  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(69, 104, 255, 0.10),
      transparent 30rem
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(120, 75, 255, 0.08),
      transparent 30rem
    ),
    #05070d;
}


.contact-container {
  width: min(1380px, 100%);
  margin: 0 auto;
}


/* =========================
   TOP HEADING
========================= */

.contact-heading {
  max-width: 900px;

  margin-bottom: 52px;
}


.contact-heading h2 {
  margin: 0;

  max-width: 850px;

  color: #fff;

  font-family: "Orbitron", sans-serif;

  font-size: clamp(3rem, 5.5vw, 5.7rem);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.055em;

  text-wrap: balance;
}


.contact-heading p {
  max-width: 760px;

  margin: 26px 0 0;

  color: rgba(255,255,255,0.60);

  font-size: 1rem;

  line-height: 1.75;
}


.contact-services {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 26px;
}


.contact-services span {
  padding: 10px 15px;

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 999px;

  background: rgba(255,255,255,0.025);

  color: rgba(255,255,255,0.76);

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* =========================
   IMAGE + FORM GRID
========================= */

.contact-wrap {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 24px;

  align-items: stretch;
}


/* =========================
   LEFT IMAGE
========================= */

.contact-image {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 720px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);

  border-radius: 28px;

  background: #090c13;

  box-shadow:
    0 30px 90px rgba(0,0,0,0.35);
}


.contact-image img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
    Adjust this if you want more
    of the top or bottom visible
  */
  object-position: center center;

  display: block;

  filter:
    brightness(0.80)
    contrast(1.05)
    saturate(0.95);

  transform: scale(1.01);

  transition:
    transform 0.7s cubic-bezier(.2,.7,.2,1),
    filter 0.4s ease;
}


.contact-image:hover img {
  transform: scale(1.045);

  filter:
    brightness(0.9)
    contrast(1.05)
    saturate(1);
}


/* IMAGE OVERLAY */

.contact-image-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(3,5,10,0.02) 20%,
      rgba(3,5,10,0.10) 50%,
      rgba(3,5,10,0.88) 100%
    );
}


/* IMAGE LABEL */

.contact-image-label {
  position: absolute;

  z-index: 2;

  left: 30px;
  right: 30px;
  bottom: 30px;
}


.contact-image-label span {
  display: block;

  margin-bottom: 8px;

  color: #80a7ff;

  font-size: 0.64rem;

  font-weight: 700;

  letter-spacing: 0.28em;

  text-transform: uppercase;
}


.contact-image-label strong {
  display: block;

  color: #fff;

  font-family: "Orbitron", sans-serif;

  font-size: clamp(1.3rem, 2vw, 1.9rem);

  font-weight: 500;

  letter-spacing: -0.03em;
}


/* =========================
   FORM
========================= */

.contact-card {
  min-width: 0;

  padding: clamp(28px, 4vw, 46px);

  border: 1px solid rgba(255,255,255,0.10);

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.018)
    );

  box-shadow:
    0 30px 90px rgba(0,0,0,0.32);
}


.contact-form {
  display: grid;

  gap: 18px;
}


.contact-form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


.form-field {
  display: grid;

  gap: 9px;
}


.form-field.full {
  grid-column: 1 / -1;
}


.form-field label {
  color: rgba(255,255,255,0.70);

  font-size: 0.68rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  min-height: 58px;

  padding: 0 17px;

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 15px;

  outline: none;

  background:
    rgba(1,3,8,0.74);

  color: #fff;

  font-family:
    "Inter",
    sans-serif;

  font-size: 0.95rem;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.form-field textarea {
  min-height: 180px;

  padding-top: 16px;

  resize: vertical;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
  color:
    rgba(255,255,255,0.28);
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color:
    rgba(128,167,255,0.82);

  background:
    rgba(8,13,24,0.9);

  box-shadow:
    0 0 0 4px
    rgba(90,132,255,0.08);
}


/* =========================
   SUBMIT BUTTON
========================= */

.contact-submit {
  width: 100%;

  min-height: 62px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 13px;

  margin-top: 6px;

  border: none;

  border-radius: 999px;

  background: #fff;

  color: #080b12;

  font-family:
    "Orbitron",
    sans-serif;

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.contact-submit:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 18px 45px
    rgba(100,137,255,0.22);
}


.contact-note {
  margin: 4px 0 0;

  text-align: center;

  color:
    rgba(255,255,255,0.38);

  font-size: 0.74rem;

  line-height: 1.55;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

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


  .contact-image {
    height: 500px;

    min-height: 500px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

  .contact-section {
    padding:
      76px 16px;
  }


  .contact-heading {
    margin-bottom: 34px;
  }


  .contact-heading h2 {
    font-size:
      clamp(
        2.6rem,
        12vw,
        3.8rem
      );
  }


  .contact-heading p {
    margin-top: 20px;

    font-size: 0.95rem;
  }


  .contact-services {
    margin-top: 22px;
  }


  .contact-wrap {
    gap: 16px;
  }


  .contact-image {
    height: 330px;

    min-height: 330px;

    border-radius: 20px;
  }


  .contact-image-label {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }


  .contact-card {
    padding:
      24px 17px;

    border-radius: 20px;
  }


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


  .form-field.full {
    grid-column: auto;
  }

}

/* ========================================
   DSPECTSTARS GALLERY
======================================== */

.gallery-section {
  position: relative;
  overflow: hidden;

  padding:
    clamp(90px, 9vw, 140px)
    24px;

  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(70, 105, 255, 0.10),
      transparent 32rem
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(122, 72, 255, 0.08),
      transparent 30rem
    ),
    #05070d;
}


.gallery-container {
  width: min(1380px, 100%);
  margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.gallery-heading {
  max-width: 850px;

  margin-bottom:
    clamp(42px, 6vw, 70px);
}


.gallery-heading h2 {
  margin: 0;

  color: #fff;

  font-family:
    "Orbitron",
    sans-serif;

  font-size:
    clamp(3rem, 6vw, 6rem);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.055em;
}


.gallery-heading p {
  max-width: 650px;

  margin: 25px 0 0;

  color:
    rgba(255,255,255,0.58);

  font-size: 1rem;

  line-height: 1.75;
}


/* ========================================
   GRID
======================================== */

.ds-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(12, minmax(0, 1fr));

  grid-auto-rows: 240px;

  gap: 14px;
}


/* DEFAULT IMAGE */

.ds-gallery-item {
  position: relative;

  grid-column: span 4;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  background: #080b12;
}


/* LARGE IMAGE */

.gallery-large {
  grid-column: span 8;

  grid-row: span 2;
}


/* WIDE IMAGE */

.gallery-wide {
  grid-column: span 8;
}


/* TALL IMAGE */

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


/* ========================================
   IMAGE
======================================== */

.ds-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(.2,.7,.2,1),
    filter 0.5s ease;

  filter:
    brightness(0.88)
    contrast(1.03);
}


/* SUBTLE DARK FADE */

.ds-gallery-item::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(2,4,9,0.22) 100%
    );

  transition:
    opacity 0.4s ease;
}


/* HOVER */

.ds-gallery-item:hover img {
  transform: scale(1.055);

  filter:
    brightness(1)
    contrast(1.02);
}


.ds-gallery-item:hover::after {
  opacity: 0.4;
}


/* ========================================
   SCROLL GLIDE ANIMATION
======================================== */

.gallery-reveal {
  opacity: 0;

  transform:
    translateY(55px);

  transition:
    opacity 0.9s
    cubic-bezier(.2,.7,.2,1),

    transform 0.9s
    cubic-bezier(.2,.7,.2,1);
}


.gallery-reveal.gallery-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* SLIGHT DELAYS */

.ds-gallery-item:nth-child(2) {
  transition-delay: 0.08s;
}

.ds-gallery-item:nth-child(3) {
  transition-delay: 0.14s;
}

.ds-gallery-item:nth-child(4) {
  transition-delay: 0.06s;
}

.ds-gallery-item:nth-child(5) {
  transition-delay: 0.12s;
}

.ds-gallery-item:nth-child(6) {
  transition-delay: 0.18s;
}

.ds-gallery-item:nth-child(7) {
  transition-delay: 0.06s;
}

.ds-gallery-item:nth-child(8) {
  transition-delay: 0.12s;
}

.ds-gallery-item:nth-child(9) {
  transition-delay: 0.18s;
}

.ds-gallery-item:nth-child(10) {
  transition-delay: 0.06s;
}

.ds-gallery-item:nth-child(11) {
  transition-delay: 0.12s;
}

.ds-gallery-item:nth-child(12) {
  transition-delay: 0.18s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

  .ds-gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-auto-rows: 280px;
  }


  .ds-gallery-item,
  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }


  .gallery-large {
    grid-column: span 2;

    grid-row: span 2;
  }


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

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 640px) {

  .gallery-section {
    padding:
      76px
      16px;
  }


  .gallery-heading {
    margin-bottom: 34px;
  }


  .gallery-heading h2 {
    font-size:
      clamp(
        2.7rem,
        13vw,
        4rem
      );
  }


  .gallery-heading p {
    margin-top: 18px;

    font-size: 0.95rem;
  }


  .ds-gallery-grid {
    display: grid;

    grid-template-columns: 1fr;

    grid-auto-rows: auto;

    gap: 12px;
  }


  .ds-gallery-item,
  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: auto;

    grid-row: auto;

    height: 310px;

    border-radius: 16px;
  }


  /* FIRST IMAGE BIGGER */

  .ds-gallery-item:first-child {
    height: 420px;
  }

}


/* REDUCED MOTION ACCESSIBILITY */

@media
(prefers-reduced-motion: reduce) {

  .gallery-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }


  .ds-gallery-item img {
    transition: none;
  }

}.ds-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(12, minmax(0, 1fr));

  grid-auto-rows: 340px;

  grid-auto-flow: dense;

  gap: 14px;
}@media (max-width: 640px) {

  .gallery-section {
    padding: 72px 14px;
  }


  .ds-gallery-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

    grid-auto-rows: auto;

    grid-auto-flow: row;
  }


  .ds-gallery-item,
  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: auto !important;
    grid-row: auto !important;

    width: 100%;

    height: auto;

    min-height: 0;

    aspect-ratio: 4 / 3;

    border-radius: 16px;
  }


  .ds-gallery-item img {
    position: relative;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
  }


  /* Feature images can be slightly taller */
  .ds-gallery-item:nth-child(1),
  .ds-gallery-item:nth-child(5),
  .ds-gallery-item:nth-child(8) {
    aspect-ratio: 4 / 5;
  }


  /* Wide-looking images */
  .ds-gallery-item:nth-child(3),
  .ds-gallery-item:nth-child(10) {
    aspect-ratio: 16 / 10;
  }

}/* ========================================
   DSPECTSTARS FOOTER
======================================== */

.ds-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 90px 24px 34px;

  background: #020307;

  border-top: 1px solid rgba(255,255,255,.07);
}


/* OPTIONAL BACKGROUND IMAGE */

.ds-footer-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  background:
    url("assets/stars.png")
    center 45% / cover
    no-repeat;

  opacity: .18;

  filter:
    grayscale(.35)
    brightness(.42);
}


/* DARK OVERLAY */

.ds-footer-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(62, 96, 180, .10),
      transparent 35rem
    ),
    linear-gradient(
      180deg,
      rgba(2,3,7,.82) 0%,
      rgba(2,3,7,.94) 65%,
      #020307 100%
    );
}


/* MAIN CONTAINER */

.ds-footer-inner {
  position: relative;

  width: min(1100px, 100%);

  margin: 0 auto;

  text-align: center;
}


/* ========================================
   BRAND
======================================== */

.ds-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.ds-footer-logo {
  width: 95px;
  height: 95px;

  margin-bottom: 18px;

  object-fit: contain;
}


.ds-footer-brand h2 {
  margin: 0;

  color: #fff;

  font-family: "Orbitron", sans-serif;

  font-size:
    clamp(1.65rem, 3vw, 2.4rem);

  font-weight: 600;

  letter-spacing: .18em;
}


.ds-footer-tagline {
  display: block;

  margin-top: 10px;

  color: #80a7ff;

  font-size: .63rem;
  font-weight: 700;

  letter-spacing: .35em;

  text-transform: uppercase;
}


.ds-footer-brand p {
  max-width: 680px;

  margin: 26px auto 0;

  color: rgba(255,255,255,.58);

  font-size: .96rem;

  line-height: 1.75;
}


/* ========================================
   NAVIGATION
======================================== */

.ds-footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 12px 34px;

  margin-top: 38px;
}


.ds-footer-nav a {
  position: relative;

  color: rgba(255,255,255,.72);

  font-size: .76rem;
  font-weight: 600;

  letter-spacing: .12em;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    color .25s ease,
    transform .25s ease;
}


.ds-footer-nav a:hover {
  color: #fff;

  transform: translateY(-2px);
}


/* LITTLE DOT BETWEEN LINKS */

.ds-footer-nav a:not(:last-child)::after {
  content: "";

  position: absolute;

  width: 3px;
  height: 3px;

  top: 50%;
  right: -19px;

  border-radius: 50%;

  background: rgba(255,255,255,.25);

  transform: translateY(-50%);
}


/* ========================================
   CONTACT
======================================== */

.ds-footer-contact {
  margin-top: 30px;
}


.ds-footer-contact a {
  color: rgba(255,255,255,.82);

  font-size: 1rem;
  font-weight: 500;

  text-decoration: none;

  transition: color .25s ease;
}


.ds-footer-contact a:hover {
  color: #80a7ff;
}


/* ========================================
   SOCIAL ICONS
======================================== */

.ds-footer-socials {
  display: flex;
  justify-content: center;

  gap: 12px;

  margin-top: 24px;
}


.ds-footer-socials a {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.13);

  border-radius: 50%;

  background: rgba(255,255,255,.025);

  color: #fff;

  font-size: 1rem;

  text-decoration: none;

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}


.ds-footer-socials a:hover {
  transform: translateY(-4px);

  border-color: rgba(128,167,255,.60);

  background: rgba(128,167,255,.09);
}


/* ========================================
   DIVIDER
======================================== */

.ds-footer-divider {
  width: 100%;

  height: 1px;

  margin: 55px 0 30px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.13),
      transparent
    );
}


/* ========================================
   COPYRIGHT
======================================== */

.ds-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 9px;
}


.ds-footer-bottom p {
  margin: 0;

  color: rgba(255,255,255,.40);

  font-size: .67rem;
  font-weight: 600;

  letter-spacing: .30em;

  text-transform: uppercase;
}


.ds-footer-credit {
  color: rgba(255,255,255,.30) !important;
}


/* ========================================
   PAYMENT METHODS
======================================== */

.ds-footer-payments {
  margin-top: 28px;
  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,.06);
}


.ds-footer-payments > span {
  display: block;

  margin-bottom: 18px;

  color: rgba(255,255,255,.26);

  font-size: .55rem;
  font-weight: 700;

  letter-spacing: .30em;

  text-transform: uppercase;
}


.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 22px;
}


.payment-icons i {
  color: rgba(255,255,255,.58);

  font-size: 2rem;

  transition:
    color .25s ease,
    transform .25s ease;
}


.payment-icons i:hover {
  color: #fff;

  transform: translateY(-2px);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 640px) {

  .ds-footer {
    padding:
      70px 18px
      calc(28px + env(safe-area-inset-bottom));
  }


  .ds-footer-logo {
    width: 78px;
    height: 78px;

    margin-bottom: 15px;
  }


  .ds-footer-brand h2 {
    font-size: 1.45rem;

    letter-spacing: .13em;
  }


  .ds-footer-tagline {
    font-size: .55rem;

    letter-spacing: .27em;
  }


  .ds-footer-brand p {
    max-width: 420px;

    margin-top: 22px;

    font-size: .89rem;

    line-height: 1.7;
  }


  .ds-footer-nav {
    gap: 18px 24px;

    margin-top: 32px;
  }


  .ds-footer-nav a {
    font-size: .67rem;
  }


  /* Remove dots on mobile */

  .ds-footer-nav a::after {
    display: none;
  }


  .ds-footer-contact {
    margin-top: 28px;
  }


  .ds-footer-contact a {
    font-size: .94rem;
  }


  .ds-footer-socials {
    margin-top: 22px;
  }


  .ds-footer-socials a {
    width: 44px;
    height: 44px;
  }


  .ds-footer-divider {
    margin: 42px 0 26px;
  }


  .ds-footer-bottom {
    gap: 11px;
  }


  .ds-footer-bottom p {
    max-width: 330px;

    font-size: .56rem;

    line-height: 1.7;

    letter-spacing: .22em;
  }


  .payment-icons {
    gap: 17px;
  }


  .payment-icons i {
    font-size: 1.7rem;
  }

}


/* ==================================================
   FINAL MOBILE NAV OVERRIDE
   Centered links + centered phone / Instagram icons
   Compatible with the final DSPECTSTARS mobile nav.
   KEEP THIS AT THE VERY BOTTOM OF styles.css
================================================== */

@media (max-width: 900px) {

  /* Header stays clean with brand centered */
  .header-inner {
    position: relative;
    display: flex;
    width: calc(100% - 32px);
    min-height: 70px;
    align-items: center;
    justify-content: flex-end;
    margin: 0 auto;
  }

  .header-name {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1002;
    max-width: calc(100% - 130px);
    margin: 0;
    overflow: hidden;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translate(-50%, -50%);
  }

  .desktop-nav,
  .header-instagram {
    display: none !important;
  }

  /* Hamburger */
  .menu-button {
    position: relative;
    z-index: 1102;
    display: block;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin: 0 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    outline: 0;
    background: rgba(4,7,14,.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Supports both the old menu-line HTML and the final plain-span HTML */
  .menu-button > span,
  .menu-button .menu-line {
    position: absolute;
    left: 50%;
    display: block;
    width: 19px;
    height: 1.5px;
    margin: 0;
    border: 0;
    border-radius: 20px;
    background: #fff;
    transform: translateX(-50%);
    transition:
      top .22s ease,
      transform .22s ease;
  }

  .menu-button > span:first-child,
  .menu-button .menu-line-one {
    top: 19px;
  }

  .menu-button > span:last-child,
  .menu-button .menu-line-two {
    top: 26px;
  }

  .menu-button.is-open > span:first-child,
  .menu-button.button-open .menu-line-one {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
  }

  .menu-button.is-open > span:last-child,
  .menu-button.button-open .menu-line-two {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }

  /* Fullscreen overlay */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1099;
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 12%, rgba(43,91,255,.15), transparent 25rem),
      radial-gradient(circle at 50% 100%, rgba(132,92,255,.10), transparent 25rem),
      #05070d;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition:
      opacity .20s ease,
      visibility 0s linear .20s;
  }

  /* Supports both current and previous JS class names */
  .mobile-menu.is-open,
  .mobile-menu.menu-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition:
      opacity .20s ease,
      visibility 0s linear 0s;
  }

  .mobile-menu-bg,
  .mobile-menu-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mobile-menu-grid {
    opacity: .11;
    background-image:
      linear-gradient(rgba(82,239,255,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(82,239,255,.08) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .mobile-menu-glow {
    pointer-events: none;
  }

  /* Inner wrapper used by final HTML */
  .mobile-menu-inner {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:
      calc(90px + env(safe-area-inset-top))
      22px
      calc(28px + env(safe-area-inset-bottom));
  }

  /* If using the older HTML without mobile-menu-inner,
     the nav still centers correctly */
  .mobile-menu > .mobile-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: min(420px, calc(100% - 44px));
    transform: translate(-50%, -50%);
  }

  .mobile-nav {
    position: relative;
    z-index: 3;
    display: flex;
    width: min(430px, 100%);
    max-width: 430px;
    max-height: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: visible;
    text-align: center;
  }

  /* Final HTML links */
  .mobile-nav a {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0;
    padding: 11px 8px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.86);
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.55rem, 7vw, 2.55rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: .035em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav a:first-child {
    border-top: 1px solid rgba(255,255,255,.07);
  }

  .mobile-nav a:hover,
  .mobile-nav a:active {
    color: #fff;
    text-shadow: 0 0 20px rgba(82,239,255,.28);
  }

  /* Number labels from final HTML */
  .mobile-nav a > span {
    position: absolute;
    left: 8px;
    width: auto;
    color: rgba(128,167,255,.65);
    font-family: "Inter", sans-serif;
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .12em;
  }

  .mobile-nav a > strong {
    font: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }

  /* Do not let old Instagram-link styling interfere */
  .mobile-nav .mobile-instagram {
    width: 52px;
    min-height: 52px;
    height: 52px;
    margin: 26px auto 0;
    padding: 0;
    border: 1px solid rgba(82,239,255,.30);
    border-radius: 50%;
    background: rgba(82,239,255,.05);
    font-size: 1.08rem;
  }

  /* Final bottom icon row */
  .mobile-menu-bottom {
    width: 100%;
    max-width: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 30px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
  }

  /* Make PHONE an icon-only circle */
  .mobile-phone {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: 0;
    text-decoration: none;
    transition:
      transform .2s ease,
      border-color .2s ease,
      background .2s ease;
  }

  .mobile-phone i {
    color: #fff;
    font-size: 1rem;
  }

  /* Instagram icon circle */
  .mobile-social {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(255,255,255,.035);
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    transition:
      transform .2s ease,
      border-color .2s ease,
      background .2s ease;
  }

  .mobile-phone:active,
  .mobile-social:active {
    transform: scale(.94);
    border-color: rgba(82,239,255,.48);
    background: rgba(82,239,255,.08);
  }

  body.mobile-menu-open,
  body.menu-active,
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 390px) {

  .header-name {
    max-width: calc(100% - 115px);
    font-size: .68rem;
    letter-spacing: .11em;
  }

  .menu-button {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .menu-button > span:first-child,
  .menu-button .menu-line-one {
    top: 17px;
  }

  .menu-button > span:last-child,
  .menu-button .menu-line-two {
    top: 24px;
  }

  .menu-button.is-open > span:first-child,
  .menu-button.is-open > span:last-child,
  .menu-button.button-open .menu-line-one,
  .menu-button.button-open .menu-line-two {
    top: 21px;
  }

  .mobile-menu-inner {
    padding-right: 17px;
    padding-left: 17px;
  }

  .mobile-nav a {
    min-height: 56px;
    font-size: clamp(1.35rem, 6.7vw, 2rem);
  }

  .mobile-menu-bottom {
    margin-top: 22px;
  }

  .mobile-phone,
  .mobile-social {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
  }
}
/* ==================================================
   FINAL MOBILE HERO FIT
   KEEP AT VERY BOTTOM OF styles.css
================================================== */

@media (max-width: 700px) {

  /* FULL PHONE SCREEN */
  .hero {
    position: relative;

    width: 100%;
    min-height: 100svh;
    height: 100svh;

    overflow: hidden;
  }


  /* BACKGROUND */
  .hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /* moves image framing slightly upward */
    object-position: center 43%;

    transform: none;

    filter:
      brightness(0.48)
      contrast(1.08)
      saturate(1.18);
  }


  /* HEADER */
  .site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;
  }


  .header-inner {
    width: calc(100% - 28px);

    min-height: 72px;
  }


  /* MAIN HERO CONTENT */
  .hero-content {
    position: relative;

    z-index: 20;

    width: 100%;

    min-height: 100svh;
    height: 100svh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
      82px
      18px
      78px;

    text-align: center;
  }


  /* CONTENT GROUP */
  .logo-area {
    width: 100%;

    max-width: 430px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    /* puts whole block slightly lower */
    transform: translateY(8px);
  }


  /* LOGO */
  .hero-logo {
    width: clamp(
      170px,
      47vw,
      220px
    );

    max-height: 220px;

    margin: 0 auto;

    object-fit: contain;
  }


  /* DSPECTSTARS NAME */
  .hero-brand-name {
    margin-top: 14px;

    font-size:
      clamp(
        1rem,
        4.8vw,
        1.28rem
      );

    line-height: 1;

    letter-spacing: 0.14em;

    text-indent: 0.14em;
  }


  /* BUTTONS */
  .hero-button-row {
    width: 100%;

    max-width: 360px;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 25px;
  }


  .hero-action-button {
    min-width: 0;

    min-height: 58px;

    grid-template-columns:
      auto 1fr;

    gap: 9px;

    padding: 9px 10px;

    border-radius: 12px 4px 12px 4px;
  }


  /* ICON */
  .button-icon {
    width: 34px;
    height: 34px;

    border-radius: 9px 3px 9px 3px;

    font-size: 0.72rem;
  }


  /* HIDE SMALL TOP WORDING */
  .button-copy small {
    display: none;
  }


  /* BUTTON TEXT */
  .button-copy strong {
    font-size: 0.55rem;

    line-height: 1.2;

    letter-spacing: 0.07em;

    white-space: nowrap;
  }


  /* HIDE ARROW ON MOBILE */
  .button-arrow {
    display: none;
  }


  /* LITTLE SERVICE LABELS AT BOTTOM */
  .hero-services {
    position: absolute;

    right: 12px;
    bottom:
      calc(
        15px +
        env(safe-area-inset-bottom)
      );
    left: 12px;

    z-index: 30;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: nowrap;

    gap: 6px;

    padding: 0;

    font-size: 0.32rem;

    line-height: 1;

    letter-spacing: 0.09em;

    white-space: nowrap;
  }


  .service-dot {
    width: 3px;
    height: 3px;
  }

}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 390px) {

  .hero-content {
    padding:
      76px
      14px
      68px;
  }


  .logo-area {
    transform: translateY(4px);
  }


  .hero-logo {
    width: 155px;
  }


  .hero-brand-name {
    margin-top: 11px;

    font-size: 0.92rem;
  }


  .hero-button-row {
    max-width: 330px;

    margin-top: 21px;

    gap: 8px;
  }


  .hero-action-button {
    min-height: 54px;

    padding: 8px;
  }


  .button-icon {
    width: 31px;
    height: 31px;
  }


  .button-copy strong {
    font-size: 0.49rem;
  }


  .hero-services {
    font-size: 0.28rem;

    gap: 5px;
  }

}


/* ==================================================
   SHORT PHONES
================================================== */

@media
(max-width: 700px)
and (max-height: 720px) {

  .hero-content {
    padding-top: 66px;
    padding-bottom: 58px;
  }


  .logo-area {
    transform: none;
  }


  .hero-logo {
    width: 140px;
  }


  .hero-brand-name {
    margin-top: 8px;
  }


  .hero-button-row {
    margin-top: 18px;
  }


  .hero-action-button {
    min-height: 50px;
  }

}