/* hero */

.ios-hero {
  background: radial-gradient(circle at 20% 30%, #0c1b35, #020817 70%);
  padding: 120px 60px;
  overflow: hidden;
}

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

/* LEFT */
.ios-tag {
  color: #ff7a2f;
  font-size: 12px;
  letter-spacing: 2px;
}

.ios-left h1 {
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.05;
  color: #dfe6f3;
  margin: 20px 0 40px;
}

/* BUTTONS */
.ios-actions {
  display: flex;
  gap: 16px;
}

.btn-main {
  background: #ff7a2f;
  padding: 16px 28px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  transition: 0.4s;
}

.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,122,47,0.4);
}

.btn-ghost {
  background: #1a2a45;
  padding: 16px 28px;
  border-radius: 12px;
  color: #cbd5f5;
}

/* RIGHT IMAGE */
.ios-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.ios-img img {
  width: 100%;
  display: block;
  transition: 0.6s;
}

.ios-right:hover img {
  transform: scale(1.05);
}

/* FLOAT ANIMATION */
.ios-img {
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* cards  */

/* HERO LAYOUT */
.ios-hero-wrap {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 690px;
  gap: 88px;
  align-items: center;
}

/* RIGHT SIDE SHOULD NOT GROW RANDOMLY */
.ios-right {
  width: 100%;
  max-width: 690px;
  justify-self: end;
  margin-top: 5vh;
}

/* FIXED IMAGE CONTAINER LIKE REFERENCE */
.ios-img {
  width: 100%;
  aspect-ratio: 689 / 500;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  position: relative;
  flex-shrink: 0;

}


/* IMAGE FILLS THE BOX */
.ios-img img {
    
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* keep hover subtle */
.ios-right:hover .ios-img img {
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .ios-hero-wrap {
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 56px;
  }

  .ios-right {
    max-width: 560px;
  }

  .ios-img {
    aspect-ratio: 689 / 500;
  }
}

@media (max-width: 991px) {
  .ios-hero-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ios-right {
    max-width: 720px;
    width: 100%;
    justify-self: center;
  }

  .ios-img {
    width: 100%;
    aspect-ratio: 689 / 500;
  }
}

@media (max-width: 767px) {
  .ios-hero {
    padding: 84px 20px;
  }

  .ios-right {
    max-width: 100%;
  }

  .ios-img {
    border-radius: 16px;
    aspect-ratio: 1 / 0.82;
  }
}

/* cards */

/* SECTION */
.ios-why {
  background: #f5f7fb;
  padding: 110px 20px 120px;
}

.ios-why-wrap {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.ios-why-head {
  text-align: center;
  margin-bottom: 70px;
}

.ios-why-head h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.ios-why-head p {
  color: #64748b;
  font-size: 17px;
  max-width: 720px;
  margin: auto;
}

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

/* CARD */
.ios-card {
  background: #071c3a;
  padding: 36px 34px;
  border-radius: 20px;
  color: #cbd5f5;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* subtle floating animation */
.ios-card {
  animation: floatCard 6s ease-in-out infinite;
}

.ios-card:nth-child(2) { animation-delay: 1s; }
.ios-card:nth-child(3) { animation-delay: 2s; }

/* hover glow */
.ios-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,140,60,0.18), transparent);
  opacity: 0;
  transition: 0.4s;
}

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

/* HOVER LIFT */
.ios-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* ICON */
.ios-icon {
  font-size: 22px;
  color: #9fb3d9;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

/* ICON HOVER EFFECT */
.ios-card:hover .ios-icon {
  color: #ff7a2f;
  /* transform: scale(0) ; */
  text-shadow: 0 0 18px rgba(255,122,47,0.6);
}

/* TITLE */
.ios-card h3 {
  font-size: 20px;
  color: #e6ecff;
  margin-bottom: 12px;
  font-weight: 600;
}

/* TEXT */
.ios-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #a6b6d6;
}

/* FLOAT ANIMATION */
@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

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

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

  .ios-why-head h2 {
    font-size: 32px;
  }
}

