/* SECTION */
.hero-premium {
  position: relative;
  background: #020b18;
  padding: 120px 60px;
  overflow: hidden;
}

/* 🌌 BACKGROUND FIELD (MAIN PREMIUM FEEL) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,150,255,0.2), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,122,48,0.15), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(120,100,255,0.15), transparent 40%);

  filter: blur(80px);
  opacity: 0.7;

  animation: bgMove 14s ease-in-out infinite alternate;
}

@keyframes bgMove {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px,30px) scale(1.1); }
}

/* LAYOUT */
.hero-wrap {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TAG */
.hero-tag {
  display: inline-block;
  background: rgba(255,122,48,0.1);
  color: #ff7a30;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

/* TITLE */
.hero-left h1 {
  font-size: 72px;
  line-height: 1.05;
  color: #dbe7ff;
  margin-bottom: 25px;
}

/* TEXT */
.hero-left p {
  color: #8fa3c3;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
}

/* 🔥 BUTTON PREMIUM */
.btn-primary {
  position: relative;
  background: #ff7a30;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;

  overflow: hidden;

  transition: 0.25s;
}

.btn-primary::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
  top: var(--y,50%);
  left: var(--x,50%);
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
}

.btn-primary:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

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

/* SECONDARY */
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #cbd5e1;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.25s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* IMAGE (NO EFFECTS) */
.hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 42px;
  }
}

.hero-wrap {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 700px;
  gap: 72px;
  align-items: center;
}

.hero-right {
  width: 100%;
  max-width: 700px;
  justify-self: end;
}

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 698 / 607;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* card 1 */

.adv-section {
  padding: 120px 20px;
  background: #f3f5f7;
}

.adv-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.adv-head {
  text-align: center;
  margin-bottom: 70px;
}

.adv-head h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0b0f1a;
  margin-bottom: 16px;
}

.adv-head p {
  font-size: 18px;
  color: #6b7a90;
  max-width: 680px;
  margin: 0 auto;
}

/* GRID */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.adv-card {
  position: relative;
  background: #0d2744;
  padding: 40px;
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(.2,.8,.2,1);
}

/* subtle glow layer */
.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* animated border glow */
.adv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.2), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
}

/* ICON */
.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #0b2a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 20px;
  color: #9fb7d8;
  transition: all .4s ease;
}

/* TEXT */
.adv-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #e6edf7;
  margin-bottom: 12px;
}

.adv-card p {
  color: #9fb0c6;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   ✨ HOVER MAGIC (NO 3D)
========================= */
.adv-card:hover {
  transform: translateY(-8px);
  background: #0f2f56;
}

.adv-card:hover::before {
  opacity: 1;
}

.adv-card:hover::after {
  opacity: 1;
}

/* ICON highlight (orange accent) */
.adv-card:hover .adv-icon {
  background: #ff7a2f;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,122,47,0.4);
}

/* subtle text brighten */
.adv-card:hover h3 {
  color: #ffffff;
}

.adv-card:hover p {
  color: #c8d6ea;
}

.scale-section {
  padding: 120px 20px;
  background: radial-gradient(circle at 20% 50%, #0b1a2d, #050b16 70%);
}

.scale-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= IMAGE ================= */
.scale-img-wrap {
  width: 100%;
  aspect-ratio: 690 / 520;
  border-radius: 20px;
  overflow: hidden;
  position: relative;

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  transition: all 0.5s ease;
}

.scale-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle glow hover (NOT 3D) */
.scale-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,120,40,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
}

.scale-img-wrap:hover::after {
  opacity: 1;
}

.scale-img-wrap:hover {
  transform: translateY(-6px);
}

/* ================= TEXT ================= */
.scale-right h2 {
  font-size: 52px;
  line-height: 1.15;
  color: #eaf2ff;
  margin-bottom: 24px;
  font-weight: 700;
}

.scale-desc {
  color: #9fb0c6;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

/* ================= LIST ================= */
.scale-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.scale-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* icon */
.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,120,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7a2f;
  font-size: 12px;
  flex-shrink: 0;

  transition: all .35s ease;
}

/* text */
.scale-item h4 {
  font-size: 16px;
  color: #e6edf7;
  margin-bottom: 6px;
}

.scale-item p {
  font-size: 14px;
  color: #8fa3bd;
  line-height: 1.6;
}

/* hover effect */
.scale-item:hover .check {
  background: #ff7a2f;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,122,47,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .scale-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .scale-right h2 {
    font-size: 40px;
  }
}

