/* =============================================
   ZirveGo — Global Styles
   ============================================= */

:root {
  --primary: #5b5ef4;
  --primary-light: #818cf8;
  --primary-dark: #4338ca;
  --accent: #06b6d4;
  --accent-2: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;

  /* Light theme */
  --dark:   #ffffff;
  --dark-2: #f8f9fe;
  --dark-3: #eef0fb;
  --dark-4: #e4e7f8;
  --card:   #ffffff;
  --card-border: rgba(99, 102, 241, 0.15);

  --text-primary:   #0f0f2d;
  --text-secondary: #4a4a72;
  --text-muted:     #9393b5;

  --gradient-1: linear-gradient(135deg, #5b5ef4 0%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #5b5ef4 100%);
  --gradient-hero:
    radial-gradient(ellipse at 70% -20%, rgba(91,94,244,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 5%  90%,  rgba(6,182,212,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #f0f1ff 0%, #ffffff 50%, #f5f6ff 100%);

  --shadow-glow: 0 0 50px rgba(91, 94, 244, 0.15);
  --shadow-card: 0 4px 24px rgba(91, 94, 244, 0.08);
  --shadow-hover: 0 12px 40px rgba(91, 94, 244, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --topbar-bg: #0950a4;
  --topbar-border: rgba(9, 80, 164, 0.35);
  --topbar-text: rgba(255, 255, 255, 0.92);
  --topbar-link: #ffffff;
  --topbar-highlight-bg: rgba(255, 255, 255, 0.14);
  --topbar-highlight-border: rgba(255, 255, 255, 0.28);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   Typography
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   Layout
   ============================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* =============================================
   Fixed Header Wrapper
   ============================================= */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* =============================================
   Navbar
   ============================================= */

.navbar {
  position: relative;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  padding: 12px 0;
}

.fixed-header.scrolled-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.logo-img-footer {
  height: 36px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 34px;
  }

  .logo-img-footer {
    height: 32px;
  }
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  color: #4a4a72;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar-links a:hover {
  color: var(--primary);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(91, 94, 244, 0.35);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(91, 94, 244, 0.06);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 12px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   Hero
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 124px; /* topbar + navbar */
}

/* Animated map background */
.hero-map-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.map-svg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 115%;
  height: 110%;
  opacity: 0.88;
}

.hero-map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #f8f9fe 0%,
      #f8f9fe 28%,
      rgba(248,249,254,0.82) 42%,
      rgba(248,249,254,0.25) 58%,
      rgba(248,249,254,0) 75%
    ),
    linear-gradient(to bottom,
      rgba(248,249,254,0.85) 0%,
      rgba(248,249,254,0) 14%,
      rgba(248,249,254,0) 82%,
      rgba(248,249,254,0.9) 100%
    );
  pointer-events: none;
}

.hero-orb-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,94,244,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin-left: -80px;
}

/* Mobile hero showcase — tablet & phone */
.hero-mobile-showcase {
  display: none;
  margin-top: 36px;
}

.hero-mobile-nfc-card {
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f3f5ff 100%);
  border: 1.5px solid rgba(91, 94, 244, 0.22);
  box-shadow: 0 16px 40px rgba(91, 94, 244, 0.14);
}

.hero-mobile-nfc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-mobile-nfc-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b5ef4, #06b6d4);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.hero-mobile-nfc-new {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(91, 94, 244, 0.12);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 800;
}

.hero-mobile-nfc-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.hero-mobile-nfc-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-mobile-nfc-visual {
  position: relative;
  height: 148px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 94, 244, 0.08), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(91, 94, 244, 0.12);
  overflow: hidden;
}

.hero-mobile-nfc-phone {
  position: absolute;
  left: 16px;
  bottom: 14px;
  width: 96px;
  padding: 7px 6px 8px;
  background: #111827;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(15, 15, 45, 0.22);
  z-index: 2;
}

.hero-mobile-nfc-phone-screen {
  min-height: 108px;
  border-radius: 12px;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 55%, #1e3a5f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  text-align: center;
}

.hero-mobile-nfc-amount {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
}

