/*Buttons*/

/* BUTTONS */
.btn-primary {
  background: #5483b3;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #6fa6d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(84, 131, 179, 0.4);
}

.btn-secondary {
  border: 1px solid #5483b3;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
}

.btn-secondary:hover {
  background: #052659;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: rgb(193, 232, 255);
}
/*Cards*/
.card {
  padding: 30px;
  border-radius: var(--radius);

  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-light);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 1000;

  isolation: isolate;

  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.35s ease;
}

.navbar::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(2, 16, 36, 0.28),
    rgba(2, 16, 36, 0)
  );

  z-index: -1;

  pointer-events: none;
}

/* SCROLLED STATE */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(28px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* CONTAINER */
.nav-container {
  max-width: 1280px;

  margin: 0 auto;
  padding: 22px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 52px;
  width: auto;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);

  filter: brightness(1.2) drop-shadow(0 0 12px rgba(193, 232, 255, 0.25));
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;

  text-decoration: none;
  color: #cbd5e1;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;

  transition: color 0.3s ease;
}

/* UNDERLINE HOVER */
.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1px;

  background: #c1e8ff;

  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  padding: 11px 20px;

  border-radius: 10px;

  background: rgba(84, 131, 179, 0.15);

  border: 1px solid rgba(193, 232, 255, 0.18);

  backdrop-filter: blur(10px);

  color: #ffffff !important;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);

  background: rgba(84, 131, 179, 0.32);

  box-shadow:
    0 10px 30px rgba(84, 131, 179, 0.18),
    0 0 20px rgba(193, 232, 255, 0.08);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;

  font-size: 24px;
  color: white;

  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar.scrolled {
    backdrop-filter: blur(14px);
  }

  .nav-container {
    padding: 18px 20px;
  }

  .logo img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 40px);

    display: none;
    flex-direction: column;

    gap: 20px;

    padding: 28px;

    border-radius: 18px;

    background: rgba(2, 16, 36, 0.92);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

  .nav-links.active {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 140px 20px 100px;

  overflow: hidden;
}
.hero-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 920px;
}

/* TAG */
.hero-tag {
  display: inline-flex;
  align-items: center;

  padding: 10px 18px;

  margin-bottom: 28px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(193, 232, 255, 0.1);

  color: #9fb3c8;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;

  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;

  letter-spacing: -2px;
  margin-bottom: 26px;

  color: #ffffff;
}
.accent {
  color: #c1e8ff;
  text-shadow: 0 0 12px rgba(193, 232, 255, 0.4);
}
.hero p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.8;

  color: #aebed0;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  margin-bottom: 40px;
}

/* STATS ROW */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;
}

.hero-stat {
  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);

  color: #9fb3c8;

  font-size: 14px;
}
.scroll-indicator {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 65px;

  width: 100%;
  z-index: 5;
}
/* Mouse body */
.mouse {
  width: 32px;
  height: 54px;

  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;

  position: relative;

  backdrop-filter: blur(10px);

  background: rgba(255, 255, 255, 0.02);

  transition: 0.3s ease;
}

/* Scroll wheel */
.wheel {
  width: 4px;
  height: 9px;
  background: #c1e8ff;
  border-radius: 2px;

  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-50%);

  animation: scroll-wheel 1.5s infinite;
}
@keyframes scroll-wheel {
  0% {
    opacity: 0;
    transform: translatey(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translatey(16px);
  }
}

/* MOBILE */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stat {
    font-size: 13px;
  }
  .scroll-indicator {
    margin-top: 45px;
  }

  .mouse {
    width: 28px;
    height: 48px;
  }

  .wheel {
    top: 10px;
  }
}

/* SECTION */
.services-section {
  position: relative;
  padding: 100px 20px;
}

