

header,
.navbar {
  font-family: 'Kanit', sans-serif !important;
}
header,
.navbar {
  position: relative;
  z-index: 9999;
}
/* =========================
   SECTION
========================= */
.android-hero {
  position: relative;
  padding: 120px 60px;
  background: #020817;
  overflow: hidden;
}

/* =========================
   BG ANIMATION (KEY PART)
========================= */
.hero-bg {
  position: absolute;
  /* inset: -6%; */
  z-index: 0;

  background:
    radial-gradient(circle at 18% 28%, rgba(255,115,0,0.22), transparent 34%),
    radial-gradient(circle at 78% 68%, rgba(80,140,255,0.18), transparent 38%),
    radial-gradient(circle at 55% 18%, rgba(255,255,255,0.05), transparent 26%),
    #020817;

  animation: bgMove 5.5s ease-in-out infinite alternate;
  will-change: transform;
}

/* subtle moving glow */
@keyframes bgMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-28px, 14px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(24px, -16px, 0) scale(1.1);
  }
}

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

  max-width: 1300px;
  margin: auto;

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

/* =========================
   BADGE
========================= */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;

  color: #ff7a2f;
  background: rgba(255,122,47,0.1);
  border: 1px solid rgba(255,122,47,0.3);

  border-radius: 20px;
  margin-bottom: 20px;
}

/* =========================
   HEADING
========================= */
.hero-left h1 {
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  color: #dfe6f3;
  margin-bottom: 24px;
}

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

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

.btn-primary {
  padding: 16px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff7a2f, #ff5a00);
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 15px 40px rgba(255,122,47,0.35);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(255,122,47,0.5);
}

.btn-secondary {
  padding: 16px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #c7d2e6;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   IMAGE
========================= */
.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  /* transform: perspective(1000px) rotateY(-4deg); */
  transition: all 0.6s ease;
}

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

/* hover tilt */
.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .android-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left p {
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    transform: none;
  }
}

@media (max-width: 768px) {
  .android-hero {
    padding: 80px 20px;
  }

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

.hero-image {
  animation: floatImg 6s ease-in-out infinite;
}

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

/* cards */

/* =========================
   SECTION
========================= */
.advantages {
  padding: 100px 60px;
  background: #f3f5f8;
  font-family: Inter, system-ui;
}

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

/* =========================
   HEADER
========================= */
.adv-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ff7a2f;
  font-weight: 600;
}

.advantages h2 {
  font-size: 44px;
  margin: 12px 0 60px;
  color: #1f2c3d;
}

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

/* =========================
   CARD BASE
========================= */
.adv-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  background: #c9d3e8;
  border: 1px solid rgba(0,0,0,0.05);

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

/* inner */
.adv-inner {
  padding: 34px;
  position: relative;
  z-index: 2;
}

/* =========================
   ICON
========================= */
.adv-icon {
  font-size: 24px;
  margin-bottom: 18px;
  color: #1f2c3d;
  transition: all 0.4s ease;
}

/* =========================
   TEXT
========================= */
.adv-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f2c3d;
}

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

/* =========================
   GLOW LAYER
========================= */
.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(circle at var(--x,50%) var(--y,50%),
    rgba(255,255,255,0.35),
    transparent 60%);

  opacity: 0;
  transition: 0.3s;
}

/* =========================
   SHIMMER SWEEP
========================= */
.adv-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  transform: rotate(25deg);
  transition: 0.8s;
}

/* =========================
   HOVER WOW
========================= */
.adv-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.15),
    0 0 30px rgba(120,150,255,0.25);
}

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

.adv-card:hover::after {
  top: 100%;
  left: 100%;
}

/* icon motion */
.adv-card:hover .adv-icon {
  /* transform: scale(1.2) rotate(-8deg); */
  color: #ff7a2f;
}

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

@media (max-width: 600px) {
  .advantages {
    padding: 70px 20px;
  }

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

  .advantages h2 {
    font-size: 30px;
  }
}

