:root {
  /* ===== Dark Premium System ===== */
  --bg: #0b1120; /* page background */
  --bg2: #0f172a; /* deep panel */
  --card: rgba(255, 255, 255, 0.04);
  --card2: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.1);

  --text: #e5e7eb;
  --muted: #aab3c5;

  --brand: #0055ff;
  --brand-sec: #0041cc;
  --brand-soft: rgba(37, 99, 235, 0.14);

  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.35);

  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r24: 24px;

  /* spacing rhythm */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 70% 20%,
      rgba(37, 99, 235, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 12% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

select option {
  color: #020617 !important;
}
.muted {
  color: var(--muted) !important;
}

/* 1. Define the animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Apply it to your Hero elements */
.reveal-hero {
  opacity: 0; /* Keeps it hidden until the animation starts */
  animation: heroFadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s; /* Optional: adds a slight polished delay */
}

.spin-continuous {
  /* Apply the 'spin' animation: 2 seconds duration, linear timing, infinite loop */
  animation: spin 40s linear infinite;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/* Define the animation sequence */
@keyframes spin {
  from {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  to {
    transform: rotate(360deg); /* End at 360 degrees (a full turn) */
  }
}

/* Bootstrap overrides (dark) */
.border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.bg-white {
  background: transparent !important;
}
.text-bg-light {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--text) !important;
}
.bg-light {
  background: rgba(255, 255, 255, 0.04) !important;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.14) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
  opacity: 0.85;
}

/* ===== Navbar (glass on dark) ===== */
.logo {
  height: 70px;
  width: auto;
}
.navbar {
  background: rgba(11, 17, 32, 0.55) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.navbar-brand {
  color: var(--text) !important;
  letter-spacing: -0.02em;
}
.brand-dot {
  color: var(--brand);
}

.nav-link {
  color: rgba(229, 231, 235, 0.75) !important;
  font-weight: 500;
}
.nav-link:hover {
  color: rgba(229, 231, 235, 0.95) !important;
}

.premium-navbar {
  background: rgba(11, 17, 32, 0.68) !important;
  border-bottom: 0px solid transparent;
}

.premium-navbar .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  padding: 10px 14px !important;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05);
}

.premium-navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.16);
}

/* Premium toggler */
.premium-toggler {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0px solid transparent !important;
  border-radius: 0px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.premium-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.18) !important;
}

.premium-toggler .toggler-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
  transform-origin: center;
}

/* When menu is open */
.premium-toggler:not(.collapsed) .line-1 {
  transform: translateY(8px) rotate(45deg);
}

.premium-toggler:not(.collapsed) .line-2 {
  opacity: 0;
}

.premium-toggler:not(.collapsed) .line-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu style */
@media (max-width: 991.98px) {
  .premium-navbar .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .premium-navbar .navbar-nav {
    gap: 8px;
  }

  .premium-navbar .nav-link {
    padding: 14px 14px !important;
    font-size: 15px;
  }

  .premium-navbar .nav-cta-wrap {
    flex-direction: column;
  }

  .premium-navbar .nav-cta-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Buttons (premium micro) ===== */
.btn {
  border-radius: var(--r12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}
.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.22);
  transition: all 0.3s ease;
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  background: var(--brand-sec);
  border-color: var(--brand-sec);
  box-shadow: 0 22px 55px rgba(0, 85, 255, 0.35);
  transform: translateY(-2px);
}

.btn-soft {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #cfe0ff;
}
.btn-soft:hover {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  color: #e6f0ff;
}

.btn-highlight {
  background: #ff8a00;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-highlight:hover {
  background: #e67600;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.35);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 76px;
  background: #070b14;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.badge-soft {
  background: rgba(37, 99, 235, 0.12);
  color: #cfe0ff;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.section {
  position: relative;
  padding: var(--s7) 0;
  background: #070b14;
  z-index: 1;
  scroll-margin-top: 100px;
}
.section.pt-0 {
  padding-top: 0 !important;
}

.section-title {
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: 3em;
}

/* Hero right card */
.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r24);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
}
.mini-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r16);
  background: rgba(255, 255, 255, 0.04);
}

.price-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.price {
  font-size: 42px;
  font-weight: 600;
}

/* ------ Services -------*/
.service-card h3 {
  font-size: 1.25em;
}

/* ===== Cards (dark premium) ===== */
.feature-card,
.service-card,
.work-card,
.quote-card,
.price-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r20);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.service-card:hover,
.work-card:hover,
.feature-card:hover,
.price-card:hover,
.quote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  border-color: rgba(37, 99, 235, 0.3);
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.14);
  color: #dbe9ff;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

