:root {
  --bg: #f8fafc;
  --paper: #ffffff;
  --ink: #0f1729;
  --muted: #5f6b7a;
  --line: #dce4ef;
  --blue: #1464f6;
  --blue-2: #0c9ee8;
  --green: #20d47b;
  --shadow: 0 22px 60px rgba(17, 51, 104, .14);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, "Noto Sans Bengali", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(20, 100, 246, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 100, 246, .045) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, .82);
  backdrop-filter: blur(18px);
  border-top: 3px solid var(--blue-2);
  border-bottom: 1px solid rgba(180, 197, 220, .55);
}
.nav-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  color: #0d827f;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0f9f8e, #142cf6);
  font-size: 13px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(31, 54, 96, .06);
}
.nav a {
  padding: 10px 17px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #526173;
}
.nav a.active, .nav a:hover {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(20, 100, 246, .27);
}
.nav-actions { display: flex; align-items: center; gap: 18px; }
.phone { color: #465568; font-weight: 600; white-space: nowrap; }
.menu-btn { display: none; border: 0; background: var(--paper); font-size: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 44, 91, .08);
}
.btn-primary { color: #fff; background: linear-gradient(135deg, #0787ff, #244cef); }
.btn-light { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }

.hero { padding: 62px 0 54px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  gap: 54px;
  align-items: center;
}
.trust-pill, .chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 20px rgba(22, 48, 86, .06);
}
.trust-pill {
  padding: 10px 17px;
  border-radius: 26px;
  font-weight: 800;
  font-size: 14px;
}
.trust-pill span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--blue);
}
.trust-pill b {
  padding: 3px 7px;
  border-radius: 8px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: 11px;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin: 28px 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}