/* =========================
   HERO BG HOVER EFFECT
========================= */
.ios-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* base moving glow */
.ios-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 122, 47, 0.12), transparent 22%),
    radial-gradient(circle at 78% 35%, rgba(90, 130, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.04), transparent 18%);
  filter: blur(10px);
  animation: iosHeroFloat 8s ease-in-out infinite alternate;
}

/* mouse reactive spotlight */
.ios-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      420px circle at var(--mx, 50%) var(--my, 50%),    
      rgba(251, 143, 3, 0.154),
      rgba(67, 1, 87, 0.249) 30%,
      transparent 68%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* show effect on hover */
.ios-hero:hover::after {
  opacity: 1;
}

/* make sure content stays above bg */
.ios-hero-wrap,
.ios-left,
.ios-right {
  position: relative;
  z-index: 2;
}

@keyframes iosHeroFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-20px, 10px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(16px, -14px, 0) scale(1.06);
  }
}

/* acrch  */

/* SECTION */
.ios-ecosystem {
  background: radial-gradient(circle at 20% 10%, #0b1c3f, #020817 70%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

/* WRAP */
.ios-eco-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* IMAGE */
.eco-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  position: relative;
}

/* IMAGE HOVER (LIQUID FEEL) */
.eco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}

.eco-left:hover img {
  transform: scale(1.05) rotate(0.3deg);
}

/* subtle glow */
.eco-img::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,120,50,0.25), transparent 60%);
  opacity:0;
  transition:.4s;
}

.eco-left:hover .eco-img::after {
  opacity:1;
}

/* RIGHT */
.eco-right h2 {
  font-size: 44px;
  font-weight: 700;
  color: #e7ecff;
  margin-bottom: 18px;
}

.eco-desc {
  color: #9fb0d0;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* LIST */
.eco-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
  transition: transform .35s ease;
}

/* ICON */
.eco-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,120,50,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7a2f;
  font-size: 14px;
  transition: all .35s ease;
}

/* TEXT */
.eco-item h4 {
  color: #e6ecff;
  font-size: 16px;
  margin-bottom: 4px;
}

.eco-item p {
  color: #8fa4c8;
  font-size: 14px;
}

/* HOVER EFFECT */
.eco-item:hover {
  transform: translateX(10px);
}

.eco-item:hover .eco-icon {
  background: #ff7a2f;
  color: #fff;
  box-shadow: 0 0 18px rgba(255,122,47,.6);
}

/* FLOAT ANIMATION */
.eco-left {
  animation: floatEco 6s ease-in-out infinite;
}

@keyframes floatEco {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

  .eco-right h2 {
    font-size: 32px;
  }
}

/* servies */

/* SECTION */
.ios-services {
  padding: 120px 20px;
  background: #f5f7fb;
}

.ios-services-wrap {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.ios-services-head {
  margin-bottom: 50px;
}

.tag {
  font-size: 12px;
  color: #ff7a2f;
  letter-spacing: 2px;
  font-weight: 600;
}

.ios-services-head h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

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

/* CARD */
.service-card {
  border-radius: 16px;
  overflow: hidden;
  background: #0b2345;
  position: relative;
  transition: all .5s ease;
}

/* FLOAT STAGGER */
.service-card:nth-child(1){ animation: floatCard 6s ease infinite; }
.service-card:nth-child(2){ animation: floatCard 6s ease infinite 1s; }
.service-card:nth-child(3){ animation: floatCard 6s ease infinite 2s; }

/* IMAGE */
.service-img {
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}

/* CONTENT */
.service-content {
  padding: 26px;
}

.service-content h3 {
  color: #e6ecff;
  font-size: 18px;
  margin-bottom: 8px;
}

.service-content p {
  color: #9fb0d0;
  font-size: 14px;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* IMAGE ZOOM */
.service-card:hover img {
  transform: scale(1.1);
}

/* GLOW EFFECT */
.service-card::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,120,50,0.2), transparent 60%);
  opacity:0;
  transition:.4s;
}

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