/* NATIVE SERVICES  */

.native-services-pro {
  position: relative;
  padding: 120px 60px;
  background: radial-gradient(circle at 50% 0%, #0b1c35, #050d1a);
  overflow: hidden;
}

/* ================= BG GLOW ================= */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,140,255,0.15), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(40px); }
}

/* ================= CONTENT ================= */
.container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.native-services-pro h2 {
  font-size: 44px;
  color: #dbe6ff;
  margin-bottom: 12px;
}

.native-services-pro .sub {
  color: #8ea2c6;
  max-width: 620px;
  margin: auto auto 70px;
  line-height: 1.6;
}

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

/* ================= CARD ================= */
.card {
  background: #1c2a3d;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  transition: all 0.35s ease;
}

/* IMAGE (IMPORTANT: exact ratio) */
.img {
  width: 100%;
  aspect-ratio: 400 / 211;
  overflow: hidden;
}

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

/* BODY */
.body {
  padding: 24px;
}

.body h3 {
  color: #dbe6ff;
  font-size: 20px;
  margin-bottom: 12px;
}

.body p {
  color: #9fb0cf;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= HOVER ================= */
.card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(0,140,255,0.2);
}

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

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

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

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

  .native-services-pro {
    padding: 80px 20px;
  }

  .native-services-pro h2 {
    font-size: 32px;
  }
}

/* STATSS */

.stats-section {
  background: #f2f2f2;
  padding: 138px 112px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 45px;
  align-items: stretch;
}

.stat-card {
  position: relative;
  min-height: 196px;
  border-radius: 22px;
  background: #06244a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.45s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.05), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.card-corner {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 74px;
  height: 74px;
  border-radius: 0 22px 0 100%;
  background: rgba(34, 61, 108, 0.55);
  z-index: 1;
  transition: transform 0.45s ease, background 0.45s ease;
}

.card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(123, 171, 255, 0.16) 0%, transparent 55%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.card-shine {
  position: absolute;
  top: -20%;
  left: -120%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.03) 35%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0.03) 65%,
    transparent 100%
  );
  transform: skewX(-22deg);
  transition: left 0.75s ease;
  z-index: 1;
  pointer-events: none;
}

.stat-value,
.stat-label {
  position: relative;
  z-index: 2;
}