.hero h1 span { color: var(--blue); display: block; }
.hero-copy > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.chips span { padding: 10px 14px; border-radius: 24px; color: #425166; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.mini-stats strong { font-size: 24px; color: var(--ink); }
.mini-stats span { color: var(--muted); }
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: end;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #eef6ff);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(20,100,246,.14), transparent 32%);
}
.hero-visual img {
  position: relative;
  width: min(88%, 440px);
  margin-bottom: -10px;
}
.speed-badge, .rating, .verified {
  position: absolute;
  z-index: 2;
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(25, 64, 129, .18);
}
.speed-badge { top: 26px; right: 24px; color: #fff; background: var(--blue); padding: 13px 18px; }
.rating { bottom: 18px; left: 26px; background: #fff; padding: 12px 18px; }
.verified { bottom: 18px; right: 22px; color: #fff; background: var(--blue); padding: 12px 18px; }

.logos { background: #fff; border-block: 1px solid var(--line); }
.platform-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
}
.platform-row span { color: var(--muted); white-space: nowrap; }
.platform-row b {
  min-width: 110px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px solid var(--line);
  text-align: center;
}

.section { padding: 86px 0; }
.soft { background: rgba(255,255,255,.58); }
.section-head { width: min(760px, calc(100% - 32px)); margin: 0 auto 38px; text-align: center; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
}
.section h2, .page-hero h1, .cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-head p, .page-hero p, .split p, .promo p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.stat-grid, .service-grid, .testimonial-grid, .process-grid, .partner-grid, .case-grid {
  display: grid;
  gap: 20px;
}
.stat-grid { grid-template-columns: repeat(4, 1fr); }
.stat-grid div, .service-card, .feature-list article, .testimonial-grid article, .process-grid article, .partner-grid article, .case-grid article, .form-card, .contact-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 15px 45px rgba(33, 60, 105, .07);
}
.stat-grid div { padding: 32px; text-align: center; }
.stat-grid strong { display: block; color: var(--blue); font-size: 42px; }
.stat-grid span { color: var(--muted); font-weight: 700; }

.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card { position: relative; padding: 28px; min-height: 315px; }
.service-card.featured {
  background: linear-gradient(180deg, #fff, #edf5ff);
  border-color: rgba(20, 100, 246, .28);
}
.popular {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}
.service-no { color: var(--blue); font-weight: 900; }
.service-card h3 { margin: 18px 0 10px; font-size: 22px; }
.service-card p, .service-card li { color: var(--muted); line-height: 1.65; }
.service-card ul { padding-left: 18px; }
.service-card a { color: var(--blue); font-weight: 900; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.feature-list { display: grid; gap: 16px; }
.feature-list article { padding: 24px; }
.inline-stats { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.inline-stats b { padding: 17px 21px; border-radius: 8px; background: #fff; border: 1px solid var(--line); font-size: 26px; }
.inline-stats small { display: block; color: var(--muted); font-size: 13px; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid article { padding: 30px; }
.testimonial-grid p { color: #2e3a4b; line-height: 1.8; }
.testimonial-grid span { display: block; color: var(--muted); margin-top: 4px; }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid article { padding: 28px; }
.process-grid b { color: var(--blue); font-size: 32px; }
.process-grid span { float: right; color: var(--muted); font-weight: 800; }
.process-grid p { color: var(--muted); line-height: 1.7; }
.process-grid small { color: var(--blue); font-weight: 800; }
.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #102454, #116df5);
}
.promo p, .promo .eyebrow { color: rgba(255,255,255,.84); }
.faq { display: grid; gap: 12px; max-width: 900px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
}
.faq summary { cursor: pointer; font-weight: 900; }
.faq summary span { margin-right: 16px; color: var(--blue); }
.faq p { color: var(--muted); line-height: 1.8; padding-left: 48px; }
.cta {
  padding: 78px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #0a1b45, #1464f6);
}
.cta p { color: rgba(255,255,255,.78); }
.cta .btn { margin: 8px; }

.page-hero {
  padding: 90px 0 74px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(241,247,255,.72));
}
.page-hero .container { max-width: 900px; }
.partner-grid, .case-grid { grid-template-columns: repeat(3, 1fr); }
.partner-grid article, .case-grid article { padding: 30px; }
.case-grid span { color: var(--blue); font-size: 34px; font-weight: 900; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.form-card, .contact-card { padding: 30px; }
label { display: grid; gap: 8px; margin-bottom: 16px; color: #324054; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  background: #fbfdff;
}
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(20, 100, 246, .15); border-color: var(--blue); }
.contact-card a, .contact-card p { display: block; margin: 13px 0; color: var(--muted); }
.flash {
  width: min(760px, calc(100% - 32px));
  margin: 22px auto 0;
  padding: 14px 18px;
  border-radius: 8px;
  color: #075232;
  background: #dcfff0;
  border: 1px solid #9decc6;
  font-weight: 800;
}

.footer { background: #07152e; color: #d7e4f8; }
.ticker {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px;
  background: #0e2753;
}
.ticker p { margin: 0; }
.ticker a { color: #7bd3ff; font-weight: 900; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 56px 0 38px;
}
.footer h4 { color: #fff; }
.footer a, .footer span { display: block; color: #bdd0e9; margin: 9px 0; }
.footer p { color: #9eb3ce; line-height: 1.8; }
.footer-brand { color: #fff; margin-bottom: 16px; }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
}
.payments { font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8fa4c1;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  border: 9px solid rgba(32,212,123,.22);
  box-shadow: 0 18px 45px rgba(32, 212, 123, .34);
}

@media (max-width: 980px) {
  .nav-wrap { height: auto; min-height: 66px; flex-wrap: wrap; padding: 14px 0; }
  .menu-btn { display: block; margin-left: auto; }
  .nav {
    display: none;
    width: 100%;
    order: 4;
    border-radius: 8px;
    align-items: stretch;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .nav-actions { display: none; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .stat-grid, .service-grid, .process-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .partner-grid, .case-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1160px); }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: 42px; }
  .hero-copy > p { font-size: 16px; }
  .hero-visual { min-height: 390px; border-radius: 18px; }
  .speed-badge, .verified, .rating { font-size: 12px; padding: 9px 11px; }
  .mini-stats, .stat-grid, .service-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .platform-row { justify-content: start; }
  .section { padding: 58px 0; }
  .section h2, .page-hero h1, .cta h2 { font-size: 34px; }
  .promo { align-items: flex-start; flex-direction: column; padding: 28px; }
  .footer-bottom { flex-direction: column; }
}

/* Premium homepage polish */
:root {
  --teal: #0fb8a8;
  --orange: #ffb545;
  --shadow-soft: 0 14px 34px rgba(26, 46, 86, .09);
}

body {
  background:
    radial-gradient(circle at 14% 8%, rgba(15, 184, 168, .14), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 181, 69, .12), transparent 24%),
    linear-gradient(rgba(20, 100, 246, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 100, 246, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 100% 100%, 100% 100%, 52px 52px, 52px 52px, auto;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 100, 246, .45), transparent);
}

.brand-mark {
  background: linear-gradient(135deg, var(--teal), #142cf6);
  box-shadow: 0 10px 22px rgba(15, 184, 168, .24);
}

.btn {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 44, 91, .14);
}

.btn-primary {
  background: linear-gradient(135deg, #0787ff, #244cef 62%, #102fd7);
}

.hero {
  position: relative;
  padding: 78px 0 66px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px auto auto 50%;
  width: min(760px, 70vw);
  height: min(760px, 70vw);
  transform: translateX(-7%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 100, 246, .16), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
}

.trust-pill {
  animation: floatSoft 5s ease-in-out infinite;
}

.trust-pill span {
  box-shadow: 0 0 0 7px rgba(20, 100, 246, .12);
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, #1464f6, #0fb8a8 55%, #0d38d8);
  -webkit-background-clip: text;
  background-clip: text;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.hero-visual {
  min-height: 580px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.88), rgba(238,246,255,.86)),
    linear-gradient(180deg, #fff, #eef6ff);
}

.hero-visual::before {
  background:
    radial-gradient(circle at 70% 20%, rgba(20,100,246,.18), transparent 32%),
    radial-gradient(circle at 22% 70%, rgba(15,184,168,.18), transparent 28%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: conic-gradient(from 120deg, rgba(20,100,246,.18), rgba(15,184,168,.2), rgba(255,181,69,.16), rgba(20,100,246,.18));
  filter: blur(14px);
  opacity: .72;
  animation: rotateGlow 12s linear infinite;
}

.hero-visual img {
  z-index: 1;
  filter: drop-shadow(0 28px 35px rgba(15, 44, 91, .22));
  animation: heroLift 6s ease-in-out infinite;
}

.speed-badge {
  animation: floatSoft 4.6s ease-in-out infinite;
}

.rating {
  animation: floatSoft 5.3s ease-in-out infinite reverse;
}

.verified {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  animation: floatSoft 5.7s ease-in-out infinite;
}

.platform-row b {
  box-shadow: var(--shadow-soft);
}

.soft {
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(245,249,255,.78));
  border-block: 1px solid rgba(220, 228, 239, .7);
}

.eyebrow {
  letter-spacing: .02em;
}

.stat-grid div,
.service-card,
.feature-list article,
.testimonial-grid article,
.process-grid article,
.partner-grid article,
.case-grid article,
.form-card,
.contact-card {
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.stat-grid div:hover,
.service-card:hover,
.feature-list article:hover,
.testimonial-grid article:hover,
.process-grid article:hover,
.partner-grid article:hover,
.case-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 100, 246, .24);
  box-shadow: 0 24px 58px rgba(31, 61, 112, .14);
}

.service-card {
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--orange));
  opacity: .82;
}

.promo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, #102454, #116df5 64%, #0fb8a8);
  box-shadow: 0 24px 70px rgba(20, 100, 246, .22);
}

.promo::after {
  content: "";
  position: absolute;
  inset: -40% auto auto 60%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.promo > * {
  position: relative;
  z-index: 1;
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 10%, rgba(15, 184, 168, .32), transparent 30%),
    linear-gradient(135deg, #0a1b45, #1464f6);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-100%);
  animation: shine 7s ease-in-out infinite;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.whatsapp-float {
  animation: pulseRing 2.8s ease-in-out infinite;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Apply ads landing page */
.apply-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 68px;
  background:
    radial-gradient(circle at 18% 22%, rgba(20,100,246,.12), transparent 34%),
    radial-gradient(circle at 78% 38%, rgba(12,158,232,.12), transparent 28%),
    linear-gradient(180deg, #f8fbff, #edf5ff);
  border-bottom: 1px solid rgba(220, 228, 239, .8);
}

.apply-hero::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 28%;
  width: 190px;
  height: 190px;
  opacity: .35;
  background-image: radial-gradient(rgba(20,100,246,.55) 1px, transparent 1px);
  background-size: 12px 12px;
}

.apply-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 56px;
  align-items: center;
}

.apply-copy h1 {
  margin: 28px 0 18px;
  max-width: 680px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
}

.apply-copy h1 span {
  display: block;
  color: #1557df;
}

.apply-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.apply-actions,
.apply-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.apply-actions {
  margin: 26px 0 22px;
}

.apply-chips span {
  padding: 10px 14px;
  border: 1px solid rgba(20,100,246,.14);
  border-radius: 12px;
  color: #2d456b;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  font-size: 13px;
}

.apply-price-card,
.video-card,
.notice-box,
.apply-form-card,
.side-card,
.apply-faq-panel,
.tracking-panel,
.why-strip,
.apply-stat-grid article {
  border: 1px solid rgba(191, 208, 235, .88);
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 64px rgba(29, 73, 144, .12);
}

.apply-price-card {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  animation: heroLift 6s ease-in-out infinite;
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #fff;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #1c67ff, #0e42d8);
  font-weight: 900;
}

.price-card-head b {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: 12px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 30px 20px 6px;
  color: #1359e8;
}

.price-main strong {
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1;
}

.price-main span {
  color: #13223a;
  font-size: 24px;
  font-weight: 900;
}

.apply-price-card > p {
  margin: 0 22px 22px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.price-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 22px 24px;
}

.price-metrics div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
}

.price-metrics b,
.price-metrics span {
  display: block;
}

.price-metrics b {
  color: #10264b;
  font-size: 24px;
}

.price-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-revenue {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 170px;
  padding: 16px;
  border: 1px solid rgba(191, 208, 235, .88);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
}

.floating-revenue b {
  display: block;
  margin-top: 5px;
  color: #11264b;
  font-size: 18px;
}

.apply-section {
  padding: 64px 0;
  background: #fff;
}

.apply-section.compact {
  padding-top: 44px;
}

.apply-title {
  width: min(720px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.apply-title span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #1557df;
  background: #edf4ff;
  font-weight: 900;
  font-size: 13px;
}

.apply-title h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 40px);
}

.apply-title p {
  color: var(--muted);
}

.video-card {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #061832, #0c4d95);
}

.video-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  background: radial-gradient(circle at 50% 40%, rgba(34,114,255,.36), transparent 44%);
}

.video-top,
.video-controls {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #fff;
  font-size: 13px;
}

.video-top { top: 0; }
.video-controls {
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}

.video-controls i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff214f;
}

.video-controls span {
  flex: 1;
  height: 4px;
  margin: 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff214f 32%, rgba(255,255,255,.45) 32%);
}

.apply-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.apply-stat-grid article {
  min-height: 132px;
  padding: 24px;
  border-radius: 12px;
}

.apply-stat-grid span,
.apply-stat-grid p {
  color: var(--muted);
  font-weight: 700;
}

.apply-stat-grid b {
  display: block;
  margin: 9px 0 4px;
  color: #145be9;
  font-size: 32px;
}

.apply-stat-grid p {
  margin: 0;
  font-size: 13px;
}

.why-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 0;
  margin-top: 24px;
  padding: 24px;
  border-radius: 12px;
}