/* FLOAT ANIMATION */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

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

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

/* stats  */

/* SECTION */
.ios-stats {
  background: radial-gradient(circle at 50% 0%, #071a38, #020817 80%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

/* WRAP */
.ios-stats-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* STAT */
.stat {
  position: relative;
  transition: all .4s ease;
}

/* NUMBER */
.stat h2 {
  font-size: 48px;
  font-weight: 700;
  color: #cfe1ff;
  margin-bottom: 8px;
  transition: all .4s ease;
}

/* LABEL */
.stat p {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #7f97c6;
  margin-bottom: 14px;
}

/* LINE */
.line {
  width: 40px;
  height: 3px;
  background: #7f97c6;
  display: block;
  margin: auto;
  border-radius: 10px;
  transition: all .4s ease;
}

/* 🔥 HOVER EFFECT */
.stat:hover h2 {
  color: #ffffff;
  transform: scale(1.15);
  text-shadow: 0 0 25px rgba(120,160,255,0.6);
}

.stat:hover .line {
  width: 80px;
  background: linear-gradient(90deg, #5f8dff, #ff7a2f);
  box-shadow: 0 0 15px rgba(95,141,255,.6);
}

/* GLOW ORB */
.stat::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(95,141,255,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: .4s;
  pointer-events: none;
}

.stat:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* FLOAT ANIMATION */
.stat:nth-child(1){ animation: floatStat 6s ease infinite; }
.stat:nth-child(2){ animation: floatStat 6s ease infinite 1s; }
.stat:nth-child(3){ animation: floatStat 6s ease infinite 2s; }
.stat:nth-child(4){ animation: floatStat 6s ease infinite 3s; }

@keyframes floatStat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

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

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

  .stat h2 {
    font-size: 36px;
  }
}


/* excellence */

/* SECTION */
.arch-section {
  background: #f5f7fb;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.arch-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.arch-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.arch-desc {
  color: #64748b;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* LIST */
.arch-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
  transition: all .4s ease;
}

/* ICON */
.arch-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0b2345;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfe1ff;
  transition: all .4s ease;
}

/* TEXT */
.arch-item h4 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 4px;
}

.arch-item p {
  font-size: 14px;
  color: #64748b;
}

/* 🔥 HOVER EFFECT */
.arch-item:hover {
  transform: translateX(10px);
}

.arch-item:hover .arch-icon {
  background: #ff7a2f;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,122,47,.5);
  transform: rotate(6deg) scale(1.1);
}

/* IMAGE */
.arch-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.15);
  position: relative;
}

/* IMAGE MOTION */
.arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* .arch-right:hover img {
  transform: scale(1.05) rotate(0.3deg);
} */

/* GLOW */
.arch-img::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,120,50,0.2), transparent 60%);
  opacity:0;
  transition:.4s;
}

.arch-right:hover .arch-img::after {
  opacity:1;
}

/* FLOAT */
.arch-right {
  animation: floatArch 6s ease-in-out infinite;
}

@keyframes floatArch {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

  .arch-left h2 {
    font-size: 32px;
  }
}

/* stratergy  */

/* SECTION */
.ios-readiness {
  background: radial-gradient(circle at 50% 0%, #071a38, #020817 75%);
  padding: 110px 20px;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.readiness-title {
  text-align: center;
  font-size: 32px;
  color: #cfe1ff;
  margin-bottom: 60px;
}

/* GRID */
.readiness-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.ready-card {
  background: #031a3a;
  padding: 40px 32px;
  border-radius: 22px;
  color: #9fb0d0;
  position: relative;
  transition: all .5s cubic-bezier(.2,.6,.2,1);
  overflow: hidden;
}

/* TOP LIGHT STRIP */
.ready-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #6ea0ff, #ffffff, #6ea0ff);
  opacity: 0.6;
  border-radius: 20px;
}

/* ICON */
.ready-icon {
  font-size: 22px;
  margin-bottom: 18px;
  color: #9fb3d9;
  transition: .4s;
}

/* TEXT */
.ready-card h3 {
  font-size: 18px;
  color: #e6ecff;
  margin-bottom: 10px;
}

.ready-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* 🔥 HOVER MASTER EFFECT */
.ready-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}