/* stats  */

.stats-section {
  padding: 80px 20px;
  background: #f3f5f7;
}

.stats-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.stat-card {
  position: relative;
  background: #2b3f5c;
  border-radius: 22px;
  padding: 42px 20px;
  text-align: center;
  overflow: hidden;

  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}

/* glow layer */
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .4s ease;
}

/* subtle border shine */
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
}

/* TEXT */
.stat-card h2 {
  font-size: 48px;
  font-weight: 700;
  color: #c7d7f3;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.stat-card p {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9fb0c6;
  margin-bottom: 16px;
}

/* bottom line */
.stat-card .line {
  display: block;
  width: 36px;
  height: 3px;
  background: #5f738f;
  margin: 0 auto;
  border-radius: 3px;
  transition: all .4s ease;
}

/* ================= HOVER ================= */
.stat-card:hover {
  transform: translateY(-6px);
  background: #314a6a;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  opacity: 1;
}

/* orange accent animation */
.stat-card:hover .line {
  width: 60px;
  background: #ff7a2f;
  box-shadow: 0 0 12px rgba(255,122,47,0.6);
}

.stat-card:hover h2 {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-wrap {
    grid-template-columns: 1fr;
  }
}

/* PIPLELINE  */

/* RESET SAFE */
.lifecycle * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* SECTION */
.lifecycle {
  height: 100vh;
  background: #061326;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* CONTAINER */
.lifecycle-container {
  width: min(1200px, 90%);
  text-align: center;
  position: relative;
}

/* TITLE */
.lifecycle h2 {
  font-size: 48px;
  color: #e3ebff;
  margin-bottom: 100px;
}

/* LINE */
.line {
  position: absolute;
  top: 210px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

.line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#7fa5ff,#a9bfff);
}

/* GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}

/* STEP */
.step {
  opacity: 0.3;
  transition: all 0.4s ease;
}

/* ACTIVE */
.step.active {
  opacity: 1;
}

/* CIRCLE */
.circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1e3553;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #a9c2ff;
  transition: 0.4s ease;
}

.step.active .circle {
  background: #9dbbff;
  color: #061326;
  transform: scale(1.1);
}

/* TEXT */
.step h4 {
  color: #fff;
  margin-bottom: 6px;
}

.step p {
  color: #8fa2c4;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .line {
    display: none;
  }
}

.lifecycle {
  position: relative;
  min-height: 100vh;
}

/* =========================
   🔥 LIFECYCLE (PREMIUM)
========================= */