.stat-value {
  font-size: clamp(48px, 3.8vw, 72px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #a9c1ff;
  margin-bottom: 16px;
  transition:
    transform 0.45s ease,
    text-shadow 0.45s ease,
    color 0.45s ease;
}

.stat-value--orange {
  color: #ff7c30;
}

.stat-label {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7082a0;
  transition:
    letter-spacing 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(6, 36, 74, 0.2),
    0 10px 20px rgba(6, 36, 74, 0.16),
    0 0 0 1px rgba(130, 170, 255, 0.08) inset;
  background: #072953;
}

.stat-card:hover .card-glow {
  opacity: 1;
  transform: scale(1);
}

.stat-card:hover .card-shine {
  left: 155%;
}

.stat-card:hover .card-corner {
  transform: scale(1.15);
  background: rgba(54, 89, 150, 0.6);
}

.stat-card:hover .stat-value {
  transform: translateY(-2px) scale(1.03);
  text-shadow: 0 6px 18px rgba(104, 152, 255, 0.22);
}

.stat-card:hover .stat-value--orange {
  text-shadow: 0 6px 18px rgba(255, 124, 48, 0.28);
}

.stat-card:hover .stat-label {
  color: #8698b6;
  letter-spacing: 0.16em;
  transform: translateY(2px);
}

@media (max-width: 1400px) {
  .stats-section {
    padding: 110px 72px;
  }

  .stats-grid {
    gap: 30px;
  }
}

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

@media (max-width: 767px) {
  .stats-section {
    padding: 72px 20px;
  }

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

  .stat-card {
    min-height: 165px;
    border-radius: 20px;
  }

  .card-corner {
    width: 68px;
    height: 68px;
    border-radius: 0 20px 0 100%;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stat-value,
  .stat-label,
  .card-glow,
  .card-shine,
  .card-corner {
    transition: none;
  }

  .stat-card:hover {
    transform: none;
  }

  .stat-card:hover .card-shine {
    left: -120%;
  }
}



/* ARCH END */

.architecture {
  background: radial-gradient(circle at 30% 50%, #0a1f3c, #020b1a);
  padding: 96px 80px;
  color: #c9d6f2;
  overflow: hidden;
}

.architecture-container {
  max-width: 1370px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 640px minmax(420px, 1fr);
  gap: 84px;
  align-items: center;
}

/* LEFT */
.arch-image {
  width: 100%;
  max-width: 640px; /* restrict like reference */
}

.image-frame {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #14284a, #122444);
  padding: 34px;
  border-radius: 22px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, rgba(116, 156, 255, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* makes it same square feel as reference */
  object-fit: cover;
  border-radius: 12px;
}

.arch-image:hover .image-frame {
  transform: translateY(-8px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(61, 114, 255, 0.08);
}

.arch-image:hover .image-frame::after {
  opacity: 1;
}

/* RIGHT */
.arch-content {
  max-width: 560px;
}

.tag {
  margin: 0 0 20px;
  color: #d89b73;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.title {
  margin: 0 0 28px;
  color: #dbe5ff;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.desc {
  margin: 0 0 44px;
  max-width: 520px;
  color: rgba(215, 224, 245, 0.76);
  font-size: 18px;
  line-height: 1.6;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.features li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.3s ease;
}

.features li:hover {
  transform: translateX(6px);
}

.icon {
  width: 22px;
  height: 22px;
  border: 2px solid #a8beff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8beff;
  font-size: 11px;
  line-height: 1;
  margin-top: 3px;
}

.features strong {
  display: block;
  margin-bottom: 4px;
  color: #dbe5ff;
  font-size: 18px;
  font-weight: 700;
}

.features p {
  margin: 0;
  color: rgba(215, 224, 245, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .architecture {
    padding: 80px 48px;
  }

  .architecture-container {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 56px;
  }

  .arch-image {
    max-width: 560px;
  }
}

@media (max-width: 991px) {
  .architecture-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .arch-image {
    max-width: 640px;
  }

  .arch-content {
    max-width: 100%;
  }

  .image-frame {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .architecture {
    padding: 64px 20px;
  }

  .arch-image {
    max-width: 100%;
  }

  .image-frame {
    padding: 16px;
    border-radius: 18px;
  }

  .image-frame::after {
    border-radius: 18px;
  }

  .image-frame img {
    border-radius: 10px;
  }

  .title {
    font-size: 38px;
    line-height: 1.02;
  }

  .desc {
    font-size: 16px;
  }

  .features strong {
    font-size: 16px;
  }
}

/* PATH END */

.lifecycle-pin {
  background: #f3f4f6;
}

.lifecycle-panel {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* HEADER */
.lifecycle-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.lifecycle-header h2 {
  font-size: 48px;
  color: #111827;
}

.lifecycle-header p {
  color: #64748b;
}

/* VIEWPORT */
.lifecycle-viewport {
  overflow: hidden;
}

/* ROW */


/* CARDS */
.lifecycle-pin .card {
  min-width: 320px;
  background: #2c3f5f;
  padding: 30px;
  border-radius: 20px;

  color: #cbd5f5;

  opacity: 0.3;
  transform: scale(0.92);
  transition: 0.4s;
}

.card span {
  color: #ff7a2f;
  font-weight: bold;
}

.card h3 {
  margin: 10px 0;
  color: #e2e8f0;
}

.lifecycle-pin .card.active {
  opacity: 1;
  transform: scale(1);
}

.card.done {
  opacity: 0.6;
}

/* ARROWS */
.arrow {
  font-size: 40px;
  color: #cbd5e1;
  opacity: 0.5;
}

.lifecycle-row {
  display: flex;
  align-items: center;
  gap: 40px;
  will-change: transform;
}
.lifecycle-viewport {
  overflow: hidden;
  padding: 0 40px;
}

.sector-img {
  width: 100%;
  aspect-ratio: 443 / 236;
  border-radius: 14px;
  overflow: hidden;
}

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

.sectors {
  background: linear-gradient(180deg, #020b1a, #050f24);
  padding: 100px 40px;
  color: #dbe6ff;
}

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

.sectors-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

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

/* CARD */
.sector-card {
  background: #1b2c45;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

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

/* hover */
.sector-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

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

/* TOP */
.sector-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.icon {
  width: 48px;
  height: 48px;
  background: #243a5f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fb3ff;
  font-size: 18px;
  transition: 0.3s;
}

.sector-card:hover .icon {
  background: #3b82f6;
  color: white;
  box-shadow: 0 0 20px rgba(59,130,246,0.6);
}

.sector-top h3 {
  margin: 0;
  font-size: 20px;
}

.sector-top p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

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

.sector-img img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.sector-card:hover .sector-img img {
  transform: scale(1.1);
}

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

/* FAQ */

/* container */
.faq-item {
  background: #0e2747;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

/* QUESTION */
.faq-question i {
  transition: transform 0.4s ease;
}

/* ANSWER WRAPPER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* TEXT ANIMATION */
.faq-answer p {
  padding: 0 26px 20px;

  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;
}

/* HOVER STATE */
.faq-item:hover .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ICON ROTATION */
.faq-item:hover .faq-question i {
  transform: rotate(180deg);
}
.faq-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* =========================
   FAQ BASE UI (FIX)
========================= */

.faq {
  background: #dde3ee;
  padding: 100px 40px;
}

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

.faq-title {
  text-align: center;
  font-size: 42px;
  color: #01050d;
  margin-bottom: 60px;
}

/* ITEM */
.faq-item {
  background: #0e2747;
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;

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

  padding: 22px 26px;

  font-size: 17px;
  font-weight: 500;
  color: #e6ecff;

  cursor: pointer;
}

/* ICON */
.faq-question i {
  font-size: 14px;
  color: #fefefe;
}

/* ANSWER TEXT */
.faq-answer p {
  font-size: 15px;
  color: #cecece;
  line-height: 1.6;
}

/* =========================
   MOUSE FOLLOW GLOW
========================= */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(
    300px circle at var(--x, 50%) var(--y, 50%),
    rgba(56, 120, 238, 0.451),
    transparent 60%
  );

  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* show glow on hover */
.faq-item:hover::before {
  opacity: 1;
}

/* CTA BUTTON */

/* SECTION BACKGROUND */
.cta-section {
  background: #020817;
  padding: 120px 40px;
}

/* CARD */
.cta-card {
  max-width: 1300px;
  margin: auto;
  border-radius: 36px;
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #5b6fff, #0b1f44 70%);
}

/* GLOW LAYER */
.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at var(--x,50%) var(--y,50%),
    rgba(255,255,255,0.12),
    transparent 60%
  );

  transition: background 0.2s;
}

/* CONTENT */
.cta-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;

  padding: 80px;
  position: relative;
  z-index: 2;
}

/* LEFT */
.cta-left h2 {
  font-size: clamp(44px, 4vw, 68px);
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
}

.cta-left p {
  color: #cbd5f5;
  margin-bottom: 30px;
  max-width: 420px;
}

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

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

/* BUTTON RIPPLE */
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--bx,50%) var(--by,50%),
    rgba(255,255,255,0.3),
    transparent 60%
  );
  opacity: 0;
  transition: 0.3s;
}

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

/* IMAGE */
.cta-right img {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-content {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
}
/* =========================
   ARCHITECTURE IMPROVEMENTS
========================= */

/* more breathing space */
.architecture {
  padding: 120px 100px;
}

/* better balance */
.architecture-container {
  gap: 120px;
  align-items: center;
}

/* LEFT IMAGE ENHANCEMENT */
.image-frame {
  padding: 40px;
  border-radius: 26px;
}

/* subtle depth */
.image-frame img {
  border-radius: 14px;
}

/* RIGHT CONTENT */
.arch-content {
  max-width: 580px;
}

/* TAG spacing */
.tag {
  margin-bottom: 24px;
  letter-spacing: 0.28em;
}

/* TITLE (more premium spacing) */
.title {
  margin-bottom: 34px;
  line-height: 0.95;
}

/* DESCRIPTION */
.desc {
  margin-bottom: 52px;
  font-size: 18px;
  line-height: 1.7;
}

/* FEATURES LIST */
.features {
  gap: 32px;
}

/* EACH ITEM */
.features li {
  gap: 18px;
}

/* ICON polish */
.icon {
  width: 26px;
  height: 26px;
  font-size: 12px;
}

/* TEXT spacing */
.features strong {
  font-size: 18px;
  margin-bottom: 6px;
}

.features p {
  font-size: 15px;
  line-height: 1.6;
}

/* hover feel more alive */
.features li:hover {
  transform: translateX(10px);
}

/* =========================
   RESPONSIVE FIX
========================= */

@media (max-width: 1200px) {
  .architecture {
    padding: 100px 60px;
  }

  .architecture-container {
    gap: 80px;
  }
}

@media (max-width: 991px) {
  .architecture {
    padding: 80px 30px;
  }

  .architecture-container {
    gap: 50px;
  }

  .arch-content {
    text-align: center;
  }

  .features li {
    justify-content: center;
    text-align: left;
  }
}

/* =================================
   BUTTONS ONLY
   keep original colors, better hover logic
   ================================= */

.btn-primary,
.btn-secondary,
.cta-btn,
.northstar .form-btn,
.submit-btn,
.hero-btn.primary,
.hero-btn.secondary,
.app-btn.primary,
.app-btn.secondary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.pricing-btn,
.engagement-btn,
.contact-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color .38s ease,
    background-color .38s ease,
    background .38s ease,
    border-color .38s ease,
    box-shadow .38s ease,
    transform .28s ease;
}

/* sliding layer */
.btn-primary::before,
.btn-secondary::before,
.cta-btn::before,
.northstar .form-btn::before,
.submit-btn::before,
.hero-btn.primary::before,
.hero-btn.secondary::before,
.app-btn.primary::before,
.app-btn.secondary::before,
.platform-btn::before,
.platform-light-btn::before,
.dual-btn::before,
.hybrid-btn::before,
.pricing-btn::before,
.engagement-btn::before,
.contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-102%);
  transition: transform .52s cubic-bezier(.22,1,.36,1);
  background: var(--btn-slide, transparent);
  pointer-events: none;
}

/* glossy sweep */
.btn-primary::after,
.btn-secondary::after,
.cta-btn::after,
.northstar .form-btn::after,
.submit-btn::after,
.hero-btn.primary::after,
.hero-btn.secondary::after,
.app-btn.primary::after,
.app-btn.secondary::after,
.platform-btn::after,
.platform-light-btn::after,
.dual-btn::after,
.hybrid-btn::after,
.pricing-btn::after,
.engagement-btn::after,
.contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.20) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .68s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

/* keep text above layers */
.btn-primary,
.btn-secondary,
.cta-btn,
.northstar .form-btn,
.submit-btn,
.hero-btn.primary,
.hero-btn.secondary,
.app-btn.primary,
.app-btn.secondary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.pricing-btn,
.engagement-btn,
.contact-btn {
  z-index: 1;
}

.btn-primary:hover,
.btn-secondary:hover,
.cta-btn:hover,
.northstar .form-btn:hover,
.submit-btn:hover,
.hero-btn.primary:hover,
.hero-btn.secondary:hover,
.app-btn.primary:hover,
.app-btn.secondary:hover,
.platform-btn:hover,
.platform-light-btn:hover,
.dual-btn:hover,
.hybrid-btn:hover,
.pricing-btn:hover,
.engagement-btn:hover,
.contact-btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.cta-btn:hover::before,
.northstar .form-btn:hover::before,
.submit-btn:hover::before,
.hero-btn.primary:hover::before,
.hero-btn.secondary:hover::before,
.app-btn.primary:hover::before,
.app-btn.secondary:hover::before,
.platform-btn:hover::before,
.platform-light-btn:hover::before,
.dual-btn:hover::before,
.hybrid-btn:hover::before,
.pricing-btn:hover::before,
.engagement-btn:hover::before,
.contact-btn:hover::before {
  transform: translateX(0);
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.cta-btn:hover::after,
.northstar .form-btn:hover::after,
.submit-btn:hover::after,
.hero-btn.primary:hover::after,
.hero-btn.secondary:hover::after,
.app-btn.primary:hover::after,
.app-btn.secondary:hover::after,
.platform-btn:hover::after,
.platform-light-btn:hover::after,
.dual-btn:hover::after,
.hybrid-btn:hover::after,
.pricing-btn:hover::after,
.engagement-btn:hover::after,
.contact-btn:hover::after {
  left: 145%;
}

/* =================================
   ORANGE SOLID -> TRANSPARENT ORANGE
   ================================= */

.btn-primary,
.hero-btn.primary,
.app-btn.primary,
.northstar .form-btn,
.submit-btn,
.pricing-btn,
.engagement-btn,
.cta-btn {
  --btn-slide: transparent;
  border: 2.5px solid transparent;
}

.btn-primary:hover,
.hero-btn.primary:hover,
.app-btn.primary:hover,
.northstar .form-btn:hover,
.submit-btn:hover,
.pricing-btn:hover,
.engagement-btn:hover {
  background: transparent !important;
  color: #ff7a2f !important;
  border-color: #ff7a2f !important;
}

/* keep orange gradient/button family same base */
.northstar .form-btn:hover,
.submit-btn:hover {
  color: #ff7a1a !important;
  border-color: #ff7a1a !important;
}

/* white CTA special: light -> dark */
.cta-btn {
  --btn-slide: #11233f;
  border: 2.5px solid #ffffff;
}

.cta-btn:hover {
  color: #ffffff !important;
  border-color: #11233f !important;
  background: #ffffff !important; /* base stays white under slide */
}

/* =================================
   GLASS / TRANSPARENT -> FILLED
   left to right
   ================================= */

.btn-secondary,
.hero-btn.secondary,
.app-btn.secondary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.contact-btn {
  border: 2.5px solid rgba(255,255,255,0.18);
}

/* dark/glass buttons fill a bit brighter */
.btn-secondary,
.hero-btn.secondary,
.app-btn.secondary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn {
  --btn-slide: rgba(255,255,255,0.10);
}

.btn-secondary:hover,
.hero-btn.secondary:hover,
.app-btn.secondary:hover,
.platform-btn:hover,
.platform-light-btn:hover,
.dual-btn:hover,
.hybrid-btn:hover {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.28) !important;
}

/* dark solid buttons -> light glass */
.contact-btn {
  --btn-slide: rgba(255,255,255,0.08);
}

.contact-btn:hover {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.16) !important;
}

/* =================================
   OPTIONAL stronger shadows
   ================================= */

.btn-primary:hover,
.hero-btn.primary:hover,
.app-btn.primary:hover,
.northstar .form-btn:hover,
.submit-btn:hover,
.pricing-btn:hover,
.engagement-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255,122,47,.10),
    0 14px 34px rgba(255,122,47,.14);
}