/* Startup pack section */
#startup {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 91, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(88, 28, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #020817 0%, #030b1a 100%);
  overflow: hidden;
}
#startup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.9)
  );
  pointer-events: none;
}
.startup-pack {
  background:
    radial-gradient(
      1000px 520px at 20% 0%,
      rgba(37, 99, 235, 0.18),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r24);
  box-shadow: var(--shadow-soft);
}
.check-item i {
  color: #8fb3ff;
}

.price-card {
  border-radius: var(--r24);
}
.price-card.featured {
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 26px 90px rgba(37, 99, 235, 0.16);
  transform: translateY(-4px);
}
.price-card.featured:hover {
  transform: translateY(-8px);
}

/* Inputs (dark) */
.form-control,
.form-select,
textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text) !important;
  border-radius: var(--r12) !important;
}
.form-control::placeholder,
textarea::placeholder {
  color: rgba(229, 231, 235, 0.45);
}
.form-control:focus,
.form-select:focus,
textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.18) !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
}
.form-label {
  color: rgba(229, 231, 235, 0.82);
}

/* Steps */
.ep-process-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 91, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(88, 28, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #020817 0%, #030b1a 100%);
  overflow: hidden;
}

.ep-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.9)
  );
  pointer-events: none;
}

.ep-process-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 48px;
}

.ep-process-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(98, 132, 255, 0.25);
  background: rgba(20, 31, 61, 0.55);
  color: #9ab6ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.ep-process-title {
  margin: 18px 0 10px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8fbff;
}

.ep-process-subtitle {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(232, 238, 255, 0.72);
}

.ep-process-wrap {
  position: relative;
  z-index: 2;
}

.ep-process-line {
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(72, 113, 255, 0),
    rgba(72, 113, 255, 0.55),
    rgba(103, 214, 255, 0.55),
    rgba(72, 113, 255, 0)
  );
  opacity: 0.7;
  z-index: 0;
}

.ep-process-card {
  position: relative;
  height: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 35, 0.92) 0%,
    rgba(7, 12, 24, 0.88) 100%
  );
  border: 1px solid rgba(120, 151, 255, 0.12);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ep-process-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(61, 126, 255, 0.18) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.ep-process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(115, 159, 255, 0.32);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(88, 135, 255, 0.12) inset,
    0 0 30px rgba(47, 108, 255, 0.14);
}

.ep-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.ep-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(24, 48, 100, 0.9),
    rgba(13, 30, 70, 0.75)
  );
  border: 1px solid rgba(113, 154, 255, 0.22);
  color: #b9cfff;
  box-shadow:
    0 8px 24px rgba(27, 73, 175, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ep-step-icon svg {
  width: 24px;
  height: 24px;
}

.ep-step-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(121, 154, 255, 0.35);
  opacity: 0.85;
}

.ep-process-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f7f9ff;
  letter-spacing: -0.02em;
}

.ep-process-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(231, 237, 255, 0.72);
  max-width: 95%;
}

/* optional stagger look on large screens */
@media (min-width: 1200px) {
  .ep-process-wrap .col-xl-3:nth-child(2) .ep-process-card,
  .ep-process-wrap .col-xl-3:nth-child(4) .ep-process-card {
    margin-top: 26px;
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .ep-process-section {
    padding: 90px 0;
  }

  .ep-process-line {
    display: none;
  }
}

/* mobile */
@media screen and (max-width: 480px) {
  .ep-process-head {
    margin-bottom: 34px;
  }

  .ep-process-title {
    font-size: 2.4rem;
  }

  .ep-process-subtitle {
    font-size: 0.98rem;
  }

  .ep-process-card {
    padding: 22px 20px 20px;
    border-radius: 20px;
  }

  .ep-step-top {
    margin-bottom: 22px;
  }

  .ep-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .ep-step-number {
    font-size: 2rem;
  }

  .ep-process-card h3 {
    font-size: 1.2rem;
  }

  .ep-process-card p {
    max-width: 100%;
  }

  /* logo */
  .logo {
    height: 60px;
    width: auto;
  }
  .lead {
    font-size: 1em;
  }
  .section-title {
    font-size: 2.5em;
  }
  .badge-soft {
    font-size: 0.6em;
  }
  .btn {
    width: 100%;
  }
  .hero {
    padding: 50px 10px 40px !important;
  }
  .work-section,
  .section,
  .ep-process-section {
    height: auto;
    padding: 40px 20px !important;
  }
  /* work */
  .work-track {
    display: grid !important;
    gap: 40px;
    padding: 0px 10vw;
  }
  .entastz {
    top: 10% !important;
  }
  .work-overlay {
    background: rgba(0, 6, 11, 0.8) !important;
    padding: 10px !important;
  }
  .work-overlay p {
    font-size: 12px !important;
  }
  .work-overlay h3 {
    font-size: 14px !important;
  }
  .footer {
    padding: 20px 15px !important;
  }
  .main-wrapper {
    width: 85% !important;
  }
}

/*------ Work-----*/
.entastz {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 22vw;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}
.work-section {
  padding: 120px 0;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 91, 255, 0.18), transparent 35%),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.18),
      transparent 35%
    ),
    linear-gradient(180deg, #020817, #020617);
  overflow: hidden;
}