.hero-mobile-nfc-rings {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mobile-nfc-rings span {
  position: absolute;
  border: 1.5px solid rgba(6, 182, 212, 0.55);
  border-radius: 50%;
  animation: nfc-pulse 2.4s ease-out infinite;
}

.hero-mobile-nfc-rings span:first-child {
  width: 28px;
  height: 28px;
}

.hero-mobile-nfc-rings span:last-child {
  width: 40px;
  height: 40px;
  animation-delay: 0.8s;
}

.hero-mobile-nfc-rings::after {
  content: '📲';
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.hero-mobile-nfc-hint {
  font-size: 7px;
  font-weight: 700;
  color: rgba(129, 140, 248, 0.95);
  letter-spacing: 0.2px;
}

.hero-mobile-nfc-paycard {
  position: absolute;
  right: 14px;
  top: 22px;
  width: 132px;
  height: 82px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5b5ef4 0%, #4338ca 50%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(67, 56, 202, 0.3);
  animation: hero-nfc-card-tap 3.2s ease-in-out infinite;
}

.hero-mobile-nfc-chip {
  display: block;
  width: 22px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  margin-bottom: 12px;
}

.hero-mobile-nfc-wave {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  font-weight: 800;
  transform: rotate(90deg);
  opacity: 0.9;
}

.hero-mobile-nfc-cardno {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-mobile-nfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-mobile-nfc-tags span {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(91, 94, 244, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(91, 94, 244, 0.14);
}

.hero-mobile-chips {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.hero-mobile-chips::-webkit-scrollbar {
  display: none;
}

.hero-mobile-chip {
  flex: 0 0 calc(50% - 5px);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(91, 94, 244, 0.12);
  box-shadow: 0 6px 18px rgba(91, 94, 244, 0.08);
}

.hero-mobile-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(91, 94, 244, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-mobile-chip-icon.live {
  background: rgba(16, 185, 129, 0.14);
  position: relative;
}

.hero-mobile-chip-icon.live::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  animation: hero-pulse-ring 2s ease infinite;
}

.hero-mobile-chip strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-mobile-chip span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-mobile-preview {
  display: block;
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(91, 94, 244, 0.14);
  box-shadow: 0 10px 28px rgba(91, 94, 244, 0.1);
}

.hero-mobile-preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f3f4f8;
  border-bottom: 1px solid rgba(91, 94, 244, 0.1);
}

.hero-mobile-preview-bar > span:not(.hero-mobile-preview-url) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-mobile-preview-bar > span:nth-child(1) { background: #ff5f57; }
.hero-mobile-preview-bar > span:nth-child(2) { background: #febc2e; }
.hero-mobile-preview-bar > span:nth-child(3) { background: #28c840; }

.hero-mobile-preview-url {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mobile-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
  max-height: 160px;
}

.hero-mobile-preview-cta {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(91, 94, 244, 0.06);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 94, 244, 0.08);
  border: 1px solid rgba(91, 94, 244, 0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.hero-play-btn:hover {
  color: var(--text-primary);
}

.play-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.hero-play-btn:hover .play-icon {
  background: rgba(79, 70, 229, 0.2);
  border-color: var(--primary-light);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 54%;
  max-width: 660px;
  padding: 0 24px;
  z-index: 2;
}

.hero-showcase {
  position: relative;
  animation: hero-float 7s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-showcase-glow {
  position: absolute;
  inset: 10% 5% 5% 10%;
  background: radial-gradient(circle at 50% 50%, rgba(91, 94, 244, 0.22) 0%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero-showcase-glow-nfc {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 55%;
  height: 65%;
  background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.28) 0%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

.hero-showcase-browser {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(91, 94, 244, 0.16);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(91, 94, 244, 0.2),
    0 10px 30px rgba(15, 15, 45, 0.08);
  transform: scale(0.96) translateY(8px);
  opacity: 0.92;
}

.hero-showcase-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f3f4f8;
  border-bottom: 1px solid rgba(91, 94, 244, 0.1);
}

.hero-showcase-dots {
  display: flex;
  gap: 6px;
}

.hero-showcase-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-showcase-dots span:nth-child(1) { background: #ff5f57; }
.hero-showcase-dots span:nth-child(2) { background: #febc2e; }
.hero-showcase-dots span:nth-child(3) { background: #28c840; }

.hero-showcase-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-showcase-lock {
  font-size: 10px;
}

.hero-showcase-screen {
  background: #eef0fb;
  line-height: 0;
}

.hero-showcase-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* Hero NFC spotlight */
.hero-nfc-spotlight {
  position: absolute;
  right: -8px;
  bottom: -36px;
  z-index: 5;
  width: 290px;
  padding: 16px 16px 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f6ff 100%);
  border: 1.5px solid rgba(91, 94, 244, 0.22);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(91, 94, 244, 0.22),
    0 8px 24px rgba(6, 182, 212, 0.12);
  animation: hero-nfc-float 6s ease-in-out infinite;
}

@keyframes hero-nfc-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

.hero-nfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b5ef4, #06b6d4);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.hero-nfc-scene {
  position: relative;
  height: 168px;
  margin-bottom: 12px;
}

.hero-nfc-phone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 118px;
  background: #111827;
  border-radius: 22px;
  padding: 8px 7px 10px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 36px rgba(15, 15, 45, 0.25);
  z-index: 2;
}

.hero-nfc-phone-notch {
  width: 40px;
  height: 5px;
  background: #374151;
  border-radius: 999px;
  margin: 0 auto 7px;
}

.hero-nfc-phone-screen {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 55%, #1e3a5f 100%);
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nfc-pay-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  text-align: center;
  width: 100%;
}

.hero-nfc-pay-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-nfc-pay-amount {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.hero-nfc-pay-wait {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0;
}

.hero-nfc-pay-ring {
  position: absolute;
  border: 1.5px solid rgba(6, 182, 212, 0.55);
  border-radius: 50%;
  animation: nfc-pulse 2.4s ease-out infinite;
  width: 40px;
  height: 40px;
}

.hero-nfc-pay-ring-2 {
  width: 52px;
  height: 52px;
  animation-delay: 0.8s;
}

.hero-nfc-pay-icon {
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.hero-nfc-pay-hint {
  font-size: 7px;
  font-weight: 600;
  color: rgba(129, 140, 248, 0.95);
}

.hero-nfc-card {
  position: absolute;
  right: 4px;
  top: 18px;
  width: 148px;
  height: 92px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b5ef4 0%, #4338ca 45%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(67, 56, 202, 0.35);
  z-index: 3;
  animation: hero-nfc-card-tap 3.2s ease-in-out infinite;
}

@keyframes hero-nfc-card-tap {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  45%, 55% { transform: translate(-22px, 18px) rotate(-2deg); }
}

.hero-nfc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.hero-nfc-card-chip {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.hero-nfc-card-wave {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -2px;
  opacity: 0.92;
  transform: rotate(90deg);
  display: inline-block;
}

.hero-nfc-card-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  opacity: 0.95;
}

.hero-nfc-card-name {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
  opacity: 0.8;
}

.hero-nfc-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.hero-nfc-caption strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.hero-nfc-caption span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-nfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-nfc-tags span {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(91, 94, 244, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(91, 94, 244, 0.16);
}

.hero-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(91, 94, 244, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(91, 94, 244, 0.14);
  backdrop-filter: blur(8px);
  animation: hero-card-float 5s ease-in-out infinite;
}

.hero-float-card-nfc {
  top: -18px;
  left: -28px;
  animation-delay: 0s;
  border-color: rgba(91, 94, 244, 0.28);
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(240,241,255,0.98) 100%);
  box-shadow: 0 14px 36px rgba(91, 94, 244, 0.2);
  padding-right: 42px;
}

.hero-float-card-1 {
  top: 38%;
  left: -36px;
  animation-delay: 0.8s;
}

.hero-float-card-2 {
  bottom: 108px;
  right: 108px;
  animation-delay: 1.6s;
}

@keyframes hero-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-float-icon.green {
  background: rgba(16, 185, 129, 0.14);
}

.hero-float-icon.indigo {
  background: rgba(91, 94, 244, 0.14);
}

.hero-float-icon.nfc {
  background: linear-gradient(135deg, rgba(91, 94, 244, 0.18), rgba(6, 182, 212, 0.18));
}

.hero-float-badge {
  position: absolute;
  top: -7px;
  right: -6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b5ef4, #06b6d4);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.hero-float-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: hero-pulse-ring 2s ease infinite;
  flex-shrink: 0;
}

@keyframes hero-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-float-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.hero-float-text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* =============================================
   Section Header
   ============================================= */

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   Mobile App Showcase
   ============================================= */

.mobile-app-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(91, 94, 244, 0.06) 0%, transparent 55%),
    var(--dark);
  overflow: hidden;
}

.mobile-app-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  overflow-x: auto;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-app-grid::-webkit-scrollbar {
  display: none;
}

.phone-mockup {
  flex: 0 0 220px;
  scroll-snap-align: center;
  text-align: center;
}

.phone-frame {
  position: relative;
  background: #111127;
  border-radius: 32px;
  padding: 10px 8px 12px;
  box-shadow:
    0 24px 60px rgba(91, 94, 244, 0.18),
    0 0 0 1px rgba(91, 94, 244, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.phone-mockup:hover .phone-frame {
  transform: translateY(-8px);
  box-shadow:
    0 32px 70px rgba(91, 94, 244, 0.24),
    0 0 0 1px rgba(91, 94, 244, 0.2);
}

.phone-notch {
  width: 72px;
  height: 18px;
  background: #111127;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}

.phone-caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-caption strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-caption span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.mobile-app-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.mobile-app-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-card);
}

.mobile-app-highlight span {
  font-size: 15px;
}

@media (min-width: 1200px) {
  .mobile-app-grid {
    overflow-x: visible;
    flex-wrap: nowrap;
  }

  .phone-mockup {
    flex: 1 1 0;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .phone-mockup {
    flex: 0 0 200px;
  }
}

/* =============================================
   Value Propositions Band
   ============================================= */

.value-props-band {
  padding: 56px 0;
  background: var(--dark);
  border-top: 1px solid rgba(91, 94, 244, 0.08);
  border-bottom: 1px solid rgba(91, 94, 244, 0.08);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-prop-card {
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.value-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(91, 94, 244, 0.22);
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.value-prop-icon.indigo { background: rgba(91, 94, 244, 0.12); }
.value-prop-icon.cyan   { background: rgba(6, 182, 212, 0.12); }
.value-prop-icon.purple { background: rgba(139, 92, 246, 0.12); }
.value-prop-icon.green  { background: rgba(16, 185, 129, 0.12); }

.value-prop-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.value-prop-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1100px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .value-props-band {
    padding: 40px 0;
  }

  .value-props-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Platform Preview
   ============================================= */

.platform-preview-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91,94,244,0.07) 0%, transparent 60%),
    var(--dark-2);
  overflow: hidden;
}

.platform-subsection {
  margin-top: 56px;
}

.platform-subsection-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.platform-subsection-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin: 8px 0 10px;
}

.platform-subsection-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.panel-menu-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(91, 94, 244, 0.1);
}

.panel-menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.panel-menu-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.panel-menu-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.panel-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.panel-menu-card {
  text-align: center;
}

.panel-menu-frame {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(91, 94, 244, 0.14);
  box-shadow: 0 12px 40px rgba(91, 94, 244, 0.1);
  overflow: hidden;
  max-height: 520px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.preview-zoomable {
  position: relative;
  cursor: zoom-in;
}

.preview-zoom-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 12px 12px;
  background: linear-gradient(to top, rgba(15, 15, 45, 0.82), transparent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.preview-zoomable:hover .preview-zoom-hint {
  opacity: 1;
}

.phone-screen.preview-zoomable .preview-zoom-hint {
  border-radius: 0 0 24px 24px;
  font-size: 10.5px;
  padding: 22px 8px 10px;
}

.browser-screen.preview-zoomable .preview-zoom-hint {
  font-size: 13px;
  padding: 32px 16px 14px;
}

/* Image Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(8, 8, 24, 0.94);
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 64px 20px 32px;
}

.image-lightbox.active {
  display: block;
}

.image-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 11001;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.image-lightbox-content {
  width: fit-content;
  max-width: 96vw;
  margin: 0 auto;
}

.image-lightbox-content img {
  display: block;
  width: auto;
  max-width: 96vw;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* Login choice modal */
.login-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-overlay.active {
  display: flex;
}

.login-modal {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.login-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.login-modal-close:hover {
  color: var(--text-primary);
}

.login-modal h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.35;
  padding-right: 28px;
}

.login-modal > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.login-options {
  display: grid;
  gap: 12px;
}

.login-option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--dark-3);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.login-option-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 94, 244, 0.15);
}

.login-option-icon {
  grid-row: 1 / span 2;
  font-size: 28px;
  line-height: 1;
}

.login-option-card strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.login-option-card span:last-child {
  grid-column: 2;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.panel-menu-card:hover .panel-menu-frame {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(91, 94, 244, 0.16);
}

.panel-menu-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}

.panel-menu-caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.panel-menu-caption strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.panel-menu-caption span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .panel-menu-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .panel-menu-frame {
    max-height: 480px;
  }
}

.browser-mockup {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(91, 94, 244, 0.18),
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(91, 94, 244, 0.12);
  position: relative;
  max-width: 1100px;
  margin: 0 auto 32px;
  transform: perspective(1200px) rotateX(2deg);
  transition: transform 0.4s ease;
}

.browser-mockup:hover {
  transform: perspective(1200px) rotateX(0deg);
  box-shadow:
    0 50px 120px rgba(91, 94, 244, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(91, 94, 244, 0.18);
}

.browser-bar {
  background: #f0f2ff;
  border-bottom: 1px solid rgba(91, 94, 244, 0.12);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.browser-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.browser-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: block;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.browser-address {
  flex: 1;
  background: white;
  border: 1px solid rgba(91, 94, 244, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: #4a4a72;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 380px;
  margin: 0 auto;
}

.browser-lock { font-size: 12px; }

.browser-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.browser-screen {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: #f8f9fe;
}

.browser-screen img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

/* Floating badges */
.preview-badge {
  position: absolute;
  background: white;
  border: 1px solid rgba(91, 94, 244, 0.2);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #0f0f2d;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(91, 94, 244, 0.15);
  animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.preview-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.preview-badge-dot.green {
  background: #10b981;
  box-shadow: 0 0 6px rgba(16,185,129,0.7);
  animation: pulse-dot 1.5s ease infinite;
}

.preview-badge-1 {
  top: 16px;
  right: 20px;
  color: #059669;
  border-color: rgba(16,185,129,0.3);
  animation-delay: 0s;
}

.preview-badge-2 {
  top: 16px;
  left: 20px;
  color: #5b5ef4;
  animation-delay: 1.3s;
}

.preview-badge-3 {
  bottom: 20px;
  right: 20px;
  color: #d97706;
  border-color: rgba(245,158,11,0.3);
  animation-delay: 2.6s;
}

/* Feature pills */
.preview-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.preview-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(91, 94, 244, 0.15);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a72;
  box-shadow: 0 2px 10px rgba(91, 94, 244, 0.07);
  transition: var(--transition);
}

.preview-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 94, 244, 0.15);
}

.pill-icon { font-size: 16px; }

/* =============================================
   NFC Feature Card
   ============================================= */

.feature-card-nfc {
  background: linear-gradient(135deg, #f0f1ff 0%, #e8f4ff 50%, #f0fbff 100%);
  border: 1.5px solid rgba(91, 94, 244, 0.25);
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(91, 94, 244, 0.14);
}

.feature-card-nfc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
}

.nfc-card-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  min-height: 260px;
}

.nfc-left {
  background: linear-gradient(160deg, #5b5ef4 0%, #06b6d4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.nfc-left::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.nfc-badge-new {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nfc-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  z-index: 1;
}

.nfc-icon-ring {
  position: absolute;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: nfc-pulse 2.4s ease-out infinite;
}

.nfc-icon-ring        { width: 56px;  height: 56px; }
.nfc-ring-2           { width: 80px;  height: 80px;  animation-delay: 0.6s; }
.nfc-ring-3           { width: 108px; height: 108px; animation-delay: 1.2s; }

@keyframes nfc-pulse {
  0%   { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.nfc-right {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nfc-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin: 0;
}

.nfc-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.nfc-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nfc-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: white;
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(91,94,244,0.06);
}

.nfc-point-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.nfc-point strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.nfc-point span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.nfc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ftag-nfc {
  background: rgba(91, 94, 244, 0.1) !important;
  border-color: rgba(91, 94, 244, 0.25) !important;
  color: var(--primary) !important;
  font-size: 12px !important;
  padding: 4px 13px !important;
}

@media (max-width: 900px) {
  .nfc-card-inner {
    grid-template-columns: 1fr;
  }
  .nfc-left {
    padding: 28px;
    flex-direction: row;
    gap: 20px;
  }
  .nfc-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .feature-card-nfc {
    grid-column: 1 !important;
  }
}

@media (max-width: 768px) {
  .browser-mockup {
    transform: none;
    border-radius: 12px;
  }
  .browser-screen img {
    max-height: 260px;
  }
  .preview-badge { display: none; }
}

/* =============================================
   Features
   ============================================= */

.features-bg {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(91,94,244,0.06) 0%, transparent 50%),
    var(--dark-2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(91, 94, 244, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-icon.indigo { background: rgba(79,70,229,0.2); }
.feature-icon.cyan { background: rgba(6,182,212,0.2); }
.feature-icon.purple { background: rgba(139,92,246,0.2); }
.feature-icon.green { background: rgba(16,185,129,0.2); }
.feature-icon.orange { background: rgba(245,158,11,0.2); }
.feature-icon.pink { background: rgba(236,72,153,0.2); }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.ftag {
  display: inline-flex;
  align-items: center;
  background: rgba(91, 94, 244, 0.07);
  border: 1px solid rgba(91, 94, 244, 0.15);
  color: var(--primary);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* =============================================
   How It Works
   ============================================= */

.how-it-works {
  background: var(--dark);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), var(--primary-light), var(--card-border), transparent);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid rgba(91, 94, 244, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 24px;
  position: relative;
  transition: var(--transition);
  color: #9393b5;
  box-shadow: 0 4px 16px rgba(91,94,244,0.1);
}

.step-item:hover .step-number {
  border-color: var(--primary);
  background: rgba(91,94,244,0.06);
  color: var(--primary);
  box-shadow: 0 0 24px rgba(91,94,244,0.2);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   Integrations
   ============================================= */

.integrations-bg {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(34,211,238,0.07) 0%, transparent 50%),
    var(--dark-2);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.integration-card {
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-card);
}

.integration-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.integration-logo {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.integration-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* =============================================
   Stats
   ============================================= */

.stats-section {
  background: var(--dark-2);
  padding: 80px 0;
}

.stats-inner {
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 94, 244, 0.3);
}

.stats-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* override gradient-text inside colored stats block */
.stats-inner .gradient-text,
.stats-inner .gradient-text-2 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background-clip: unset;
  color: white;
}

.stat-divider {
  width: 1px;
  background: var(--card-border);
  display: none;
}

/* =============================================
   Comparison Table
   ============================================= */

.comparison-bg {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(99,102,241,0.07) 0%, transparent 60%),
    var(--dark-2);
}

.comparison-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 24px 28px;
  text-align: left;
  font-size: 14px;
  background: #f0f2ff;
  border-bottom: 1px solid rgba(91,94,244,0.12);
}

.comparison-table th.highlight {
  background: rgba(91,94,244,0.08);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.comparison-table th.col-feature {
  font-weight: 600;
  color: var(--text-secondary);
  width: 30%;
}

.comparison-table th.col-brand {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.comparison-table th.col-brand.highlight {
  color: var(--primary-light);
}

.comparison-table td {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(91,94,244,0.06);
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.feature-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.comparison-table td.check-cell {
  text-align: center;
}

.comparison-table td.highlight {
  background: rgba(91,94,244,0.04);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.check-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.check-icon.yes {
  background: rgba(16,185,129,0.15);
  color: #10b981;
}

.check-icon.no {
  background: rgba(239,68,68,0.1);
  color: rgba(239,68,68,0.6);
}

/* =============================================
   Testimonials
   ============================================= */

.testimonials-bg {
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  border-color: rgba(91, 94, 244, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: var(--warning);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   Pricing
   ============================================= */

.pricing-bg {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(167,139,250,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 50%,   rgba(99,102,241,0.07)  0%, transparent 55%),
    var(--dark-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(91, 94, 244, 0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: white;
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price-sub {
  font-size: 16px;
  font-weight: 500;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--card-border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature-icon {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature-icon.no {
  color: var(--text-muted);
}

/* Pricing model banner */
.pricing-model-banner {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--card);
  border: 1px solid rgba(91, 94, 244, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
  overflow: hidden;
}

.pmb-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}

.pmb-item .pmb-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.pmb-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pmb-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.pmb-item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pmb-divider {
  width: 1px;
  background: rgba(91, 94, 244, 0.1);
  flex-shrink: 0;
}

/* Pricing disclaimer row */
.pricing-disclaimer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}

.pricing-disclaimer span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   CTA Banner
   ============================================= */

.cta-section {
  background: var(--dark);
  padding: 100px 0;
}

.cta-inner {
  background: linear-gradient(135deg, #5b5ef4 0%, #06b6d4 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(91, 94, 244, 0.35);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  bottom: -100px;
  left: 0;
}

.cta-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  position: relative;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  position: relative;
}

/* CTA butonları beyaz override */
.cta-inner .btn-primary {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.cta-inner .btn-primary:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-inner .btn-outline {
  background: white;
  color: var(--primary);
  border-color: white;
}
.cta-inner .btn-outline:hover {
  background: #f0f1ff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* =============================================
   Footer
   ============================================= */

.footer {
  background: #f0f2ff;
  border-top: 1px solid rgba(91, 94, 244, 0.12);
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid rgba(91, 94, 244, 0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(91,94,244,0.06);
}

.social-btn:hover {
  border-color: var(--primary);
  background: rgba(91,94,244,0.06);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-contact-icon {
  font-size: 16px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* =============================================
   Mobile Menu
   ============================================= */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 999;
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(91, 94, 244, 0.08);
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
}

/* =============================================
   Animations
   ============================================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }
.fade-delay-5 { transition-delay: 0.5s; }

/* =============================================
   Topbar — kurumsal iletişim şeridi
   ============================================= */

.topbar {
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 38px;
  padding: 0;
}

.topbar-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--topbar-text);
  white-space: nowrap;
}

.topbar-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.topbar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.topbar-value {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}

.topbar-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.82);
}

.topbar-svg-sm {
  width: 13px;
  height: 13px;
}

.topbar-sep {
  width: 1px;
  height: 22px;
  margin: 0 18px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.topbar-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.topbar-link:hover {
  opacity: 0.9;
}

.topbar-link:hover .topbar-value {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-menu-contact {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(91, 94, 244, 0.06);
  border: 1px solid rgba(91, 94, 244, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-contact-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
}

a.mobile-menu-contact-item {
  color: var(--primary);
}

a.mobile-menu-contact-item:hover {
  text-decoration: underline;
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1100px) {
  .hero-visual {
    display: none;
  }
  .hero-container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-content {
    max-width: 100%;
    margin-left: 0;
  }
  .hero-mobile-showcase {
    display: block;
  }
  .map-svg {
    left: 25%;
    width: 100%;
    opacity: 0.45;
  }
  .hero-map-bg::after {
    background: linear-gradient(to right,
      #f8f9fe 0%,
      #f8f9fe 45%,
      rgba(248,249,254,0.88) 60%,
      rgba(248,249,254,0) 85%
    );
  }
}

@media (max-width: 768px) {
  .hero-map-bg {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 100px;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 86px !important;
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-play-btn {
    justify-content: center;
    width: 100%;
  }

  .hero-mobile-showcase {
    margin-top: 28px;
  }

  .hero-mobile-nfc-title {
    font-size: 18px;
  }

  .hero-mobile-chip {
    flex: 0 0 78%;
  }

  .quick-contact {
    bottom: 18px;
  }
}

@media (max-width: 380px) {
  .hero-mobile-nfc-paycard {
    width: 118px;
    height: 74px;
    right: 10px;
    top: 28px;
  }

  .hero-mobile-nfc-phone {
    width: 88px;
  }
}


@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container::before { display: none; }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-model-banner {
    flex-direction: column;
  }
  .pmb-divider {
    width: 100%;
    height: 1px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1100px) {
  .topbar-sep {
    margin: 0 12px;
  }

  .topbar-label {
    display: none;
  }

  .topbar-value {
    font-size: 11.5px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none !important;
  }

  .section { padding: 70px 0; }
  .navbar-links, .navbar-cta .btn-ghost {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-container {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    padding: 40px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .stat-number { font-size: 36px; }
  .cta-inner {
    padding: 50px 28px;
  }
  .comparison-table {
    overflow-x: auto;
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 24px;
  }
  .hero-stat-number { font-size: 26px; }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   Quick contact — Ara + WhatsApp
   ============================================= */

.quick-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9980;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(15, 15, 45, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 15, 45, 0.28);
  color: #fff;
}

.quick-contact-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.quick-contact-wa {
  background: #25d366;
}

.quick-contact-wa:hover {
  background: #1ebe57;
}

.quick-contact-call {
  background: var(--primary);
}

.quick-contact-call:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .quick-contact {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .quick-contact-btn {
    min-height: 48px;
    padding: 0 16px 0 12px;
    font-size: 13px;
  }

  .quick-contact-btn svg {
    width: 20px;
    height: 20px;
  }
}