/*.services-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 100%;
    height: 120px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(2,16,36,0.8)
    );

    pointer-events: none;
    z-index: 1;
}

/* SUBTLE GLOW (BLENDING CONTINUITY) 
.services-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 60% 40%,
        rgba(193,232,255,0.08),
        transparent 70%
    );

    z-index: 0;
}*/

/* CONTAINER */
.services-section .container {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  color: #c1e8ff;
  margin-bottom: 10px;
  opacity: 0.8;
}

.section-title {
  font-size: 54px;
  font-weight: 700;
  color: #f4faff;
  margin-bottom: 20px;
  line-height: 1.1;

  letter-spacing: -1.5px;

  /* Gradient text 
  background: linear-gradient(90deg, #ffffff, #c1e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/

  text-shadow: 0 0 18px rgba(193, 232, 255, 0.1);
}
.section-mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(193, 232, 255, 0.08);

  backdrop-filter: blur(14px);

  color: #d6ecff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 20px rgba(193, 232, 255, 0.03);

  position: relative;
  overflow: hidden;
}
.section-mini-tag::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  transform: translateX(-100%);

  transition: transform 0.8s ease;
}

.section-mini-tag:hover::before {
  transform: translateX(100%);
}
.section-subtext {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
}
/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  position: relative;

  padding: 34px 30px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 22px;

  backdrop-filter: blur(14px);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card:nth-child(2) {
  animation-delay: 0.1s;
}
.service-card:nth-child(3) {
  animation-delay: 0.2s;
}
.service-card:nth-child(4) {
  animation-delay: 0.3s;
}
.service-card:nth-child(5) {
  animation-delay: 0.4s;
}
.service-card:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.045);

  border-color: rgba(193, 232, 255, 0.18);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.22),
    0 0 25px rgba(193, 232, 255, 0.04);
}

.service-card:hover .service-icon {
  box-shadow: 0 0 18px rgba(193, 232, 255, 0.08);

  background: rgba(255, 255, 255, 0.045);
}

/* HOVER GLOW */
.service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(193, 232, 255, 0.08),
    transparent 65%
  );

  opacity: 0;

  transition: opacity 0.35s ease;

  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

/* TEXT */
.service-card h3 {
  font-size: 22px;

  margin-bottom: 14px;
  margin-top: 4px;

  color: #e7f4ff;

  line-height: 1.3;

  font-weight: 600;
}

.service-card p {
  font-size: 16px;
  color: #cbd5e1;
}