.why-strip h3 {
  margin: 0;
  color: #1557df;
}

.why-strip div {
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.why-strip b,
.why-strip span {
  display: block;
}

.why-strip b {
  color: #13223a;
}

.why-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.notice-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  padding: 30px;
  border-color: rgba(255, 120, 120, .28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 77, 109, .08), transparent 26%),
    rgba(255,255,255,.96);
}

.notice-box h3 {
  color: #e23044;
}

.notice-box p,
.notice-box li,
.mini-price p {
  color: var(--muted);
  line-height: 1.7;
}

.notice-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  padding-left: 18px;
}

.mini-price {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fcff;
}

.mini-price span,
.mini-price b {
  display: block;
}

.mini-price span {
  color: var(--muted);
  font-weight: 800;
}

.mini-price b {
  margin: 8px 0;
  color: #145be9;
  font-size: 42px;
}

.mini-price small {
  color: #13223a;
  font-size: 18px;
}

.form-zone {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.apply-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 24px;
  align-items: start;
}

.apply-form-card {
  border-radius: 14px;
}

.apply-form-card h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.form-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}

.apply-side {
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 24px;
  border-radius: 14px;
}

.side-card span,
.side-card b {
  display: block;
}

.side-card span {
  color: var(--muted);
  font-weight: 800;
}