.btn-secondary:hover,
.hero-btn.secondary:hover,
.app-btn.secondary:hover,
.platform-btn:hover,
.platform-light-btn:hover,
.dual-btn:hover,
.hybrid-btn:hover,
.contact-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 12px 28px rgba(0,0,0,.18);
}

.cta-btn:hover {
  box-shadow:
    0 0 0 1px rgba(17,34,63,.12),
    0 18px 34px rgba(17,34,63,.18);
}

/* thicker border always visible on hover */
.btn-primary:hover,
.btn-secondary:hover,
.cta-btn:hover,
.northstar .form-btn:hover,
.submit-btn:hover,
.hero-btn.primary:hover,
.hero-btn.secondary:hover,
.app-btn.primary:hover,
.app-btn.secondary:hover,
.platform-btn:hover,
.platform-light-btn:hover,
.dual-btn:hover,
.hybrid-btn:hover,
.pricing-btn:hover,
.engagement-btn:hover,
.contact-btn:hover {
  border-width: 2.5px;
}


/* CTA button final fix */
.cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;

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

  background: #ffffff !important;
  color: #11233f !important;
  border: 2.5px solid #ffffff !important;
  z-index: 1;
}

.cta-btn span,
.cta-btn {
  position: relative;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #11233f;
  transform: translateX(-102%);
  transition: transform .52s cubic-bezier(.22,1,.36,1);
  z-index: -1;
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  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);
  z-index: 0;
  pointer-events: none;
}