.service-icon {
  width: 64px;
  height: 64px;

  margin-bottom: 24px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(10px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.service-icon img {
  width: 48px;
  height: 48px;
  filter: invert(1) brightness(1.2);
  opacity: 0.9;
}

.service-card:hover::before {
  opacity: 1;
}

/* DESCRIPTION */
.service-desc {
  font-size: 15px;

  line-height: 1.75;

  color: #9fb3c8;

  margin-top: 14px;
  margin-bottom: 20px;
}

/* BULLET POINTS */
.service-points {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.service-points li {
  font-size: 14px;

  color: #91a5bb;

  margin-bottom: 10px;

  padding-left: 18px;
}

/* CUSTOM BULLET */
.service-points li::before {
  content: "";
  position: relative;
  left: 0;
  top: 7px;

  width: 6px;
  height: 6px;

  background: #c1e8ff;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 40px;
  }

  .services-grid {
    gap: 22px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-card p,
  .service-card li {
    max-width: 92%;
  }
}

/* SECTION */

.problems-section {
  position: relative;
  padding: 200px 20px;

  overflow: visible;
  /* LIGHT BACKGROUND (subtle) */
  background: linear-gradient(
    to bottom,
    rgba(193, 232, 255, 0.04),
    rgba(193, 232, 255, 0.1),
    rgba(193, 232, 255, 0.04)
  );

  /* SOFT BLEND (no hard edges) */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  z-index: 1;
}

.problems-section::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;
  pointer-events: none;
}
.problems-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

/* CONTAINER */
.problems-section .container {
  position: relative;
  z-index: 2;

  max-width: 1100px;
  margin: auto;
}

.section-label {
  font-size: 18px;
  font-weight: 500;

  background: linear-gradient(90deg, #c1e8ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 20px rgba(193, 232, 255, 0.18);

  margin-bottom: 12px;
}
/* GRID */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.problem-card {
  position: relative; /* REQUIRED */
  padding: 28px 28px 28px 34px; /* space for line */

  isolation: isolate;

  background: rgba(37, 60, 83, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: 0.3s ease;

  overflow: hidden;

  z-index: 2;
}
.problem-card::before {
  content: "";
  position: absolute;

  left: 0;
  top: 20px;
  bottom: 20px;

  width: 3px;
  border-radius: 10px;

  background: rgba(193, 232, 255, 0.2);

  transition: all 0.3s ease;
}

.problem-card:hover::before {
  background: #c1e8ff;
  width: 4px;
  box-shadow: 0 0 12px rgba(193, 232, 255, 0.6);
}

.problem-card:hover::before {
  background: #c1e8ff;
  width: 4px;
  box-shadow: 0 0 12px rgba(193, 232, 255, 0.6);
}

/* HOVER */
.problem-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(193, 232, 255, 0.4);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.problem-card:hover::after {
  opacity: 1;
}

/* TITLE */
.problem-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #c1e8ff;
}

/* TEXT */
.problem-card p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .problems-section h1 {
    font-size: 50px;
  }
}

.process-section {
  padding-bottom: 140px;
}
.process-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 340px;
  margin: 80px auto;

  display: flex;
  justify-content: center;
  align-items: center;
}
.process-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers everything perfectly */
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
/* BASE CARD */
.process-card {
  position: absolute;
  width: 100%;
  padding: 40px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;

  backdrop-filter: blur(14px);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  will-change: transform;
}

/* TOP CARD */
/* ACTIVE (CENTER) */
/* ACTIVE CARD */
.process-card.pos-1 {
  z-index: 3;

  transform: translateX(0) scale(1);

  opacity: 1;
}

/* NEXT CARD (behind right) */
.process-card.pos-2 {
  z-index: 2;

  transform: translateX(42px) scale(0.94);

  opacity: 0.08;
  filter: blur(1px);

  pointer-events: none;
}

/* LAST CARD (further right) */
.process-card.pos-3 {
  z-index: 1;

  transform: translateX(72px) scale(0.88);

  opacity: 0.03;
  filter: blur(2px);

  pointer-events: none;
}

/* TEXT */
.step-number {
  font-size: 36px;
  color: rgba(193, 232, 255, 0.2);
}

.process-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #c1e8ff;
}

.process-card p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 16px;
}

.process-card ul {
  padding-left: 18px;
}

.process-card li {
  font-size: 15px;
  color: #9fb3c8;
  margin-bottom: 6px;
}

/* CONTROLS */
.process-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  position: relative;
  z-index: 10;
}

.process-btn {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(193, 232, 255, 0.14);

  color: #d9ecff;

  font-size: 20px;
  font-weight: 700;

  cursor: pointer;

  backdrop-filter: blur(12px);

  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.process-btn:hover {
  background: rgba(193, 232, 255, 0.12);

  box-shadow:
    0 0 18px rgba(193, 232, 255, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.28);

  transform: translateY(-2px);
}

.process-btn:active {
  transform: scale(0.95);
}
@media (max-width: 600px) {
  .process-section {
    padding: 90px 0;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-header h1 {
    font-size: 52px;
    line-height: 1.1;
  }

  .process-header p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 10px;
  }

  .process-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 650px;
    justify-content: space-between;
  }

  .process-stack {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 450px;

    flex: 1;
  }

  .process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
    min-height: 450px;

    height: 420px;
    padding: 28px;

    opacity: 0;
    visibility: hidden;
    display: none;

    margin: 0 auto;

    transition:
      opacity 0.35s ease,
      transform 0.35s ease;

    overflow: hidden;
  }

  /* ONLY ACTIVE CARD SHOWS */
  .process-card.pos-1 {
    display: block;
    visibility: visible;
    opacity: 1;

    animation: mobileCardFade 0.35s ease;
  }

  /* HIDE BACK CARDS COMPLETELY */
  .process-card.pos-2 {
    transform: translateX(28px) scale(0.95);
  }

  .process-card.pos-3 {
    transform: translateX(48px) scale(0.91);
  }

  .process-controls {
    margin-top: 26px;
    gap: 14px;
  }

  .process-btn {
    width: 50px;
    height: 50px;
  }

  .step-number {
    font-size: 42px;
  }

  .process-card h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .process-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .process-card li {
    font-size: 14px;
    line-height: 1.6;
    content: "✔";
    left: 0;
    color: rgb(193, 232, 255);
  }
}