.side-card b {
  margin: 8px 0;
  color: #145be9;
  font-size: 34px;
}

.side-card p {
  color: var(--muted);
  line-height: 1.7;
}

.support-card {
  display: grid;
  gap: 12px;
}

.apply-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 24px;
  align-items: start;
}

.apply-faq-panel,
.tracking-panel {
  padding: 28px;
  border-radius: 14px;
}

.apply-faq-panel details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: #fbfdff;
}

.apply-faq-panel details + details {
  margin-top: 10px;
}

.apply-faq-panel summary {
  cursor: pointer;
  font-weight: 900;
}

.apply-faq-panel summary span {
  margin-right: 12px;
  color: #145be9;
}

.apply-faq-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.tracking-panel > span {
  color: #7d9ce0;
  font-size: 12px;
  font-weight: 900;
}

.tracking-panel div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
}

.tracking-panel b {
  color: #2c3c55;
}

.tracking-panel em {
  color: #0d8e58;
  font-style: normal;
  font-weight: 900;
}

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 56px;
  background:
    radial-gradient(circle at 18% 20%, rgba(20,100,246,.12), transparent 35%),
    radial-gradient(circle at 86% 18%, rgba(15,184,168,.1), transparent 26%),
    linear-gradient(180deg, #f8fbff, #edf5ff);
  border-bottom: 1px solid rgba(220, 228, 239, .82);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.breadcrumb-pill {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #385071;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
}

.about-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
}

.about-copy h1 span {
  color: #1557df;
}

.about-copy h3 {
  margin-bottom: 20px;
  color: #152644;
  font-size: 22px;
}