.lifecycle {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 20%, #0b1f3a, #040b16 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* subtle ambient glow */
.lifecycle::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(120,160,255,0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,120,40,0.1), transparent 50%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

/* ================= CONTAINER ================= */
.lifecycle-container {
  width: min(1200px, 92%);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ================= TITLE ================= */
.lifecycle h2 {
  font-size: 52px;
  font-weight: 700;
  color: #eaf2ff;
  margin-bottom: 120px;
  letter-spacing: -1px;
}

/* ================= LINE ================= */
.line {
  position: absolute;
  top: 230px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

/* animated fill */
.line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7fa5ff, #ff7a2f);
  box-shadow: 0 0 20px rgba(127,165,255,0.5);
}

/* ================= GRID ================= */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* ================= STEP ================= */
.step {
  opacity: 0.25;
  transform: translateY(20px) scale(0.96);
  transition: all 0.45s cubic-bezier(.2,.8,.2,1);
}

/* ACTIVE STATE */
.step.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* PREVIOUS STEPS (optional styling) */
.step.done {
  opacity: 0.6;
}

/* ================= CIRCLE ================= */
.circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;

  background: linear-gradient(145deg, #1c3556, #13263f);
  border: 1px solid rgba(255,255,255,0.08);

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

  font-size: 22px;
  color: #9fbfff;

  transition: all 0.4s ease;
  position: relative;
}

/* glow ring */
.circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,165,255,0.3), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

/* ACTIVE */
.step.active .circle {
  background: linear-gradient(145deg, #9dbbff, #6e9cff);
  color: #061326;
  transform: scale(1.15);
  box-shadow: 0 10px 40px rgba(127,165,255,0.5);
}

.step.active .circle::after {
  opacity: 1;
}

/* DONE */
.step.done .circle {
  background: #2a4568;
  color: #cbdcff;
}

/* ================= TEXT ================= */
.step h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.step p {
  color: #8fa2c4;
  font-size: 14px;
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* ================= HOVER ================= */
.step:hover {
  transform: translateY(-6px) scale(1.02);
  opacity: 1;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .lifecycle h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .line {
    display: none;
  }
}


.lifecycle-container {
  --circle-size: 90px;
  --circle-gap: 22px;   /* margin-bottom of circle */
  --title-gap: 120px;   /* margin-bottom of h2 */
  position: relative;
  width: min(1200px, 92%);
  text-align: center;
  z-index: 2;
}

.lifecycle h2 {
  font-size: 52px;
  font-weight: 700;
  color: #eaf2ff;
  margin-bottom: var(--title-gap);
  letter-spacing: -1px;
}

.steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.step {
  position: relative;
  z-index: 2;
  opacity: 0.25;
  transform: translateY(20px) scale(0.96);
  transition: all 0.45s cubic-bezier(.2,.8,.2,1);
}

.circle {
  width: var(--circle-size);
  height: var(--circle-size);
  margin: 0 auto var(--circle-gap);
  border-radius: 50%;
  background: linear-gradient(145deg, #1c3556, #13263f);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #9fbfff;
  position: relative;
  z-index: 6;
  transition: all 0.4s ease;
}

/* line exactly through circle center */
.line {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 2px;
  top: calc(var(--title-gap) + (var(--circle-size) / 2));
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  z-index: 5;
  overflow: visible;
}

.line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7fa5ff, #ff7a2f);
  box-shadow: 0 0 20px rgba(127,165,255,0.5);
}

/* compare  */

/* SECTION */
.compare-section {
  padding: 120px 20px;
  background: #f3f5f7;
  text-align: center;
}

/* TITLE */
.compare-title {
  font-size: 52px;
  font-weight: 700;
  color: #0b0f1a;
  margin-bottom: 60px;
}

/* WRAPPER */
.compare-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* CARD */
.compare-card {
  padding: 50px 60px;
  text-align: left;
  position: relative;
}

/* LEFT DARK */
.compare-card.left {
  background: linear-gradient(180deg,#001a3a,#00122b);
  color: #c7d7f3;
}

/* RIGHT LIGHTER DARK */
.compare-card.right {
  background: #1f3554;
  color: #c7d7f3;
}

/* DIVIDER LINE */
.compare-card.left {
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* TAG */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ff7a2f;
  display: inline-block;
  margin-bottom: 20px;
}

.tag.muted {
  color: #8fa3c3;
}

/* TITLE */
.compare-card h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #e6edf7;
}

/* ROW */
.compare-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
}

/* FIRST ROW NO BORDER */
.compare-row:first-of-type {
  border-top: none;
}

/* LABEL */
.compare-row span {
  color: #8fa3c3;
}

/* VALUE */
.compare-row strong {
  color: #c7d7f3;
  font-weight: 600;
}

/* BAD (LEFT SIDE ORANGE) */
.compare-row .bad {
  color: #ff7a2f;
}

/* RECOMMENDED TAG */
.recommended {
  position: absolute;
  top: 0;
  right: 0;
  background: #3c5170;
  color: #c7d7f3;
  font-size: 12px;
  padding: 12px 20px;
  border-bottom-left-radius: 10px;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .compare-wrap {
    grid-template-columns: 1fr;
  }

  .compare-card.left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* SAFE HOVER EFFECTS — does not break badge/layout */

.compare-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  will-change: transform;
}

/* keep badge above everything */
.recommended {
  z-index: 5;
}

/* keep content above card background */
.compare-card > * {
  position: relative;
  z-index: 2;
}

/* soft mouse glow using background only, no pseudo layering */
.compare-card {
  background-image:
    radial-gradient(
      420px circle at var(--x, 50%) var(--y, 50%),
      rgba(255,255,255,0.06),
      transparent 58%
    );
  background-repeat: no-repeat;
}

/* preserve base backgrounds */
.compare-card.left {
  background-color: #001a3a;
}

.compare-card.right {
  background-color: #1f3554;
}

/* card hover */
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

.compare-card.left:hover {
  background-color: #002045;
}

.compare-card.right:hover {
  background-color: #243d5f;
}

/* title polish */
.compare-card h3 {
  transition: transform 0.3s ease, color 0.3s ease;
}

.compare-card:hover h3 {
  transform: translateY(-2px);
  color: #ffffff;
}

/* row hover */
.compare-row {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
  border-radius: 8px;
}

.compare-row:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.025);
}