@keyframes mobileCardFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTION */
.why-section {
  position: relative;
  isolation: isolate;

  padding: 140px 20px 160px;
  overflow: hidden;

  background: linear-gradient(
    to bottom,
    rgba(193, 232, 255, 0.015),
    rgba(193, 232, 255, 0.045),
    rgba(193, 232, 255, 0.015)
  );

  /* SOFT BLEND */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 6%,
    black 14%,
    black 88%,
    rgba(0, 0, 0, 0.7) 96%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 6%,
    black 14%,
    black 88%,
    rgba(0, 0, 0, 0.7) 96%,
    transparent 100%
  );

  /* SOFT BLEND (no hard edges) 
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 72%,
    rgba(0, 0, 0, 0.6) 85%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 72%,
    rgba(0, 0, 0, 0.6) 85%,
    transparent 100%
  );*/
}

.why-section::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(193, 232, 255, 0.06),
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(193, 232, 255, 0.05),
      transparent 50%
    );

  filter: blur(60px);
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 100px;
  max-width: 900px;
  margin: 0 auto;
  gap: 24px;
}

.why-item {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  min-height: 270px;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 18px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.why-line {
  width: 50px;
  height: 2px;

  margin-bottom: 20px;

  background: linear-gradient(90deg, #c1e8ff, transparent);
}

/* subtle hover */
.why-item:hover {
  transform: translateY(-6px);

  border-color: rgba(193, 232, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(84, 131, 179, 0.12);
}

.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 40px;

  z-index: 5;

  background: linear-gradient(
    135deg,
    rgba(84, 131, 179, 0.2),
    rgba(2, 16, 36, 0.6)
  );

  border: 1px solid rgba(193, 232, 255, 0.2);
  border-radius: 20px;

  backdrop-filter: blur(12px);

  max-width: 800px;
  margin: 80px auto 0;
}
.cta-box::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(193, 232, 255, 0.12),
    transparent 45%
  );

  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  margin-bottom: 18px;

  border-radius: 999px;

  background: rgba(193, 232, 255, 0.08);
  border: 1px solid rgba(193, 232, 255, 0.12);

  font-size: 13px;
  font-weight: 500;
  color: #c1e8ff;

  backdrop-filter: blur(12px);
}

.contact-form {
  margin-top: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 14px;

  border: 1px solid rgba(193, 232, 255, 0.12);

  background: rgba(193, 232, 255, 0.05);

  color: white;

  font-size: 15px;
  font-family: inherit;

  outline: none;

  transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8da4ba;
}

.form-group textarea {
  resize: none;
  min-height: 130px;
}

.full-width {
  margin-top: 18px;
}
.contact-form .cta-button {
  margin-top: 40px;
}