.about-copy p {
  max-width: 670px;
  color: var(--muted);
  line-height: 1.85;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.office-card {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
}

.office-wall {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(7,21,46,.95) 0 35%, transparent 35%),
    linear-gradient(135deg, #162842, #24384f 45%, #b9c8dd 46%, #eef5ff 100%);
  box-shadow: 0 28px 72px rgba(18, 52, 105, .18);
}

.office-wall::before {
  content: "";
  position: absolute;
  inset: 22px 38px auto 38px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.76), rgba(255,255,255,.1), rgba(255,255,255,.62));
  box-shadow: 0 80px 0 rgba(255,255,255,.18);
}

.office-wall::after {
  content: "";
  position: absolute;
  left: 54%;
  right: 8%;
  bottom: 46px;
  height: 70px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #d5e1f0, #8092aa);
  box-shadow: -160px 0 0 #6e829e, -82px -24px 0 #eef4fb, 42px -22px 0 #eef4fb;
}

.office-logo {
  position: absolute;
  left: 70px;
  top: 132px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 12px 26px rgba(0,0,0,.22);
}

.office-logo i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #59f2ba, #1557df);
  font-style: normal;
}

.office-desk {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b48a5a, #7a5431);
}

.trusted-card {
  position: absolute;
  left: -54px;
  bottom: -28px;
  width: 250px;
  padding: 24px;
  border: 1px solid rgba(191, 208, 235, .88);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  animation: floatSoft 5.8s ease-in-out infinite;
}

.trusted-card span,
.trusted-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.trusted-card b {
  display: inline-block;
  margin: 8px 6px 6px 0;
  color: #1557df;
  font-size: 30px;
}

.trusted-card i,
.trusted-card em {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #d5e4ff, #1557df);
}

.trusted-card em {
  color: #1557df;
  background: #eef4ff;
  font-style: normal;
  font-weight: 900;
}

.about-section {
  padding: 58px 0;
  background: #fff;
}

.about-section.compact {
  padding-top: 38px;
}

.about-journey,
.about-services {
  display: grid;
  grid-template-columns: minmax(260px, .5fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.journey-copy h2,
.service-intro h2,
.about-title h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.journey-copy p,
.service-intro p,
.about-title p {
  color: var(--muted);
  line-height: 1.8;
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journey-stats article,
.value-grid article,
.about-service-grid article,
.team-grid article {
  border: 1px solid rgba(191, 208, 235, .88);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease;
}

.journey-stats article:hover,
.value-grid article:hover,
.about-service-grid article:hover,
.team-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(31, 61, 112, .14);
}

.journey-stats article {
  min-height: 150px;
  padding: 26px 18px;
  text-align: center;
}

.journey-stats b {
  display: block;
  color: #1557df;
  font-size: 36px;
}

.journey-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.about-focus {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.mission-grid article {
  min-height: 142px;
  padding: 32px;
  border-radius: 28px 8px 28px 8px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.mission-grid article:last-child {
  border-radius: 8px 28px 8px 28px;
}

.mission-grid article span,
.value-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #1557df;
  background: #eef4ff;
  font-size: 26px;
  font-weight: 900;
}

.mission-grid p,
.value-grid p,
.about-service-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.brand-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(#1557df, #0fb8a8, #dbe8ff, #1557df);
  box-shadow: 0 22px 60px rgba(20,100,246,.18);
  animation: rotateGlow 14s linear infinite;
}

.brand-orbit::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

.brand-orbit span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #59f2ba, #1557df);
  font-size: 58px;
  font-weight: 900;
}

.about-title {
  width: min(720px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.value-grid,
.about-service-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(6, 1fr);
}

.value-grid article {
  padding: 22px 16px;
  text-align: center;
}

.value-grid span {
  margin-inline: auto;
}

.value-grid h3,
.value-grid p {
  margin-bottom: 0;
}

.services-preview {
  background: #f8fbff;
}

.about-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-service-grid article {
  min-height: 126px;
  padding: 22px;
}

.about-service-grid b {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: 10px;
  color: #1557df;
  background: #edf4ff;
}

.founder-banner {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 34px 42px;
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 42%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #0759ff, #062b7f 64%, #021d58);
  box-shadow: 0 28px 72px rgba(20,100,246,.26);
}

.founder-photo {
  position: relative;
  display: grid;
  place-items: center;
}

.founder-photo::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 4px solid rgba(255,255,255,.82);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255,255,255,.08);
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 230px;
  height: 230px;
  object-fit: contain;
  object-position: center bottom;
}

.founder-photo span {
  position: absolute;
  z-index: 2;
  left: 6px;
  bottom: 12px;
  width: 120px;
  padding: 13px;
  border-radius: 14px;
  color: #fff;
  background: #0b63ff;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
}

.founder-copy small {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffd966;
  background: rgba(0,0,0,.2);
  font-weight: 900;
}

.founder-copy h2 {
  margin: 10px 0 6px;
  font-size: clamp(30px, 4vw, 46px);
}

.founder-copy p {
  color: rgba(255,255,255,.84);
  line-height: 1.75;
}

.founder-copy div {
  display: grid;
  grid-template-columns: repeat(4, auto 1fr);
  gap: 4px 12px;
  margin-top: 18px;
}

.founder-copy b {
  font-size: 26px;
}

.founder-copy span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-grid article {
  padding: 28px;
  text-align: center;
}

.team-grid img {
  width: 104px;
  height: 104px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: contain;
  background: #eef4ff;
}

.team-grid h3 {
  margin-bottom: 5px;
}

.team-grid p {
  color: #1557df;
  font-weight: 800;
}

.team-grid div {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-grid a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #1557df;
  background: #edf4ff;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #12243f;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-weight: 900;
}

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

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

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 18px 45px rgba(32, 212, 123, .34), 0 0 0 0 rgba(32, 212, 123, .22); }
  50% { box-shadow: 0 18px 45px rgba(32, 212, 123, .34), 0 0 0 13px rgba(32, 212, 123, 0); }
}

