/* ==========================================================================
   RoomMate by GharVilla - 3D Mosto UI Stylesheet
   Design: Plus Jakarta Sans, Light Glassmorphism, 3D Isometric Float & Tilt
   Colors: Indigo (#4F46E5), Purple (#7C3AED), Pink (#EC4899), Teal (#0D9488)
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #EEF2FF;
  --secondary: #7C3AED;
  --accent-pink: #EC4899;
  --accent-teal: #0D9488;
  --gold-credit: #F59E0B;

  /* Surfaces & Glass */
  --bg-main: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.88);
  --border-light: rgba(226, 232, 240, 0.85);
  --border-active: rgba(129, 140, 248, 0.5);

  /* Typography */
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;

  /* Status */
  --success: #10B981;
  --blue-verified: #2563EB;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-pink-purple: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
  --gradient-page: linear-gradient(180deg, #F0F4FF 0%, #F8FAFC 35%, #FAF5FF 100%);

  /* UI Dimensions & Shadows */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 16px 36px -10px rgba(79, 70, 229, 0.08);
  --shadow-3d: 0 25px 50px -12px rgba(79, 70, 229, 0.22);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  background: var(--gradient-page);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   3D Floating Isometric Elements (Mosto Theme 3D)
   ========================================================================== */
.parallax-layer-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.elem-3d {
  position: absolute;
  transition: transform 0.15s ease-out;
}

.svg-3d {
  width: 100%;
  height: 100%;
  display: block;
}

/* 1. Isometric Cube */
.elem-cube-1 {
  width: 90px;
  height: 90px;
  top: 14%;
  left: 5%;
  filter: drop-shadow(0 20px 25px rgba(79, 70, 229, 0.25));
}

/* 2. 3D Torus / Donut Ring */
.elem-torus {
  width: 110px;
  height: 110px;
  top: 8%;
  right: 6%;
}

/* 3. 3D Specular Shaded Sphere */
.elem-sphere {
  width: 65px;
  height: 65px;
  bottom: 22%;
  left: 6%;
}

.sphere-3d {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #A78BFA 35%, #7C3AED 70%, #4C1D95 100%);
  box-shadow: 0 20px 30px rgba(124, 58, 237, 0.35), inset -8px -8px 16px rgba(0,0,0,0.3);
}

/* 4. 3D Golden Currency Coin */
.elem-coin {
  width: 55px;
  height: 55px;
  top: 48%;
  right: 4%;
}

.coin-3d {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FDE68A 0%, #F59E0B 60%, #B45309 100%);
  border: 4px solid #FCD34D;
  box-shadow: 0 15px 25px rgba(245, 158, 11, 0.35), inset 2px 2px 4px rgba(255,255,255,0.8), inset -3px -3px 6px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(25deg);
  animation: coinSpin 8s ease-in-out infinite alternate;
}

.coin-symbol {
  font-size: 24px;
  font-weight: 800;
  color: #78350F;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
}

@keyframes coinSpin {
  0% { transform: rotateY(15deg) rotateX(10deg); }
  100% { transform: rotateY(55deg) rotateX(-15deg); }
}

/* 5. 3D Shield */
.elem-shield {
  width: 60px;
  height: 70px;
  bottom: 12%;
  right: 12%;
}

/* 6. 3D Tetrahedron */
.elem-tetra {
  width: 70px;
  height: 70px;
  top: 60%;
  left: 2%;
}

/* Floating Animation Cycles */
.floating-slow {
  animation: float3d 7s ease-in-out infinite alternate;
}

.floating-mid {
  animation: float3d 5s ease-in-out infinite alternate-reverse;
}

.floating-fast {
  animation: float3d 4s ease-in-out infinite alternate;
}

@keyframes float3d {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
  100% { transform: translateY(-28px) rotate(-3deg); }
}

/* ==========================================================================
   Glassmorphic & 3D Utility Classes
   ========================================================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3D Tilt Card Base */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
  will-change: transform;
}

.tilt-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-3d);
}