/* ICON GLOW */
.ready-card:hover .ready-icon {
  color: #ff7a2f;
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(255,122,47,.6);
}

/* LIGHT SWEEP */
.ready-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.12), transparent 60%);
  opacity: 0;
  transition: .5s;
}

.ready-card:hover::after {
  opacity: 1;
  animation: sweep 0.8s ease;
}

@keyframes sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

/* FLOAT */
.ready-card:nth-child(1){ animation: floatR 6s ease infinite; }
.ready-card:nth-child(2){ animation: floatR 6s ease infinite 1s; }
.ready-card:nth-child(3){ animation: floatR 6s ease infinite 2s; }

@keyframes floatR {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

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



/* CARD */
.ready-card {
  background: linear-gradient(180deg, #041b3a, #02142d);
  padding: 42px 34px;
  border-radius: 22px;
  color: #9fb0d0;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* REMOVE float animation completely */
.ready-card:nth-child(n) {
  animation: none !important;
}

/* CLEAN TOP EDGE (premium, not flashy) */
.ready-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9bbcff, transparent);
  opacity: 0.5;
}

/* LIGHT TRACKING (REAL FEEL) */
.ready-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--x, 50%) var(--y, 50%),
    rgba(120,160,255,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .25s ease;
}

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

/* TEXT */
.ready-card h3 {
  font-size: 18px;
  color: #e6ecff;
  margin-bottom: 10px;
}

.ready-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ICON */
.ready-icon {
  font-size: 20px;
  margin-bottom: 18px;
  color: #8fa8d6;
  transition: all .25s ease;
}

/* 🔥 CLEAN HOVER */
.ready-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

/* ICON UPGRADE (not flashy) */
.ready-card:hover .ready-icon {
  color: #ff7a2f;
  transform: scale(1.1);
}

/* timeplkine  */

/* =========================
   PIPELINE — FINAL FIXED
========================= */

.pipeline-pin {
  position: relative;
  height: 100vh; /* 🔥 IMPORTANT */
  background: #f4f5f7;
  overflow: hidden;
}

/* center content properly */
.pipeline-panel {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;

  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* heading */
.pipeline-panel h2 {
  font-size: 42px;
  color: #1f2c3d;
  margin-bottom: 80px;
}

/* =========================
   LINE TRACK
========================= */
.pipeline-track {
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 2px;
  transform: translateY(-50%);
}

.pipeline-line {
  position: absolute;
  inset: 0;
  background: rgba(120,140,170,0.2);
  border-radius: 999px;
}

.pipeline-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7fa5ff, #a9bfff);
  border-radius: 999px;
}

/* =========================
   GRID
========================= */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.step.is-active {
  opacity: 1;
  transform: scale(1.05);
}

.step.is-done {
  opacity: 1;
}

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

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

  background: #243b5a;
  color: #a9c2ff;
  font-size: 22px;
  font-weight: 700;

  transition: all 0.35s ease;
}

.step.is-active .circle,
.step.is-done .circle {
  background: #9dbbff;
  color: #17315c;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(120,150,255,0.3);
}

/* =========================
   TEXT
========================= */
.step h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: #6b7a90;
}

/* sectors  */

/* =========================
   SECTION BASE
========================= */
.sectors {
  position: relative;
  padding: 120px 40px;
  background: #020c1f;
  overflow: hidden;
}

/* particles canvas */
.sectors-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* wrapper */
.sectors-wrap {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.sectors h2 {
  font-size: 42px;
  margin-bottom: 60px;
  color: #dfe6f3;
}

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

/* =========================
   CARD
========================= */
.sector-card {
  position: relative;
  padding: 26px;
  border-radius: 20px;

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

  backdrop-filter: blur(14px);

  transition: all 0.5s ease;
  transform-style: preserve-3d;
  overflow: hidden;
}

/* glow border */
.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #6aa3ff, transparent);
  opacity: 0;
  transition: 0.4s;
}

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