@keyframes shine {
  0%, 58% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .apply-hero-grid,
  .notice-box,
  .apply-form-grid,
  .apply-bottom-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid,
  .about-journey,
  .about-services,
  .founder-banner {
    grid-template-columns: 1fr;
  }

  .office-card {
    min-height: 330px;
  }

  .trusted-card {
    left: 18px;
  }

  .journey-stats,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brand-orbit {
    order: -1;
  }

  .value-grid,
  .about-service-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-copy div {
    grid-template-columns: repeat(2, auto 1fr);
  }

  .apply-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-strip h3 {
    grid-column: 1 / -1;
  }

  .why-strip div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0 0;
  }

  .floating-revenue {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 18px;
  }

  .apply-hero {
    padding: 42px 0 48px;
  }

  .apply-copy h1 {
    font-size: 40px;
  }

  .apply-price-card {
    animation: none;
  }

  .price-metrics,
  .apply-stat-grid,
  .form-two,
  .why-strip,
  .notice-box ul {
    grid-template-columns: 1fr;
  }

  .floating-revenue {
    position: static;
    width: auto;
    margin: 0 22px 22px;
  }

  .video-card img {
    height: 240px;
  }

  .apply-section {
    padding: 48px 0;
  }

  .about-hero {
    padding: 42px 0 46px;
  }

  .about-copy h1 {
    font-size: 42px;
  }

  .office-card {
    min-height: 300px;
  }

  .office-logo {
    left: 34px;
    top: 104px;
    font-size: 24px;
  }

  .office-logo i {
    width: 44px;
    height: 44px;
  }

  .trusted-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 230px;
  }

  .journey-stats,
  .value-grid,
  .about-service-grid,
  .team-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .mission-grid article {
    padding: 24px;
  }

  .brand-orbit {
    width: 140px;
    height: 140px;
  }

  .brand-orbit span {
    width: 72px;
    height: 72px;
    font-size: 44px;
  }

  .founder-banner {
    padding: 26px 20px;
  }

  .founder-copy div {
    grid-template-columns: auto 1fr;
  }

  .founder-photo img {
    width: 210px;
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Final page fixes: about + apply ads */
.about-hero,
.apply-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(20,100,246,.13), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(15,184,168,.1), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%) !important;
}

.about-hero-grid,
.apply-hero-grid {
  display: grid !important;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.about-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr) !important;
  gap: 58px !important;
}

.apply-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
  gap: 56px !important;
}

.about-copy,
.apply-copy {
  min-width: 0;
}

.about-copy h1,
.apply-copy h1 {
  color: #07152e;
  font-weight: 900;
  letter-spacing: 0;
}

.about-copy h1 span,
.apply-copy h1 span {
  color: #1557df !important;
}

.about-copy p,
.apply-copy p,
.journey-copy p,
.service-intro p,
.about-title p,
.apply-title p {
  color: #5f6b7a;
}

.office-card,
.apply-price-card,
.video-card,
.notice-box,
.apply-form-card,
.side-card,
.apply-faq-panel,
.tracking-panel,
.journey-stats article,
.mission-grid article,
.value-grid article,
.about-service-grid article,
.founder-banner,
.team-grid article,
.trust-strip span,
.why-strip,
.apply-stat-grid article {
  border: 1px solid rgba(191, 208, 235, .92) !important;
  box-shadow: 0 18px 52px rgba(28, 67, 130, .11) !important;
}

