:root {
  --bg: #071126;
  --bg-soft: #0d1833;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: #ffffff;
  --card: #ffffff;
  --primary: #4f7cff;
  --primary-dark: #2d5ff5;
  --secondary: #7b61ff;
  --accent: #11d4b1;
  --accent-soft: #d9fff7;
  --warning: #ffd34d;
  --text: #101828;
  --text-light: #f8fbff;
  --muted: #667085;
  --muted-light: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.14);
  --border-soft: #e8ecf7;
  --shadow: 0 20px 60px rgba(10, 26, 74, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(88, 127, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(17, 212, 177, 0.12), transparent 26%),
    linear-gradient(180deg, #091224 0%, #0b1730 22%, #f5f8ff 22%, #f7f9ff 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.bg-blur-one {
  width: 220px;
  height: 220px;
  background: rgba(79, 124, 255, 0.32);
  top: 60px;
  left: -40px;
}

.bg-blur-two {
  width: 260px;
  height: 260px;
  background: rgba(17, 212, 177, 0.24);
  top: 120px;
  right: -60px;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 22px 0 54px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  margin-top: 12px;
  border-radius: 999px;
  color: #0e1d42;
  background: linear-gradient(135deg, #ffffff, #edf3ff);
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #dfe8ff;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero-content h1 {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -1.2px;
}

.hero-content h1 span {
  color: #ffd34d;
  text-shadow: 0 0 24px rgba(255, 211, 77, 0.24);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 60ch;
  color: var(--muted-light);
  font-size: 1.06rem;
}

.qr-download-wrap {
  width: 400px;
  max-width: 100%;
  margin-top: 20px;
}

.download-btn {
  display: flex;
  width: fit-content;
  margin: 0 auto 14px;
}

.left-qr-card {
  width: 100%;
  margin: 0;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(30, 52, 112, 0.12);
  border: 1px solid #dfe7f5;
}

@media (max-width: 768px) {
  .left-qr-card {
    display: none;
  }
}

.left-qr-head h3 {
  margin: 0;
  color: #0f1f45;
  font-size: 1.2rem;
  text-align: center;
}

.left-qr-link {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.left-qr-image {
  width: 230px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid #e6ecf8;
  box-shadow: 0 10px 24px rgba(21, 35, 79, 0.08);
}

.left-qr-image:hover {
  transform: scale(1.03);
}

.left-qr-note {
  margin: 14px 0 0;
  text-align: center;
  color: #667085;
  font-size: 0.92rem;
}

.hero-offer-card {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.10)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.offer-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 77, 0.22);
  color: #ffd34d;
  border: 1px solid rgba(255, 211, 77, 0.45);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.hero-offer-card ul {
  margin: 0;
  padding-left: 18px;
  color: #0f1f45;
}

.hero-offer-card li {
  margin-bottom: 10px;
  color: #0f1f45;
  font-weight: 600;
}

.ott-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ott-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f1f45;
  border: 1px solid rgba(15, 31, 69, 0.12);
  font-size: 0.87rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 26px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-primary {
  background: linear-gradient(135deg, #ffd34d, #ffbf1a);
  color: #1f1a00;
  box-shadow: 0 18px 40px rgba(255, 191, 26, 0.28);
}

.cta-secondary {
  background: #ffffff;
  color: #0f1f45;
  box-shadow: 0 16px 40px rgba(7, 17, 38, 0.15);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.store-icon {
  height: 54px;
  width: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.store-icon:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 440px;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  box-shadow: 0 30px 70px rgba(3, 14, 39, 0.34);
  position: relative;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.6), rgba(17, 212, 177, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0e1d42;
}

.phone-brand span {
  font-size: 1.35rem;
}

.operator-showcase {
  margin-top: 0;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9fbff, #eef4ff);
  border: 1px solid #dfe8fa;
  box-shadow: 0 16px 32px rgba(20, 47, 109, 0.08);
}

.operator-group + .operator-group {
  margin-top: 18px;
}

.operator-group-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: #516684;
  letter-spacing: 0.1px;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.operator-card {
  min-height: 84px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border: 1px solid #dde6f6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(20, 47, 109, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.operator-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(20, 47, 109, 0.12);
  border-color: #bfd1f3;
}

.operator-logo {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.operator-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.operator-stat-card {
  padding: 14px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border: 1px solid #dde6f6;
  box-shadow: 0 10px 22px rgba(20, 47, 109, 0.06);
  text-align: center;
}

.operator-stat-card strong {
  display: block;
  color: #0f1f45;
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.operator-stat-card span {
  display: block;
  color: #5b6b88;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.qr-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: 36px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f0f5ff, #f8faff);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #2f56ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #0f1f45;
  line-height: 1.15;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.trust-strip-wrap {
  position: relative;
  z-index: 1;
  margin-top: -14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid #e6ebf7;
}

.trust-strip div {
  text-align: center;
  font-weight: 700;
  color: #18305d;
}

.ott-showcase-section {
  padding-top: 26px;
}

.ott-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
  border: 1px solid #dbe6fb;
  box-shadow: 0 20px 40px rgba(16, 37, 77, 0.08);
}

.ott-card {
  position: relative;
  min-height: 128px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border: 1px solid #dfe8f8;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(20, 47, 109, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ott-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(20, 47, 109, 0.12);
}

.ott-card-featured {
  border: 1px solid rgba(255, 166, 0, 0.45);
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  box-shadow: 0 14px 34px rgba(255, 166, 0, 0.12);
}

.ott-logo {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .ott-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ott-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
    gap: 14px;
  }

  .ott-card {
    min-height: 110px;
    padding: 14px;
    border-radius: 18px;
  }

  .ott-logo {
    max-height: 58px;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e8edf8;
  box-shadow: 0 18px 36px rgba(20, 47, 109, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(20, 47, 109, 0.1);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #edf2ff, #e0fff8);
  font-size: 1.4rem;
}

.info-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #10254d;
}

.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e6ebf7;
  box-shadow: 0 18px 36px rgba(16, 37, 77, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f56ff, #7b61ff);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.step-card h3 {
  margin: 0;
  color: #10254d;
  font-size: 1.1rem;
}

.step-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.download-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2151ff, #0fb89f);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(33, 81, 255, 0.24);
}

.download-banner h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.download-banner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-section {
  padding-bottom: 54px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid #e7edf8;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(16, 37, 77, 0.04);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #10254d;
  position: relative;
  padding-right: 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: #2f56ff;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 20px 0 34px;
}

.footer-top{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:40px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #60708d;
  font-size: 0.95rem;
}

.footer-wrap a {
  color: #2f56ff;
  font-weight: 700;
}

.footer .hero-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.footer .store-buttons {
  justify-content: center;
}

.footer-social{
display:flex;
align-items:center;
gap:18px;
}

.follow-text{
font-size:18px;
color:#5f6f86;
font-weight:500;
}

.social-icons{
display:flex;
align-items:center;
gap:5px;
}

.social-icon{
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

}

.social-icon:hover{
transform:scale(1.1);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(88, 127, 255, 0.18), transparent 35%),
      linear-gradient(180deg, #091224 0%, #0b1730 26%, #f5f8ff 26%, #f7f9ff 100%);
  }

  .hero {
    padding-top: 16px;
    padding-bottom: 34px;
  }

  .topbar {
    padding-bottom: 18px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-offer-card {
    padding: 18px;
  }

  .phone-card {
    max-width: 100%;
  }

  .trust-strip,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .download-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .store-icon {
    height: 40px;

  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .qr-download-wrap {
    width: 100%;
    max-width: 340px;
  }

  .left-qr-image {
    width: 200px;
  }

  .operator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-card {
    min-height: 76px;
    border-radius: 18px;
  }

  .operator-logo {
    max-height: 36px;
  }
}

.back-to-top{
position:fixed;
bottom:30px;
right:30px;
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:bold;
text-decoration:none;
color:#000;
background:linear-gradient(135deg,#ffd34d,#ffbf1a);
box-shadow:0 8px 20px rgba(0,0,0,0.25);
transition:transform .2s ease, box-shadow .2s ease;
z-index:1000;
}

.back-to-top:hover{
transform:translateY(-3px);
box-shadow:0 12px 26px rgba(0,0,0,0.35);
}