.work-head {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(98, 132, 255, 0.25);
  background: rgba(20, 31, 61, 0.55);
  color: #9ab6ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.work-title {
  font-size: 3em;
  font-weight: 800;
  color: #fff;
  margin: 10px 0;
}

.work-sub {
  color: rgba(255, 255, 255, 0.7);
}

.work-scroll {
  width: 100%;
  overflow: hidden;
}

.work-track {
  display: flex;
  gap: 40px;
  padding: 0px 10vw;
}

.work-card {
  flex: 0 0 30vh;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .work-card {
    flex: 0 0 40vh;
  }
}

@media (min-width: 1200px) {
  .work-card {
    flex: 0 0 50vh;
  }
}

@media (min-width: 1400px) {
  .work-card {
    flex: 0 0 60vh;
  }
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.work-card:hover img {
  transform: scale(1.08);
}

.work-card:hover .work-overlay {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.35s ease;
}

.work-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-color: #3b82f6;
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.work-overlay h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.work-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0px;
}

/* ------ bg ------ */
.pricing-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(13, 104, 240, 0.45),
    rgba(203, 43, 235, 0.35),
    transparent 70%
  );
  top: -300px;
  left: 10%;
  transform: translateX(-50%);
  filter: blur(120px);
  z-index: 0;
}

/*-------- magic starts -------*/
/* ===== FULL PAGE PREMIUM GALAXY BACKGROUND ===== */
.cosmic-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cosmic-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(59, 130, 246, 0.16) 0%,
      transparent 22%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(168, 85, 247, 0.14) 0%,
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 78%,
      rgba(37, 99, 235, 0.12) 0%,
      transparent 24%
    ),
    radial-gradient(
      circle at 78% 82%,
      rgba(147, 51, 234, 0.12) 0%,
      transparent 26%
    ),
    linear-gradient(180deg, #030816 0%, #050b1d 45%, #060d22 100%);
  filter: saturate(120%);
}

.cosmic-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 45%,
    rgba(0, 0, 0, 0.12) 70%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

/* ===== CTA Section ===== */
.cta-section {
  --color1: rgba(0, 85, 255, 0.25);
  --color2: rgba(140, 0, 255, 0.25);

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 30%, var(--color1), transparent 40%),
    radial-gradient(circle at 80% 70%, var(--color2), transparent 40%),
    linear-gradient(180deg, #0b0b0f, #121218);
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: var(--color1);
  filter: blur(160px);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: var(--color2);
  filter: blur(160px);
  border-radius: 50%;
  z-index: -1;
}

/*---- rocket ------*/
.rocket-image {
  position: absolute;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
  width: min(500px, 80vw);
  will-change: transform;
  z-index: 9;
}
/* ===== Footer ===== */
.footer {
  background: #070b14;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}

/* ===== GSAP reveal helper ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-ready .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn,
  .service-card,
  .work-card,
  .feature-card,
  .price-card {
    transition: none !important;
  }
}

/* Responsive tuning */
@media (max-width: 991.98px) {
  .hero {
    padding: 96px 0 66px;
  }
}

/* the moving mesh layer */
.hero-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      600px 600px at 20% 30%,
      rgba(37, 99, 235, 0.35),
      transparent 60%
    ),
    radial-gradient(
      520px 520px at 80% 40%,
      rgba(99, 102, 241, 0.25),
      transparent 60%
    ),
    radial-gradient(
      520px 520px at 50% 85%,
      rgba(59, 130, 246, 0.2),
      transparent 60%
    );

  filter: blur(4px);
  opacity: 0.95;
}

@keyframes meshFloat {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1.02);
  }
  50% {
    transform: translate3d(2%, -1%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(1%, 2%, 0) scale(1.03);
  }
}

/* keep content above mesh */
.hero .container {
  position: relative;
  z-index: 2;
}