/* hover lift */
.sector-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}

/* =========================
   HEADER
========================= */
.sector-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(100,150,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6aa3ff;
  font-size: 18px;
}

/* =========================
   IMAGE
========================= */
.sector-img {
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
}

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

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

/* =========================
   TEXT
========================= */
.sector-card h3 {
  color: #fff;
  margin-bottom: 6px;
}

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

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

/* =========================
   FAQ SECTION
========================= */
.faq {
  padding: 120px 20px;
  background: #f4f5f7;
  font-family: Inter, system-ui;
}

.faq-wrap {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq h2 {
  font-size: 42px;
  margin-bottom: 50px;
  color: #1f2c3d;
}

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

/* =========================
   ITEM
========================= */
.faq-item {
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* =========================
   QUESTION
========================= */
.faq-question {
  width: 100%;
  padding: 22px 28px;
  border-radius: 50px;

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

  font-size: 18px;
  font-weight: 500;

  background: #1f3554;
  color: #cfe0ff;
  border: none;
  cursor: pointer;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* gradient hover sweep */
.faq-question::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.faq-question:hover::before {
  transform: translateX(100%);
}

.faq-question:hover {
  background: #294a75;
}

/* icon */
.faq-question i {
  transition: transform 0.3s ease;
}

/* =========================
   ANSWER
========================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 30px 30px;

  transition: all 0.4s ease;
}

.faq-answer p {
  padding: 20px 28px;
  color: #5b6b80;
  text-align: left;
}

/* =========================
   ACTIVE STATE
========================= */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question {
  border-radius: 30px 30px 0 0;
  background: #2f5b8f;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* cta  */

.ios-cta-section {
  position: relative;
  padding: 88px 20px 74px;
  background: #020b1c;
  overflow: hidden;
}

.ios-cta-section .particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ios-cta-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  z-index: 2;
  max-width: 1392px;
  margin: 0 auto;
  min-height: 468px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(136, 160, 209, 0.2), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(170, 135, 150, 0.18), transparent 24%),
    linear-gradient(180deg, #283958 0%, #22334f 100%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  transition:
    transform 0.22s ease,
    box-shadow 0.25s ease;
}

.ios-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(255,255,255,0.11), transparent 52%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.ios-cta-card:hover::before {
  opacity: 1;
}

.ios-cta-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image:
    radial-gradient(rgba(255,255,255,0.22) 0.65px, transparent 0.65px);
  background-size: 8px 8px;
  pointer-events: none;
}

.ios-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  animation: iosCtaFloat 10s ease-in-out infinite alternate;
}

.ios-cta-glow--left {
  width: 330px;
  height: 330px;
  left: -72px;
  top: -78px;
  background: rgba(146, 167, 218, 0.28);
}

.ios-cta-glow--right {
  width: 300px;
  height: 300px;
  right: -56px;
  bottom: -48px;
  background: rgba(173, 144, 162, 0.24);
  animation-delay: 1.4s;
}

.ios-cta-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,0.08) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ios-cta-card:hover .ios-cta-shine {
  transform: translateX(140%) skewX(-18deg);
}

.ios-cta-content {
  position: relative;
  z-index: 2;
  min-height: 468px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 32px 70px;
  text-align: center;
}

.ios-cta-content h2 {
  margin: 0 0 26px;
  color: #dfe8ff;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.ios-cta-content p {
  margin: 0 0 46px;
  max-width: 760px;
  color: rgba(233, 238, 248, 0.78);
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.ios-cta-btn {
  --bx: 50%;
  --by: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 286px;
  min-height: 76px;
  padding: 18px 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff8436 0%, #ff7529 100%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow:
    0 18px 34px rgba(255, 122, 48, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.16);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ios-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(180px circle at var(--bx) var(--by), rgba(255,255,255,0.38), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ios-cta-btn::after {
  content: "";
  position: absolute;
  top: -25%;
  left: -120%;
  width: 56%;
  height: 150%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.12) 35%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.12) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ios-cta-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.03);
  box-shadow:
    0 26px 48px rgba(255, 122, 48, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

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

.ios-cta-btn:hover::after {
  left: 150%;
}

@keyframes iosCtaFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-8px, 10px, 0) scale(1.02);
  }
}