.btn-3d-tilt {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.btn-3d-tilt:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 30px -6px rgba(15, 23, 42, 0.45);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header-section {
  position: sticky;
  top: 16px;
  z-index: 1000;
  padding: 0 0 10px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  border-radius: 9999px;
}

.brand-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
  color: var(--primary);
}

.btn-glow-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px -4px rgba(79, 70, 229, 0.45);
  transition: var(--transition);
}

.btn-glow-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(79, 70, 229, 0.6);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ==========================================================================
   Banner / Hero Section
   ========================================================================== */
.banner-section {
  padding: 50px 0 80px;
  position: relative;
  z-index: 2;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.cate-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.22);
  padding: 6px 14px;
  border-radius: 9999px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.banner-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.banner-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 520px;
}

/* Store Buttons Group */
.store-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: #0F172A;
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.3);
}

.store-svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

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

.store-sub {
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #94A3B8;
  font-weight: 600;
}

.store-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

/* Counter Row */
.banner-counter-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.counter-item {
  display: flex;
  flex-direction: column;
}

.count-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.count-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.counter-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* ==========================================================================
   3D Interactive Phone Presentation (Hero Right)
   ========================================================================== */
.banner-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  padding: 30px 20px;
}

/* Pop-out 3D Badges */
.float-badge-3d {
  position: absolute;
  background: #FFFFFF;
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 20px 45px -8px rgba(79, 70, 229, 0.28);
  border: 1px solid rgba(226, 232, 240, 0.95);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  transition: transform 0.2s ease-out;
  pointer-events: none;
}

.badge-top-right {
  top: 5%;
  right: -25px;
  animation: badgeBob1 4s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: 8%;
  left: -25px;
  animation: badgeBob2 5s ease-in-out infinite alternate;
}

@keyframes badgeBob1 {
  0% { transform: translateY(0) translateZ(30px); }
  100% { transform: translateY(-12px) translateZ(30px); }
}

@keyframes badgeBob2 {
  0% { transform: translateY(0) translateZ(25px); }
  100% { transform: translateY(10px) translateZ(25px); }
}

.float-badge-3d strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
}

.float-badge-3d p {
  font-size: 11px;
  color: var(--text-muted);
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.green-glow {
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.blue-glow {
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Floor Shadow */
.phone-shadow-3d {
  position: absolute;
  bottom: -15px;
  width: 250px;
  height: 35px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.3) 0%, rgba(0,0,0,0) 70%);
  filter: blur(8px);
  z-index: 1;
}

/* Phone Frame & 3D Lighting */
.phone-device-wrap {
  width: 315px;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform;
  z-index: 10;
}

.phone-device {
  background: #0F172A;
  border-radius: 46px;
  padding: 12px;
  border: 4px solid #334155;
  box-shadow: 0 35px 80px -15px rgba(79, 70, 229, 0.35), inset 0 0 10px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

/* Glossy screen glare reflection */
.glass-reflection::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 60%);
  pointer-events: none;
  z-index: 5;
}

.phone-island {
  width: 85px;
  height: 18px;
  background: #000000;
  border-radius: 20px;
  margin: 0 auto 12px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15);
}

.phone-ui {
  background: #F8FAFC;
  border-radius: 34px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-brand-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-icon-mini {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.app-label-mini {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.app-sub-mini {
  font-size: 10px;
  color: var(--text-muted);
}

.score-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
}

.phone-profile-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.06);
}

.candidate-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.candidate-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.candidate-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.v-tick {
  font-size: 10px;
  color: var(--blue-verified);
  background: rgba(37, 99, 235, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
}

.candidate-occupation {
  font-size: 10px;
  color: var(--text-muted);
}

.lifestyle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.chip {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-body);
  padding-top: 8px;
  border-top: 1px dashed #E2E8F0;
}

.phone-flat-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.flat-badge-icon {
  font-size: 20px;
  background: rgba(124, 58, 237, 0.1);
  padding: 6px;
  border-radius: 10px;
}

.flat-details {
  flex: 1;
}

.flat-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
}

.flat-amenities {
  font-size: 9px;
  color: var(--text-muted);
}