/* values */
.compare-row strong {
  transition: transform 0.28s ease, color 0.28s ease;
}

.compare-row:hover strong {
  transform: scale(1.03);
}

/* orange values on left */
.compare-card.left .compare-row:hover .bad {
  color: #ffa063;
}

/* right side values brighten */
.compare-card.right .compare-row:hover strong {
  color: #d9e6ff;
}

.compare-card {
  position: relative; /* IMPORTANT */
}

/* RIGHT CARD */
.compare-card.right {
  position: relative; /* ensure anchor */
  background: #1f3554;
  color: #c7d7f3;
  padding-top: 70px; /* give space so badge doesn't overlap text */
}

/* 🔥 FIXED BADGE */
.recommended {
  position: absolute;
  top: 0;
  right: 0;

  background: #3c5170;
  color: #c7d7f3;

  font-size: 12px;
  letter-spacing: 1px;

  padding: 14px 22px;

  border-top-right-radius: 22px;
  border-bottom-left-radius: 12px;

  z-index: 10;

  /* REMOVE ANY TRANSFORMS */
  transform: none !important;
}

/* card 2  */

/* SECTION */
.verticals {
  padding: 120px 20px;
  background: radial-gradient(circle at 20% 30%, #0b1a2d, #040b16 70%);
}

/* TITLE */
.verticals h2 {
  font-size: 52px;
  color: #eaf2ff;
  margin-bottom: 60px;
}

/* GRID */
.verticals-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.v-card {
  background: #243d5f;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}

/* IMAGE */
.v-img {
  height: 180px;
  overflow: hidden;
}

.v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* CONTENT */
.v-content {
  padding: 22px;
}

.v-content h3 {
  color: #e6edf7;
  font-size: 20px;
  margin-bottom: 10px;
}

.v-content p {
  color: #9fb0c6;
  font-size: 14px;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT (CLEAN PREMIUM) */

/* lift */
.v-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: #2b4a73;
}

/* image zoom */
.v-card:hover img {
  transform: scale(1.08);
}

/* subtle glow */
.v-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--x,50%) var(--y,50%),
    rgba(255,255,255,0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.v-card:hover::before {
  opacity: 1;
}

/* text brighten */
.v-card:hover h3 {
  color: #ffffff;
}

.v-card:hover p {
  color: #c8d6ea;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PREMIUM HOVER EFFECTS
========================= */

.v-card {
  position: relative;
  isolation: isolate;
  transition:
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.38s ease,
    background 0.38s ease,
    border-color 0.38s ease;
  border: 1px solid rgba(255,255,255,0.06);
  will-change: transform;
}

/* mouse glow */
.v-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,0.10),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

/* border shine */
.v-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgba(255,255,255,0.02),
    rgba(143,179,255,0.28),
    rgba(255,122,47,0.18),
    rgba(255,255,255,0.02)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* content above effects */
.v-card > * {
  position: relative;
  z-index: 1;
}

.v-card:hover {
  transform: translateY(-10px);
  background: #2b4a73;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.36),
    0 8px 24px rgba(20,40,80,0.22);
  border-color: rgba(143,179,255,0.18);
}

.v-card:hover::before,
.v-card:hover::after {
  opacity: 1;
}

/* image area */
.v-img {
  position: relative;
  overflow: hidden;
}

.v-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,20,40,0.18),
    transparent 35%
  );
  opacity: 0.7;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.v-img img {
  transition:
    transform 0.7s cubic-bezier(.2,.8,.2,1),
    filter 0.4s ease;
}