.apply-price-card,
.video-card,
.notice-box,
.apply-form-card,
.side-card,
.apply-faq-panel,
.tracking-panel,
.journey-stats article,
.mission-grid article,
.value-grid article,
.about-service-grid article,
.team-grid article,
.why-strip,
.trust-strip span {
  background: rgba(255,255,255,.96) !important;
}

.apply-price-card {
  overflow: hidden !important;
  border-radius: 18px !important;
}

.floating-revenue {
  right: 18px !important;
  bottom: 18px !important;
}

.apply-section,
.about-section {
  position: relative;
}

.apply-section:nth-of-type(even),
.about-section:nth-of-type(even),
.services-preview,
.about-focus,
.form-zone {
  background: linear-gradient(180deg, #ffffff, #f7fbff) !important;
}

.apply-stat-grid,
.journey-stats,
.value-grid,
.about-service-grid,
.team-grid,
.trust-strip,
.price-metrics {
  display: grid !important;
}

.apply-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.journey-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.value-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.about-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.trust-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.about-journey,
.about-services,
.apply-form-grid,
.apply-bottom-grid,
.notice-box,
.mission-grid,
.founder-banner {
  display: grid !important;
}

.about-journey,
.about-services {
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr) !important;
}

.mission-grid {
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr) !important;
}

.founder-banner {
  grid-template-columns: 300px minmax(0, 1fr) !important;
}

.apply-form-grid,
.apply-bottom-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr) !important;
}

.notice-box {
  grid-template-columns: minmax(0, 1fr) 280px !important;
}

.form-two {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 16px !important;
}

.office-card {
  overflow: visible;
}

.office-wall {
  position: absolute !important;
  inset: 0 !important;
}

.trusted-card {
  z-index: 2;
}

.founder-banner {
  border: 0 !important;
}

.reveal-on-scroll:not(.is-visible) {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .about-hero-grid,
  .apply-hero-grid,
  .about-journey,
  .about-services,
  .mission-grid,
  .founder-banner,
  .apply-form-grid,
  .apply-bottom-grid,
  .notice-box {
    grid-template-columns: 1fr !important;
  }

  .apply-stat-grid,
  .journey-stats,
  .value-grid,
  .about-service-grid,
  .team-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .brand-orbit {
    order: 0 !important;
  }
}

@media (max-width: 640px) {
  .about-hero-grid,
  .apply-hero-grid {
    width: min(100% - 22px, 1160px);
  }

  .about-copy h1,
  .apply-copy h1 {
    font-size: 38px !important;
    line-height: 1.08 !important;
  }

  .apply-stat-grid,
  .journey-stats,
  .value-grid,
  .about-service-grid,
  .team-grid,
  .trust-strip,
  .price-metrics,
  .form-two,
  .notice-box ul,
  .why-strip {
    grid-template-columns: 1fr !important;
  }

  .office-card {
    min-height: auto !important;
  }

  .office-wall {
    position: relative !important;
    min-height: 260px;
  }

  .trusted-card {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin-top: 14px !important;
  }

  .floating-revenue {
    position: static !important;
    width: auto !important;
    margin: 0 18px 18px !important;
  }

  .founder-copy div {
    grid-template-columns: auto 1fr !important;
  }
}

/* Services page final design */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 56px;
  background:
    radial-gradient(circle at 16% 20%, rgba(20,100,246,.14), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(15,184,168,.1), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  border-bottom: 1px solid rgba(220,228,239,.82);
}

.services-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 210px;
  height: 210px;
  opacity: .22;
  background-image: radial-gradient(rgba(20,100,246,.58) 1px, transparent 1px);
  background-size: 12px 12px;
}

.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(400px, 1fr);
  gap: 58px;
  align-items: center;
}

.services-copy h1 {
  margin: 12px 0 18px;
  max-width: 650px;
  color: #07152e;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 900;
}

.services-copy h1 span {
  display: block;
  color: #1557df;
}

.services-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.services-points,
.services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-points {
  margin: 24px 0;
}

.services-points span {
  padding: 9px 13px;
  border: 1px solid rgba(20,100,246,.16);
  border-radius: 999px;
  color: #264465;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
}