.cta-btn:hover {
  color: #ffffff !important;
  border-color: #11233f !important;
  transform: translateY(-3px);
}

.cta-btn:hover::before {
  transform: translateX(0);
}

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

/* responves */


@media (max-width: 992px) {

  .android-hero {
    padding: 80px 20px;
  }

  .android-hero-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 15px;
    margin: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    max-width: 90%;
    margin: auto;
  }
}

@media (max-width: 768px) {

  .advantages {
    padding: 60px 20px;
  }

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

  .adv-inner {
    padding: 24px;
  }

  .advantages h2 {
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 992px) {

  .native-services-pro {
    padding: 70px 20px;
  }

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

  .body {
    padding: 20px;
  }
}

@media (max-width: 768px) {

  .stats-section {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-value {
    font-size: 42px;
  }
}

@media (max-width: 992px) {

  .architecture {
    padding: 60px 20px;
  }

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

  .arch-content {
    text-align: center;
  }

  .title {
    font-size: 34px;
  }

  .desc {
    font-size: 15px;
  }

  .features {
    gap: 20px;
  }
}

@media (max-width: 768px) {

  .sectors {
    padding: 60px 20px;
  }

  .sectors-title {
    font-size: 28px;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {

  .faq {
    padding: 60px 20px;
  }

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

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


/* =========================
   CTA PERFECT RESPONSIVE
========================= */

/* tablet */
@media (max-width: 1024px) {

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px;
    text-align: center;
  }

  .cta-left {
    order: 1;
  }

  .cta-right {
    order: 2;
    max-width: 500px;
    margin: auto;
  }

  .cta-left h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .cta-left p {
    margin: 0 auto 25px;
    max-width: 500px;
  }
}


/* mobile */
@media (max-width: 768px) {

  .cta-section {
    padding: 60px 16px;
  }

  .cta-card {
    border-radius: 24px;
  }

  .cta-content {
    padding: 30px 20px;
    gap: 30px;
  }

  /* TEXT */
  .cta-left h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .cta-left p {
    font-size: 15px;
    max-width: 100%;
  }

  /* BUTTON (IMPORTANT) */
  .cta-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 22px;
    font-size: 15px;
  }

  /* IMAGE */
  .cta-right {
    max-width: 100%;
  }

  .cta-right img {
    border-radius: 12px;
  }
}