.v-card:hover .v-img img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.v-card:hover .v-img::after {
  opacity: 0.3;
}

/* text animation */
.v-content h3,
.v-content p {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.v-card:hover .v-content h3 {
  color: #ffffff;
  transform: translateY(-2px);
}

.v-card:hover .v-content p {
  color: #d4e1f3;
  transform: translateY(-1px);
}

/* orange underline accent */
.v-content h3 {
  position: relative;
  display: inline-block;
}

.v-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a2f, #ffb07a);
  transition: width 0.35s cubic-bezier(.2,.8,.2,1);
}

.v-card:hover .v-content h3::after {
  width: 100%;
}

/* slight stagger feel */
.v-card:hover .v-content {
  transform: translateY(-2px);
  transition: transform 0.35s ease;
}

.faq-section {
  padding: 110px 20px;
  background: #f3f5f7;
}

.faq-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 700;
  color: #0b0f1a;
  margin: 0 0 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-item {
  position: relative;
  border-radius: 24px;
  background: #0d2744;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,0.09),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgba(255,255,255,0.03),
    rgba(143,179,255,0.22),
    rgba(255,122,47,0.18),
    rgba(255,255,255,0.03)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-6px);
  background: #123154;
  box-shadow: 0 20px 46px rgba(0,0,0,0.14);
}

.faq-item:hover::before,
.faq-item:hover::after {
  opacity: 1;
}

.faq-question {
  position: relative;
  z-index: 1;
  min-height: 98px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-question span {
  color: #dce7fb;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  transition: color 0.28s ease, transform 0.28s ease;
}

.faq-question i {
  flex-shrink: 0;
  color: #dce7fb;
  font-size: 22px;
  transition:
    transform 0.34s ease,
    color 0.28s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(.2,.8,.2,1);
  position: relative;
  z-index: 1;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 32px;
  color: #aebed8;
  font-size: 17px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    padding-bottom 0.28s ease;
}

.faq-item:hover .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item:hover .faq-answer > p {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 28px;
}

.faq-item:hover .faq-question span {
  color: #ffffff;
}

.faq-item:hover .faq-question i {
  transform: rotate(180deg);
  color: #ff8a45;
}

/* subtle active line */
.faq-question span::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a2f, #ffb07a);
  transition: width 0.34s ease;
}

.faq-item:hover .faq-question span::after {
  width: 72px;
}