.services-stats-card {
  padding: 34px;
  border: 1px solid rgba(191,208,235,.92);
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 24px 70px rgba(28,67,130,.13);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat-row article {
  min-height: 104px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-stat-row article:last-child {
  border-right: 0;
}

.hero-stat-row b {
  display: block;
  color: #10264b;
  font-size: 30px;
}

.hero-stat-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.platform-mini {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.platform-mini > span {
  display: block;
  margin-bottom: 18px;
  color: #334761;
  font-weight: 900;
}

.platform-mini div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.platform-mini b {
  color: #1557df;
  font-size: 15px;
}

.services-section {
  padding: 64px 0;
  background: #fff;
}

.services-title {
  width: min(780px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.services-title h2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
  color: #10264b;
  font-size: clamp(30px, 3vw, 42px);
}

.services-title > span {
  display: inline-block;
  width: 18px;
  height: 3px;
  margin: 0 12px 10px;
  border-radius: 999px;
  background: #1557df;
}

.services-title p {
  color: var(--muted);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.category-tabs button {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #43546a;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.category-tabs button.active,
.category-tabs button:hover {
  color: #fff;
  background: #1557df;
  border-color: #1557df;
}

.services-grid-pro {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pro-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 338px;
  padding: 26px;
  border: 1px solid rgba(191,208,235,.92);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 52px rgba(28,67,130,.1);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.pro-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,100,246,.28);
  box-shadow: 0 26px 70px rgba(28,67,130,.16);
}

.pro-service-card > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--accent, #1557df);
  background: var(--accent-soft, #edf4ff);
  font-weight: 900;
}

.pro-service-card h3 {
  margin-bottom: 10px;
  color: #10264b;
  font-size: 21px;
}

.pro-service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.pro-service-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 20px;
  padding-left: 18px;
  color: #34465f;
  line-height: 1.45;
  font-size: 14px;
}

.pro-service-card li::marker {
  color: var(--accent, #1557df);
}

.pro-service-card a {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #1557df;
  font-weight: 900;
}

.pro-service-card.blue { --accent: #1557df; --accent-soft: #edf4ff; }
.pro-service-card.green { --accent: #11a963; --accent-soft: #eafaf1; }
.pro-service-card.purple { --accent: #7a45f5; --accent-soft: #f2edff; }
.pro-service-card.orange { --accent: #f59a23; --accent-soft: #fff4e5; }
.pro-service-card.pink { --accent: #f03c7b; --accent-soft: #fff0f6; }
.pro-service-card.cyan { --accent: #10a9c7; --accent-soft: #e9fbff; }
.pro-service-card.amber { --accent: #e98716; --accent-soft: #fff5e8; }
.pro-service-card.sky { --accent: #2379ff; --accent-soft: #ecf4ff; }
.pro-service-card.whatsapp { --accent: #20b765; --accent-soft: #e9fbf1; }
.pro-service-card.violet { --accent: #8b5cf6; --accent-soft: #f3efff; }
.pro-service-card.rose { --accent: #f2416b; --accent-soft: #fff0f3; }
.pro-service-card.indigo { --accent: #2563eb; --accent-soft: #eef4ff; }

.service-trust-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(191,208,235,.92);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-soft);
}

.service-trust-bar span {
  padding: 12px;
  color: #213a5b;
  text-align: center;
  font-weight: 900;
}

.process-area {
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.process-flow article {
  position: relative;
  min-height: 156px;
  padding: 24px 18px;
  border: 1px solid rgba(191,208,235,.92);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.process-flow article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1557df;
  font-weight: 900;
}

.process-flow b {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #1557df;
  background: #edf4ff;
}

.process-flow h3 {
  margin-bottom: 8px;
}

.process-flow p {
  margin: 0;
  color: var(--muted);
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 240px minmax(220px, .55fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 52% 34%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, #0759ff, #062b7f 68%, #021d58);
  box-shadow: 0 28px 72px rgba(20,100,246,.24);
}

.services-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.services-cta p {
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

.services-cta .btn {
  margin: 6px 10px 0 0;
}

.rocket-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  border-left: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.2);
}

.rocket-card::before {
  content: "";
  width: 76px;
  height: 120px;
  border-radius: 60% 60% 44% 44%;
  background: linear-gradient(135deg, #fff, #a9d4ff 55%, #1557df);
  transform: rotate(32deg);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}

.rocket-card span,
.rocket-card b {
  position: absolute;
  font-weight: 900;
}

.rocket-card span {
  top: 12px;
  color: rgba(255,255,255,.68);
}

.rocket-card b {
  bottom: 8px;
  color: #fff;
}

.services-cta ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.9);
  font-weight: 800;
}

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

  .process-flow,
  .service-trust-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .services-hero-grid,
  .services-cta {
    grid-template-columns: 1fr;
  }

  .hero-stat-row,
  .services-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rocket-card {
    border: 0;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 42px 0 46px;
  }

  .services-copy h1 {
    font-size: 38px;
  }

  .hero-stat-row,
  .services-grid-pro,
  .process-flow,
  .service-trust-bar {
    grid-template-columns: 1fr;
  }

  .hero-stat-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stat-row article:last-child {
    border-bottom: 0;
  }

  .process-flow article:not(:last-child)::after {
    display: none;
  }

  .services-cta {
    padding: 26px 20px;
  }
}