.cta-button {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 58px;

  padding: 0 32px;

  border-radius: 16px;
  border: 1px solid rgba(193, 232, 255, 0.18);

  background: linear-gradient(
    180deg,
    rgba(111, 166, 217, 0.95),
    rgba(84, 131, 179, 0.9)
  );

  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;

  cursor: pointer;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;

  box-shadow:
    0 8px 30px rgba(84, 131, 179, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-loader {
  display: none;

  width: 18px;
  height: 18px;

  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;

  border-radius: 50%;

  animation: spin 0.7s linear infinite;
}

.cta-button.loading .btn-loader {
  display: inline-block;
}

.cta-button.loading .btn-text {
  margin-right: 10px;
}

.cta-button.loading {
  opacity: 0.85;
  cursor: not-allowed;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.cta-button:hover {
  transform: translateY(-3px);

  border-color: rgba(193, 232, 255, 0.4);

  background: linear-gradient(
    180deg,
    rgba(134, 189, 255, 1),
    rgba(84, 131, 179, 1)
  );

  box-shadow:
    0 0 18px rgba(111, 166, 217, 0.45),
    0 0 45px rgba(84, 131, 179, 0.35),
    0 12px 40px rgba(84, 131, 179, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.cta-button:active {
  transform: translateY(0px) scale(0.98);
}

.cta-button::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );

  transition: 0.7s ease;
}

.cta-button:hover::before {
  left: 120%;
}
.form-message {
  margin-top: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: rgb(193, 232, 255);

  text-shadow:
    0 0 5px rgba(193, 232, 255, 0.5),
    0 0 10px rgba(193, 232, 255, 0.3);

  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
    text-shadow:
      0 0 5px rgba(193, 232, 255, 0.4),
      0 0 10px rgba(193, 232, 255, 0.2);
  }

  50% {
    opacity: 1;
    text-shadow:
      0 0 10px rgba(193, 232, 255, 0.8),
      0 0 20px rgba(193, 232, 255, 0.5);
  }

  100% {
    opacity: 0.7;
    text-shadow:
      0 0 5px rgba(193, 232, 255, 0.4),
      0 0 10px rgba(193, 232, 255, 0.2);
  }
}

/* TEXT */
.why-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #c1e8ff;
}

.why-item p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .why-section {
    padding: 140px 20px 100px;
  }

  .why-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cta-box {
    margin-top: 70px;
    padding: 60px 40px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .why-section {
    padding: 120px 16px 80px;
    overflow: hidden;
  }
  .why-section::before {
    height: 120px;
    top: -60px;
  }

  .why-header {
    margin-bottom: 40px;
  }

  .why-section h1 {
    font-size: 52px;
    line-height: 1.1;
    text-align: center;
  }

  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;

    max-width: 100%;
  }

  .why-item {
    width: 100%;

    min-height: auto;

    padding: 26px 22px;

    border-radius: 18px;
  }

  .why-item h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .why-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-line {
    margin-bottom: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    margin-top: 50px;

    padding: 40px 22px;

    border-radius: 20px;

    width: 100%;
    max-width: 100%;
  }

  .cta-box h2 {
    font-size: 34px;
    line-height: 1.2;

    margin-bottom: 20px;
  }

  .cta-box p {
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 28px;
  }

  .cta-button {
    width: 100%;
    min-width: unset;

    height: 54px;

    font-size: 15px;
  }
}

/* FOOTER */
.footer {
  position: relative;
  padding: 90px 20px 30px;
  margin-top: 0px;
  overflow: hidden;
  background: transparent;

  z-index: 3;
}
/*
.footer::before {
  content: "";

  position: absolute;
  top: -180px;
  left: 50%;

  transform: translateX(-50%);

  width: 1000px;
  height: 280px;

  background: radial-gradient(
    circle,
    rgba(120, 180, 255, 0.1) 0%,
    transparent 70%
  );

  filter: blur(90px);

  pointer-events: none;
  z-index: 0;
}*/

/* 🔥 TOP GLOW LINE */
.footer-top-line {
  width: 60%;
  height: 1px;
  margin: 0 auto 60px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(193, 232, 255, 0.08),
    transparent
  );
}