@media (max-width: 900px) {
  .faq-title {
    font-size: 40px;
    margin-bottom: 42px;
  }

  .faq-question {
    min-height: 84px;
    padding: 0 24px;
  }

  .faq-question span {
    font-size: 19px;
  }

  .faq-answer > p {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 80px 16px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-item {
    border-radius: 20px;
  }

  .faq-question {
    min-height: 76px;
    padding: 0 18px;
    gap: 14px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-question i {
    font-size: 18px;
  }

  .faq-answer > p {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
    line-height: 1.65;
  }
}
/* SECTION */
.cta-premium {
  padding: 120px 20px;
  background: #020b18;
}

/* CONTAINER */
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 60px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;

  /* 🔥 BG IMAGE */
  background:
    linear-gradient(rgba(20,40,70,0.85), rgba(20,40,70,0.85)),
    url(".. /images/react-native/ctabg.jpg") center/cover no-repeat;

  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* ✨ ANIMATED OVERLAY */
.cta-inner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: glowMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

/* subtle moving light */
@keyframes glowMove {
  0% { transform: translate(-10%, -10%) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.2); }
}

/* TEXT */
.cta-inner h2 {
  font-size: 44px;
  color: #eaf2ff;
  margin-bottom: 20px;
}

.cta-inner p {
  color: #b6c7e2;
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #ff7a2f;
  color: #fff;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* button glow */
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.4), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.cta-btn:hover::before {
  opacity: 1;
}

/* hover */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,122,47,0.4);
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .cta-inner {
    padding: 60px 30px;
  }

  .cta-inner h2 {
    font-size: 32px;
  }
}

.cta-premium {
  padding: 120px 20px;
  background: #020b18;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #24385a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
}

/* main bg image */
.cta-inner::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: 0;
  background:
    linear-gradient(rgba(30,52,84,0.72), rgba(30,52,84,0.72)),
    url("../images/react-native/ctabg.jpg") center center / cover no-repeat;
  transform-origin: center center;
  animation: ctaBgDrift 18s ease-in-out infinite alternate;
}

/* moving glow layer */
.cta-inner::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(120, 170, 255, 0.14), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(255, 140, 70, 0.12), transparent 22%),
    radial-gradient(circle at 62% 70%, rgba(255,255,255,0.07), transparent 18%);
  filter: blur(22px);
  animation: ctaGlowFloat 10s ease-in-out infinite alternate;
}

/* extra animated light sweep */
.cta-inner .cta-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cta-inner .cta-shine::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -25%;
  width: 38%;
  height: 140%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.04) 35%,
    rgba(255,255,255,0.11) 50%,
    rgba(255,255,255,0.04) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: ctaSweep 7s linear infinite;
}

/* optional soft texture grid feel */
.cta-inner .cta-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

/* content */
.cta-inner > h2,
.cta-inner > p,
.cta-inner > .cta-btn {
  position: relative;
  z-index: 3;
}

.cta-inner h2 {
  font-size: 44px;
  color: #eaf2ff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-inner p {
  color: #c2d0e4;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}

.cta-btn {
  display: inline-block;
  background: #ff7a2f;
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.34), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,122,47,0.4);
}

/* animations */
@keyframes ctaBgDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  25% {
    transform: scale(1.08) translate3d(-10px, -6px, 0);
  }
  50% {
    transform: scale(1.1) translate3d(10px, -10px, 0);
  }
  75% {
    transform: scale(1.07) translate3d(-6px, 8px, 0);
  }
  100% {
    transform: scale(1.12) translate3d(12px, 10px, 0);
  }
}

@keyframes ctaGlowFloat {
  0% {
    transform: translate3d(-20px, -10px, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(10px, 12px, 0) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate3d(22px, -8px, 0) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes ctaSweep {
  0% {
    left: -30%;
  }
  100% {
    left: 130%;
  }
}

@media (max-width: 800px) {
  .cta-inner {
    padding: 60px 24px;
    border-radius: 24px;
  }

  .cta-inner h2 {
    font-size: 32px;
  }

  .cta-inner p {
    font-size: 16px;
  }
}