* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6f3dff;
  --primary-dark: #4c1dcb;
  --secondary: #00c2ff;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.14);
  --card-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 194, 255, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(111, 61, 255, 0.3), transparent 35%),
    linear-gradient(135deg, #081220 0%, #14213d 45%, #3a0ca3 100%);
  overflow: hidden;
}


.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 8px;
}

.infoLogo {
  height: 54px;
  width: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0 70px;
  min-height: calc(100vh - 90px);
}

.hero-content {
  color: var(--white);
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.sliderheadingText {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.sliderheadingText span {
  color: #8be9ff;
}

.slidepText {
  font-size: 18px;
  line-height: 1.8;
  color: #dbeafe;
  max-width: 640px;
  margin-bottom: 28px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.disabled-store {
  opacity: 0.7;
  cursor: default;
}

.logoApp {
  height: 54px;
  width: auto;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.mini-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 500;
}

.mini-point i {
  color: #7df9ff;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
}

.icon-box {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00c2ff, #6f3dff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(111, 61, 255, 0.24);
}

.icon-box i {
  color: var(--white);
  font-size: 22px;
}

.feature-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #dbeafe;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.phone-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 233, 255, 0.45) 0%, rgba(111, 61, 255, 0.18) 45%, transparent 72%);
  filter: blur(25px);
  z-index: 0;
}

.appMob {
  position: relative;
  z-index: 2;
  max-height: 620px;
  width: auto;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.28));
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.footer-section {
  background: #07101d;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-inner p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
}

.footer-inner a {
  color: #fbbf24;
  font-weight: 600;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 1;
}

.bg-shape-1 {
  width: 240px;
  height: 240px;
  top: 60px;
  left: -60px;
  background: #00c2ff;
}

.bg-shape-2 {
  width: 280px;
  height: 280px;
  bottom: 90px;
  right: -80px;
  background: #7c3aed;
}

.bg-shape-3 {
  width: 180px;
  height: 180px;
  bottom: 200px;
  left: 45%;
  background: #38bdf8;
}

@media (max-width: 1199px) {
  .sliderheadingText {
    font-size: 50px;
  }

  .hero-grid {
    gap: 24px;
  }

  .appMob {
    max-height: 540px;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image-wrap {
    order: 1;
    min-height: auto;
    margin-bottom: 10px;
  }

  .slidepText {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group,
  .mini-points {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .infoLogo {
    height: 48px;
  }

  .appMob {
    max-height: 460px;
  }
}

@media (max-width: 767px) {
  .topbar {
    padding-top: 20px;
  }

  .sliderheadingText {
    font-size: 38px;
    line-height: 1.15;
  }

  .slidepText {
    font-size: 16px;
    line-height: 1.75;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 18px;
    border-radius: 20px;
  }

  .logoApp {
    height: 50px;
  }

  .appMob {
    max-height: 360px;
  }

  .phone-glow {
    width: 280px;
    height: 280px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .sliderheadingText {
    font-size: 32px;
  }

  .tagline-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .mini-points {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .logoApp {
    height: 48px;
    margin: 0 auto;
  }

  .appMob {
    max-height: 300px;
  }
}