/* GRID */
.footer-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  height: 60px;
  width: auto;

  filter: brightness(1.1);
  transition: 0.3s ease;
}

.footer-brand img:hover {
  transform: scale(1.05);
  filter: brightness(1.4) drop-shadow(0 0 8px rgba(193, 232, 255, 0.6));
}

.footer-brand p {
  font-size: 16px;
  color: #9fb3c8;
  line-height: 1.7;
  max-width: 260px;
}

.footer-contact a {
  display: block;
  color: #9fb3c8;
  text-decoration: none;
  margin-bottom: 10px;

  transition: 0.2s ease;
}

.footer-contact a:hover {
  color: #c1e8ff;
}
/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #c1e8ff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links a,
.footer-contact a {
  line-height: 1.8;
}
.footer-links a {
  display: block;
  font-size: 16px;
  color: #9fb3c8;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-links a:hover {
  color: #c1e8ff;
}

.footer-links a:hover,
.footer-contact a {
  transition: 0.25s ease;
}

/* CONTACT */
.footer-contact p {
  font-size: 16px;
  color: #9fb3c8;
  margin-bottom: 8px;
}

.footer-contact .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  color: #f4f9ff !important;
  text-decoration: none;

  line-height: 1 !important;

  margin-top: 18px;
}
/* CTA */
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  padding: 14px 28px;

  border-radius: 14px;

  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    rgba(125, 160, 202, 0.95),
    rgba(84, 131, 179, 0.95)
  );

  border: 1px solid rgba(193, 232, 255, 0.22);

  box-shadow:
    0 10px 30px rgba(84, 131, 179, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  transition: all 0.35s ease;
}

.footer-cta:hover {
  color: #eef6ff !important;

  font-weight: 400;
  background: linear-gradient(
    135deg,
    rgba(170, 205, 240, 0.95),
    rgba(120, 165, 215, 0.95)
  );

  box-shadow:
    0 0 10px rgba(193, 232, 255, 0.22),
    0 0 22px rgba(125, 160, 202, 0.14),
    0 10px 26px rgba(84, 131, 179, 0.2);

  transform: translateY(-2px);
}

.footer-careers-wrapper {
  width: 100%;

  display: flex;
  justify-content: center;

  margin-top: 70px;
  padding: 0 20px;

  text-align: center;
}

.footer-careers {
  max-width: 720px;

  font-size: 16px;
  line-height: 1.9;

  color: #8fa9c3;
}

.footer-careers a {
  color: #c1e8ff;

  text-decoration: none;
  font-weight: 500;

  transition: 0.25s ease;
}

.footer-careers a:hover {
  color: #ffffff;

  text-shadow: 0 0 10px rgba(193, 232, 255, 0.45);
}
.footer-map-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
}

.footer-map {
  position: relative;
  overflow: hidden;
  height: 360px;

  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(193, 232, 255, 0.1);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;

  filter: grayscale(0) brightness(0.75) contrast(1.05);
}

/* 🔥 BOTTOM CENTERED */
.footer-bottom {
  text-align: center;
  margin-top: 70px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  font-size: 13px;
  color: #7c93aa;

  letter-spacing: 0.4px;
}

.footer-map::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(2, 16, 36, 0.08),
    rgba(2, 16, 36, 0.2)
  );

  pointer-events: none;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 70px 20px 24px;
  }

  .footer-top-line {
    width: 85%;
    margin-bottom: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .footer-brand img {
    height: 54px;
  }

  .footer-brand p {
    margin: 18px auto 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-links h4,
  .footer-contact h4 {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact p {
    font-size: 15px;
  }

  .footer-cta {
    width: 100%;
    max-width: 240px;
  }

  .footer-map-wrapper {
    margin-top: 50px;
  }

  .footer-map {
    height: 260px;
    border-radius: 16px;
  }

  .footer-bottom {
    margin-top: 50px;
    font-size: 12px;
  }
}