@media (max-width: 1024px) {
  .ios-cta-section {
    padding: 72px 18px 64px;
  }

  .ios-cta-card,
  .ios-cta-content {
    min-height: 420px;
  }

  .ios-cta-content {
    padding: 60px 24px 58px;
  }

  .ios-cta-content p {
    max-width: 640px;
  }

  .ios-cta-btn {
    min-width: 250px;
    min-height: 68px;
  }
}

@media (max-width: 767px) {
  .ios-cta-section {
    padding: 52px 14px;
  }

  .ios-cta-card {
    border-radius: 22px;
  }

  .ios-cta-card,
  .ios-cta-content {
    min-height: 360px;
  }

  .ios-cta-content {
    padding: 46px 20px 42px;
  }

  .ios-cta-content h2 {
    margin-bottom: 20px;
    line-height: 0.98;
  }

  .ios-cta-content p {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.55;
  }

  .ios-cta-btn {
    width: 100%;
    max-width: 290px;
    min-width: 0;
    min-height: 62px;
    font-size: 17px;
  }

  .ios-cta-glow--left {
    width: 220px;
    height: 220px;
    left: -60px;
    top: -54px;
  }

  .ios-cta-glow--right {
    width: 220px;
    height: 220px;
    right: -50px;
    bottom: -40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ios-cta-card,
  .ios-cta-btn,
  .ios-cta-card::before,
  .ios-cta-btn::before,
  .ios-cta-btn::after,
  .ios-cta-shine,
  .ios-cta-glow {
    transition: none;
    animation: none;
  }

  .ios-cta-card:hover,
  .ios-cta-btn:hover {
    transform: none;
  }
}

/* ios glass hover */
.ios-card,
.service-card,
.ready-card {
  transition: all 0.35s ease;
}

.ios-card:hover,
.service-card:hover,
.ready-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* apple smooth image */
.ios-img img,
.arch-img img {
  transition: transform 0.6s ease;
}

.fx-3d:hover img {
  transform: scale(1.05);
}

/* =====================================
   IOS PAGE BUTTON FIX
   add at VERY END of ios.css
===================================== */

/* base */
.btn-main,
.btn-ghost,
.ios-cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    color .35s ease,
    background-color .35s ease,
    border-color .35s ease,
    transform .3s ease,
    box-shadow .35s ease;
}

/* keep button text above layers */
.btn-main > *,
.btn-ghost > *,
.ios-cta-btn > *,
.btn-main,
.btn-ghost,
.ios-cta-btn {
  position: relative;
  z-index: 2;
}

/* sliding fill */
.btn-main::before,
.btn-ghost::before,
.ios-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-102%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

/* shine */
.btn-main::after,
.btn-ghost::after,
.ios-cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .68s cubic-bezier(.22,1,.36,1);
}

.btn-main:hover,
.btn-ghost:hover,
.ios-cta-btn:hover {
  transform: translateY(-3px);
}

.btn-main:hover::before,
.btn-ghost:hover::before,
.ios-cta-btn:hover::before {
  transform: translateX(0);
}

.btn-main:hover::after,
.btn-ghost:hover::after,
.ios-cta-btn:hover::after {
  left: 145%;
}

/* ---------------------------------
   ORANGE MAIN
   solid -> transparent orange border
---------------------------------- */
.btn-main {
  background: #ff7a2f !important;
  color: #ffffff !important;
  border: 2px solid #ff7a2f !important;
  box-shadow: 0 15px 40px rgba(255,122,47,0.35);
}

.btn-main::before {
  background: transparent;
}