.flat-rent {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

.phone-action-btn {
  background: var(--gradient-primary);
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px -2px rgba(79, 70, 229, 0.4);
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.section-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-heading.text-center {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-cate {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-main-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtext {
  font-size: 16px;
  color: var(--text-body);
}

/* ==========================================================================
   Quick Features 4-Grid with 3D Depth
   ========================================================================== */
.quick-features-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.quick-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quick-feat-card {
  padding: 34px 24px;
  position: relative;
}

.active-card {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 45px -10px rgba(124, 58, 237, 0.22);
}

.card-highlight-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--secondary);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.feat-icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  margin-bottom: 22px;
}

.icon-3d-shadow {
  box-shadow: 0 12px 20px -6px rgba(79, 70, 229, 0.4);
}

.feat-icon-bubble svg {
  width: 26px;
  height: 26px;
}

.bg-gradient-indigo { background: linear-gradient(135deg, #4F46E5, #6366F1); }
.bg-gradient-purple { background: linear-gradient(135deg, #7C3AED, #9333EA); }
.bg-gradient-pink   { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.bg-gradient-teal   { background: linear-gradient(135deg, #0D9488, #06B6D4); }

.feat-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feat-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ==========================================================================
   How It Works 3-Step Section
   ========================================================================== */
.how-it-works-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-step-card {
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}

.text-3d-depth {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(79, 70, 229, 0.12);
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.8), -1px -1px 0 rgba(0,0,0,0.05);
}

.step-icon {
  font-size: 38px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 12px rgba(79, 70, 229, 0.2));
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ==========================================================================
   Split App Showcase
   ========================================================================== */
.app-showcase-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.showcase-card-container {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-header {
  margin-bottom: 8px;
}

.showcase-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.showcase-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
}

.mini-profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.av-1 { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.av-2 { background: linear-gradient(135deg, #4F46E5, #3B82F6); }
.av-3 { background: linear-gradient(135deg, #0D9488, #10B981); }

.mini-info {
  flex: 1;
}

.mini-info strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
}

.mini-info span {
  font-size: 11px;
  color: var(--text-muted);
}

.mini-score {
  font-size: 13px;
  font-weight: 800;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 8px;
  border-radius: 9999px;
}

.showcase-footer-pill {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  padding: 8px;
  background: var(--primary-light);
  border-radius: 10px;
}

.showcase-lead {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 32px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.15);
}

.benefit-content h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

/* ==========================================================================
   Download Section with 3D Platform Switcher
   ========================================================================== */
.download-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 2;
}

.download-box {
  padding: 64px 32px;
  text-align: center;
  border: 1px solid var(--border-active);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 255, 0.92));
  box-shadow: 0 25px 60px -15px rgba(79, 70, 229, 0.25);
}

.download-box-inner {
  max-width: 680px;
  margin: 0 auto;
}

.download-heading {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.download-text {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 40px;
}

/* Platform Switcher Cards */
.platform-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: left;
}

.platform-card:hover, .platform-card.active {
  border-color: var(--primary);
  box-shadow: 0 18px 40px -8px rgba(79, 70, 229, 0.25);
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0F172A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.3);
}

.platform-icon svg {
  width: 26px;
  height: 26px;
}

.platform-info {
  display: flex;
  flex-direction: column;
}

.platform-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.platform-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.platform-link-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 4px;
}

/* QR Scanner Box */
.qr-scan-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.qr-box {
  width: 48px;
  height: 48px;
  background: #0F172A;
  border-radius: 10px;
  padding: 6px;
}

.qr-matrix {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-c {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #FFF;
}

.qr-c.top-l { top: 0; left: 0; }
.qr-c.top-r { top: 0; right: 0; }
.qr-c.bot-l { bottom: 0; left: 0; }

.qr-caption strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
}

.qr-caption p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  padding: 50px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links-group {
  display: flex;
  gap: 24px;
}

.footer-links-group a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

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

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-direct-stores {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-direct-stores a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 10px 25px -4px rgba(79, 70, 229, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .banner-counter-row {
    justify-content: center;
  }

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

  .how-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .float-badge-3d {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .banner-title {
    font-size: 38px;
  }

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

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
