:root {
  --primary: #0891b2;
  --primary-hover: #0e7490;
  --secondary: #ef4444;
  --secondary-hover: #dc2626;
  --dark: #111827;
  --dark-blue: #03111a;
  --light-gray: #f8fafc;
  --gray: #6b7280;
  --border-color: #f0f0f0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

/* NAVBAR */
nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.logo {
  display: flex;
  align-items: center;
  /* gap: 12px; */
}

.logo img {
  width: 65px;
  /* height: 50px; */
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-top: 6px;
}

.logo h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo h2 span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.download-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
  color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 2px solid var(--primary);
  border-radius: 40px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.5px;
  background: rgba(8, 145, 178, 0.03);
}

.hero h1 {
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.primary-btn {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.25);
}

.primary-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.35);
  color: #fff;
}

.secondary-btn {
  border: 2px solid #e5e7eb;
  color: var(--dark);
  background: #ffffff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
  border-color: var(--dark);
  background: var(--light-gray);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #374151;
}

.hero-feature svg {
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: translateY(-5px) scale(1.01);
}

/* SECTION GENERAL */
section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: -1px;
}

.section-title h2 strong {
  color: var(--primary);
  font-weight: 800;
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 40px 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Color variations for feature icons */
.bg-cyan {
  background-color: #ecfeff;
  color: #0891b2;
}

.bg-green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.bg-blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.bg-orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.bg-indigo {
  background-color: #eef2ff;
  color: #4f46e5;
}

.bg-emerald {
  background-color: #ecfdf5;
  color: #059669;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

/* STATS */
.stats-container {
  background: linear-gradient(135deg, #012b39, #021a24);
  border-radius: 32px;
  padding: 60px 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 10px 20px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  margin-bottom: 16px;
  display: inline-flex;
  color: var(--primary);
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff, #9ce8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
}

/* SVG Connecting Dotted Lines */
.step-connector-1,
.step-connector-2 {
  position: absolute;
  top: 75px;
  width: calc(33% - 80px);
  height: 30px;
  z-index: 0;
  pointer-events: none;
}

.step-connector-1 {
  left: calc(25% + 40px);
}

.step-connector-2 {
  left: calc(58% + 40px);
}

.step-card {
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 28px;
  border: 1px solid #f1f5f9;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8, 145, 178, 0.15);
}

.step-number-wrapper {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
  position: relative;
  z-index: 2;
}

.step-number-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed rgba(8, 145, 178, 0.4);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 1;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.step-illustration {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

/* BRANDS */
.brands-wrapper {
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.brand-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 10px;
}

.brand-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* High quality styled typography for brand mockups */
.brand-logo-text {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  user-select: none;
}

.brand-ss {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
}

.brand-ss-badge {
  width: 32px;
  height: 32px;
  background: #ef4444;
  border-radius: 50%;
  border: 3px double #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 12px;
}

.brand-text-ton {
  color: #000000;
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
}

.brand-text-mrf {
  color: #d6001c;
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1px;
}

.brand-text-dsc {
  color: #0f172a;
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
}

.brand-text-bdm {
  color: #b91c1c;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  font-size: 28px;
  border: 2px solid #b91c1c;
  padding: 2px 6px;
  border-radius: 4px;
}

.brand-text-spartan {
  color: #000000;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 28px;
  text-transform: uppercase;
}

.view-all-brands-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.view-all-brands-link:hover {
  color: var(--primary-hover);
  gap: 12px;
}

/* CTA */
.cta-container {
  background: #f0fdff;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e0f2fe;
}

.cta-content-wrapper {
  display: flex;
  align-items: center;
  gap: 36px;
}

.cta-app-icon {
  background: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
}

.cta-app-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
  letter-spacing: -1px;
}

.cta p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 17px;
  max-width: 500px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.store-btn {
  background: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 180px;
}

.store-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-text span:first-child {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.2;
}

.store-btn-text span:last-child {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

/* FOOTER */
footer {
  background: var(--dark-blue);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.footer-logo h2 {
  color: var(--secondary);
  font-weight: 800;
  font-size: 26px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-links h4 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  color: #fff;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links a {
  display: block;
  color: #94a3b8;
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.footer-store-buttons .store-btn {
  width: 170px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-store-buttons .store-btn:hover {
  background: var(--primary);
  border-color: transparent;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 52px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

  .cta-container {
    padding: 40px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .step-connector-1,
  .step-connector-2 {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .tag {
    margin: 0 auto 24px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .store-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 83px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    gap: 16px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* Burger icon animations */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .download-btn {
    display: none;
  }

  .nav-links .download-btn-mobile {
    display: flex !important;
    margin-top: 10px;
    justify-content: center;
  }

  .section-title h2 {
    font-size: 32px;
  }

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

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

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

  .stat-item::after {
    display: none !important;
  }

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

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

  .hero h1 {
    font-size: 40px;
  }
}