.btn-main:hover {
  background: transparent !important;
  color: #ff7a2f !important;
  border-color: #ff7a2f !important;
  box-shadow:
    0 0 0 1px rgba(255,122,47,.14),
    0 16px 34px rgba(255,122,47,.16);
}

/* ---------------------------------
   GHOST / GLASS
   dark -> lighter fill from left
---------------------------------- */
.btn-ghost {
  background: #1a2a45 !important;
  color: #cbd5f5 !important;
  border: 2px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.btn-ghost::before {
  background: rgba(255,255,255,.10);
}

.btn-ghost:hover {
  background: #1a2a45 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.22) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 14px 28px rgba(0,0,0,.16);
}

/* ---------------------------------
   IOS CTA BUTTON
   orange -> transparent orange border
---------------------------------- */
.ios-cta-btn {
  background: linear-gradient(180deg, #ff8436 0%, #ff7529 100%) !important;
  color: #ffffff !important;
  border: 2px solid #ff7a2f !important;
}

.ios-cta-btn::before {
  background: transparent;
}

.ios-cta-btn:hover {
  background: transparent !important;
  color: #ff7a2f !important;
  border-color: #ff7a2f !important;
  box-shadow:
    0 0 0 1px rgba(255,122,47,.14),
    0 18px 36px rgba(255,122,47,.16);
  filter: none !important;
}

/* prevent old hover glow from ruining colors */
.ios-cta-btn:hover::after {
  left: 145%;
}

/* focus */
.btn-main:focus-visible,
.btn-ghost:focus-visible,
.ios-cta-btn:focus-visible {
  outline: 2px solid rgba(90,150,255,.7);
  outline-offset: 3px;
}

/* HERO FIX */
.ios-hero {
  padding: clamp(80px, 10vw, 120px) clamp(20px, 6vw, 60px);
}

.ios-hero-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* REMOVE HARD WIDTHS */
.ios-right {
  width: 100%;
  max-width: 100%;
  justify-self: end;
}

/* IMAGE ALWAYS RESPONSIVE */
.ios-img {
  width: 100%;
  aspect-ratio: 689 / 500;
}

/* TABLET */
@media (max-width: 991px) {
  .ios-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ios-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ios-left h1 {
    font-size: clamp(36px, 6vw, 52px);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .ios-left h1 {
    font-size: 32px;
    line-height: 1.15;
  }
}

/* UNIVERSAL GRID FIX */
.ios-grid,
.services-grid,
.sectors-grid,
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.ios-card,
.service-card,
.ready-card,
.sector-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-img img {
  width: 100%;
  height: clamp(160px, 20vw, 220px);
  object-fit: cover;
}

.ios-stats-wrap {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.stat h2 {
  font-size: clamp(28px, 5vw, 48px);
}

@media (max-width: 768px) {
  .pipeline-pin {
    height: auto;
    padding: 80px 20px;
  }

  .pipeline-panel {
    transform: none;
    top: auto;
  }

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

  .pipeline-track {
    display: none;
  }

  .circle {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
}

h1, h2, h3 {
  word-break: break-word;
}

p {
  max-width: 100%;
}

.btn-main,
.btn-ghost,
.ios-cta-btn {
  min-height: 52px;
  padding: 14px 22px;
}

@media (max-width: 600px) {
  .ios-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ios-card,
  .service-card,
  .ready-card,
  .stat,
  .eco-left,
  .arch-right {
    animation: none !important;
  }
}

body {
  overflow-x: hidden;
}


@media (max-width: 768px) {

  .pipeline-pin {
    height: auto;
    padding: 80px 20px;
  }

  .pipeline-panel {
    top: auto;
    transform: none;
  }

  /* 🔥 2-2-1 GRID */
  .pipeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* LAST ITEM CENTER */
  .pipeline-grid .step:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 260px;
  }

  /* REMOVE LINE */
  .pipeline-track {
    display: none;
  }

  /* BETTER SPACING */
  .step {
    text-align: center;
  }

  .circle {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .step {
    opacity: 0;
    transform: translateY(20px);
  }

  .step.is-active,
  .step.is-done {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
  }
}