/* Modern AI-Tech Startup CSS with Glassmorphism */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-cyan: #00d4ff;
  --primary-blue: #0066ff;
  --primary-purple: #8b5cf6;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0066ff 100%);
  --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #8b5cf6 100%);
  --gradient-3: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #667eea 100%);
  --dark-bg: #0a0a0f;
  --dark-surface: #111118;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #b4b4c7;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.2);
  --header-height: 80px;
  --vh: 1vh; /* Real viewport height unit for mobile browsers */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Gradient */
.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
  z-index: -1;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Utility Classes */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block;
  }
}

/* Glass Header */
.glass-header {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 1rem;
  text-align: center;
}

/* Ensure header/nav stays fixed at the top on all viewports */
header,
.navbar,
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-meta {
  margin-top: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  color: var(--primary-cyan);
}

.hamburger-icon {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.desktop-nav {
  display: flex;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-cyan);
}

.logo {
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Bigger logo text */
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
  position: relative;
  text-shadow: 
    0 0 10px rgba(0, 212, 255, 0.8),
    0 0 20px rgba(0, 212, 255, 0.6),
    0 0 30px rgba(0, 102, 255, 0.5),
    0 0 40px rgba(139, 92, 246, 0.4);
  animation: neonGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

@keyframes neonGlow {
  0% {
    text-shadow: 
      0 0 10px rgba(0, 212, 255, 0.8),
      0 0 20px rgba(0, 212, 255, 0.6),
      0 0 30px rgba(0, 102, 255, 0.5),
      0 0 40px rgba(139, 92, 246, 0.4);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
  }
  100% {
    text-shadow: 
      0 0 20px rgba(0, 212, 255, 1),
      0 0 30px rgba(0, 212, 255, 0.8),
      0 0 40px rgba(0, 102, 255, 0.7),
      0 0 50px rgba(139, 92, 246, 0.6),
      0 0 60px rgba(0, 212, 255, 0.5);
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
  }
}

.tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Menu Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 99;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav-content {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* highlight the current page link both desktop and mobile */
.nav-link.active,
.mobile-nav-link.active {
  color: var(--primary-cyan);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
}

/* ensure mobile menu text remains white even when pressed */
.mobile-nav-link:active,
.mobile-nav-link:focus {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.12);
}

/* Hero Meta (Mobile) */
.hero-meta {
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.hero-badge-text {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
}

.hero-gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -300px;
  animation: float 15s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  position: relative;
  margin-bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

/* Two-Column Hero Layout */
.hero-two-column {
  max-width: 1200px !important;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0; /* Prevent grid overflow */
  overflow: hidden;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0; /* Prevent grid overflow */
  overflow: hidden;
}

/* Main Hero Title - Large, Bold, Gradient with Glow */
.hero-main-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Subtitle */
.hero-subtitle-new {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Patent Badge */
.hero-patent-badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-cyan);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
  width: fit-content;
}

/* Founder Image Wrapper */
.founder-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.5),
    0 0 60px rgba(0, 102, 255, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  flex-shrink: 0;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: brightness(1.05);
}

/* Hero Founder Image - Additional Safety Rules */
.hero-right .founder-image {
  width: 100%;
  height: auto;
  max-width: 320px;
  border-radius: 50%;
  object-fit: cover;
}

/* Founder caption styles consolidated below */

/* Hero Content Below (Additional Content) */
.hero-content-below {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.supporters-hero .hero-content {
  margin-bottom: 0;
}

/* Supporters hero section - keep title block in a fixed, comfortable size */
.supporters-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;      /* space below sticky header */
  padding-bottom: 0; /* no gap - supporters section starts immediately */
  min-height: auto;       /* let content decide height, no forced screen-fit */
}

@media (max-width: 768px) {
  .supporters-hero {
    padding-top: 5.5rem;
    padding-bottom: 0 !important;
    min-height: auto;
    margin-bottom: 0 !important;
  }
  
  .supporters-hero .hero-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .supporters-hero .hero-title {
    margin-bottom: 0.75rem;
  }
  
  .supporters-hero .supporters-intro {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.6;
  }
  
  .supporters-hero .back-to-home {
    margin-bottom: 1.5rem;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 3;
}

/* Founder Image Block */
.hero-founder-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Founder photo - regular img element */
.founder-photo {
  width: 260px;
  max-width: 80vw;
  height: auto;
  border-radius: 50%;
  border: 3px solid #ffd200;
  box-shadow: 0 0 30px rgba(255, 210, 0, 0.6);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Animated neon border rotation */
@keyframes neonRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pulsing glow effect */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 212, 255, 0.6),
      0 0 40px rgba(0, 102, 255, 0.4),
      0 0 60px rgba(139, 92, 246, 0.3),
      inset 0 0 30px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 212, 255, 0.8),
      0 0 60px rgba(0, 102, 255, 0.6),
      0 0 90px rgba(139, 92, 246, 0.5),
      inset 0 0 40px rgba(0, 212, 255, 0.3);
  }
}


/* Removed img tag styles - now using background-image */

/* Removed hero-founder::after - using regular img element now */

.founder-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #9eefff;
  text-align: center;
  width: 100%;
  text-shadow: 
    0 0 10px rgba(0, 212, 255, 0.5),
    0 0 20px rgba(0, 212, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: textGlow 2s ease-in-out infinite alternate;
}

/* Subtle text glow animation */
@keyframes textGlow {
  0% {
    text-shadow: 
      0 0 10px rgba(0, 212, 255, 0.5),
      0 0 20px rgba(0, 212, 255, 0.3);
  }
  100% {
    text-shadow: 
      0 0 15px rgba(0, 212, 255, 0.7),
      0 0 25px rgba(0, 212, 255, 0.5),
      0 0 35px rgba(139, 92, 246, 0.3);
  }
}

@media (max-width: 768px) {
  .founder-photo {
    width: 200px;
    max-width: 70vw;
  }
  
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
  
  .founder-caption {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}


/* Removed old hero-founder styles - using founder-photo now */

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-2);
  color: #000;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
  scroll-margin-top: 100px;
}

.section,
.page,
.content {
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-cyan);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
}

section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

/* Usage Grid */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.usage-grid .glass-card {
  text-align: center;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.usage-grid h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.usage-grid p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 2.5rem;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.benefit-icon {
  font-size: 2rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
}

.benefit-card ul li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-cyan);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Section Description (subtitle under h2) */
.section-header .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* V6 Features Section - First main section after Hero */
.v6-features {
  padding: 4rem 0;
  position: relative;
}

.v6-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.v6-feature-card {
  text-align: center;
  padding: 2rem;
}

.v6-feature-card .feature-icon {
  font-size: 2.75rem;
}

/* Live Demo Concept */
.live-demo {
  padding: 4rem 0;
}

.live-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.live-demo-gallery {
  padding: 2rem;
}

.live-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.live-demo-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.live-demo-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-demo-photos {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.live-demo-photo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-demo-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.live-demo-meta {
  flex: 1;
}

.live-demo-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.live-demo-tags {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.live-demo-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.live-demo-star {
  color: #ffd700;
}

.live-demo-select {
  color: var(--primary-cyan);
}

.live-demo-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.live-demo-counter {
  font-weight: 600;
  color: var(--primary-cyan);
}

.live-demo-explainer h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.live-demo-steps {
  list-style: decimal;
  padding-left: 1.2rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.live-demo-steps li {
  margin-bottom: 0.5rem;
}

.live-demo-footnote {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Desktop: 3-4 columns */
@media (min-width: 1024px) {
  .v6-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet: 2-3 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .v6-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .live-demo-grid {
    grid-template-columns: 1fr;
  }
}

/* Trust Section */
.trust {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.trust .container {
  position: relative;
  z-index: 1;
}

.trust-content {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  padding: 2.5rem 3rem;
  min-width: 200px;
}

.trust-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.trust-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
}

/* Case Studies + Flow Diagram */
.case-studies {
  padding: 4rem 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-study-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.case-study-metric {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.case-study-list {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.case-study-list li {
  margin-bottom: 0.4rem;
}

.flow-diagram-card h3 {
  margin-bottom: 1rem;
}

.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.flow-node {
  min-width: 150px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.flow-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.flow-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.flow-arrow {
  font-size: 0.8rem;
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-footnote {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* India Reach Section */
.india-reach {
  padding: 4rem 0;
}

.india-reach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.india-map-card {
  text-align: center;
}

.india-map-image {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  display: block;
  margin: 0 auto 0.75rem;
}

.india-map-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.india-states-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.india-states-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.india-states-list li {
  margin-bottom: 0.25rem;
}

.india-reach-footnote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .india-reach-grid {
    grid-template-columns: 1fr;
  }
}

/* Feedback Section */
.feedback {
  padding: 4rem 0;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feedback-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feedback-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.feedback-btn {
  display: inline-block;
  margin-top: 0.25rem;
}

.feedback-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.feedback-textarea {
  width: 100%;
  min-height: 140px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-primary);
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.feedback-textarea::placeholder {
  color: var(--text-secondary);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  padding: 2rem;
}

.review-stars {
  color: #ffd700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  color: var(--text-secondary);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  color: var(--primary-cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Screenshots */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.screenshot-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.screenshot-item:hover {
  transform: scale(1.03);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-placeholder {
  width: 100%;
  height: 300px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-radius: 20px;
}

/* Demo Video */
.video-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 3rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-align: center;
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
}

/* Contact */
.contact {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.8);
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  min-width: 280px;
}

.contact-icon {
  font-size: 2.5rem;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.copyright {
  margin-top: 3rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-align: center;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.modal-content {
  position: relative;
  z-index: 1002;
  margin: 3% auto;
  padding: 3rem;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.close:hover {
  color: var(--primary-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.license-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.pricing-simple {
  max-width: 600px;
  margin: 2rem auto 0;
}

.pricing-card {
  text-align: center;
  padding: 3rem;
}

.pricing-main {
  margin-bottom: 2rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-duration {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-features {
  margin: 2rem 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-note {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin: 2rem 0;
}

.pricing-note p {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.pricing-contact {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.license-card {
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.plan-box-image {
  max-width: 220px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.45));
}

.plan-box-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.license-card.featured {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-2);
  color: #000;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.license-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1rem 0;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.5rem 0;
}

.license-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 2rem 0;
}

.license-card ul li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.license-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-cyan);
  font-weight: 700;
  font-size: 1.1rem;
}

.buy-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-2);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-family: inherit;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* Download Section */
.download {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.download .container {
  position: relative;
  z-index: 1;
}

.download-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.download-card {
  padding: 3rem;
  text-align: center;
}

.download-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.download-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.download-info {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.download-btn {
  margin-top: 1.5rem;
  width: 100%;
}

.download-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.download-legal-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #a0a0b5; /* light grey, professional */
  line-height: 1.4;
}

.download-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.doc-link {
  display: block;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.doc-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--primary-cyan);
  transform: translateY(-2px);
}

/* Tech Specs Section */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.spec-card {
  padding: 2.5rem;
}

.spec-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.spec-list li:last-child {
  border-bottom: none;
}

/* Software Showcase Section */
.software-showcase {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.software-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.software-showcase .container {
  position: relative;
  z-index: 1;
}

.showcase-content {
  margin-top: 2rem;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.showcase-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.software-preview {
  width: 100%;
  max-width: 500px;
}

.preview-window {
  background: var(--dark-surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

.window-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ff5f56;
}

.control.yellow {
  background: #ffbd2e;
}

.control.green {
  background: #27c93f;
}

.window-title {
  color: var(--text-secondary);
  font-size: 0.85rem;
  flex: 1;
  text-align: center;
}

.window-content {
  padding: 2rem;
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.preview-feature {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.preview-feature:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-2px);
}

.showcase-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.showcase-features {
  list-style: none;
  padding: 0;
}

.showcase-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.showcase-features li:last-child {
  border-bottom: none;
}

/* Activation & Support Section */
.activation-support {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.activation-support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.activation-support .container {
  position: relative;
  z-index: 1;
}

.activation-content {
  max-width: 800px;
  margin: 2rem auto 0;
}

.activation-card {
  text-align: center;
  padding: 3rem;
}

.activation-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.activation-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.activation-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.activation-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.activation-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.activation-benefit-item:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--primary-cyan);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.activation-btn {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
}

/* Community & Media Section */
.community-media {
  padding: 5rem 0;
  position: relative;
}

.community-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.community-card {
  text-align: center;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.2);
}

.community-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.4));
  animation: float 3s ease-in-out infinite;
}

.community-card:nth-child(2) .community-icon {
  animation-delay: 0.5s;
}

.community-card:nth-child(3) .community-icon {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.community-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.community-btn {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.community-btn:hover {
  transform: translateY(-2px);
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.support-card {
  text-align: center;
  padding: 2.5rem;
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.support-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.support-link {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: var(--text-primary);
}

.support-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Compact Header */
  .glass-header {
    padding: 0.75rem 1rem;
  }
  

  .header-content {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 48px;
    max-height: 64px;
  }

  .header-top {
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .mobile-menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .desktop-nav {
    display: none;
  }

  .logo {
    font-size: 1.6rem;
    margin-bottom: 0;
    flex: 1;
    text-align: left;
  }

  /* Hero Section - Proper spacing for mobile */
  .hero {
    /* Mobile hero with comfortable spacing */
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: flex-start;
  }
  

  .hero-content {
    width: 100%;
  }

  /* Two-Column Hero - Mobile: Stacked */
  .hero-two-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    overflow-x: hidden;
  }

  /* Founder Image - TOP on Mobile */
  .hero-right {
    order: 1;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
  }

  .founder-image-wrapper {
    max-width: 280px;
    width: 280px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 0.75rem;
  }

  .hero-right .founder-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Text Content - Compact on Mobile */
  .hero-left {
    order: 2;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-main-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 0.5rem;
    line-height: 1.1;
  }

  .hero-subtitle-new {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    line-height: 1.4;
  }

  .hero-patent-badge {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    margin: 0;
    width: auto;
    max-width: 95%;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-meta {
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.5rem;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-cta > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta button {
    width: 100%;
    max-width: 100%;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-top: 1.5rem;
    display: none; /* Hide stats on mobile to save space */
  }

  section {
    padding: 2.5rem 0;
  }
  
  /* Supporters page - remove all gaps between hero and supporters section */
  .supporters-hero {
    padding: 5.5rem 0 0 0 !important; /* Only top padding for header spacing */
    margin-bottom: 0 !important;
  }
  
  .supporters-section {
    padding: 0 0 0 0 !important;
    margin-top: 0 !important;
  }
  
  /* No extra bottom padding needed (floating CTA removed) */
  
  /* First section after header - prevent overlap with fixed header */
  body > header + section:not(.supporters-hero),
  body > header + .hero:not(.supporters-hero),
  body > .glass-header + section:not(.supporters-hero),
  body > .glass-header + .hero:not(.supporters-hero) {
    padding-top: 5.625rem; /* 90px - accounts for header + patent badge + spacing */
  }
  

  .contact-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .trust-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-stat {
    min-width: auto;
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    width: 100%;
  }

  .contact-item {
    width: 100%;
    min-width: auto;
  }

  .download-content {
    grid-template-columns: 1fr;
  }

  .download-info {
    flex-direction: column;
    gap: 1rem;
  }

  .download-links {
    grid-template-columns: 1fr;
  }

  .usage-grid,
  .benefits-grid,
  .features-grid,
  .v6-features-grid,
  .reviews-grid,
  .license-options,
  .specs-grid,
  .support-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .window-content {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 5% auto;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Trust Blocks Section */
.trust-blocks {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.trust-blocks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.trust-blocks .container {
  position: relative;
  z-index: 1;
}

.trust-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-block {
  text-align: center;
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.trust-block:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.2);
}

.trust-block-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.trust-block-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-block-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.trust-block-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Comparison Section */
.comparison {
  background: var(--dark-bg);
  position: relative;
}

.comparison-table {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(0, 212, 255, 0.1);
  border-bottom: 2px solid var(--glass-border);
}

.comparison-col {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-col-header {
  justify-content: flex-start;
  text-align: left;
}

.comparison-col-label {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-col-other h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0;
}

.comparison-col-wps {
  position: relative;
  background: rgba(0, 212, 255, 0.15);
}

.comparison-col-wps h3 {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.wps-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--gradient-2);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease;
}

.comparison-row:hover {
  background: rgba(0, 212, 255, 0.05);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.comparison-value {
  font-size: 1rem;
  font-weight: 600;
}

.comparison-col-other .comparison-value {
  color: #ff6b6b;
}

.comparison-col-wps .comparison-value {
  color: var(--primary-cyan);
}

/* ROI Section */
.roi-section {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.roi-section .container {
  position: relative;
  z-index: 1;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.roi-card {
  text-align: center;
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.roi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.2);
}

.roi-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.roi-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.roi-benefit {
  display: inline-block;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--primary-cyan);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--primary-cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Demo Section Enhancement */
.demo-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Patent Badge Section */
.patent-badge-section {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.patent-badge-large {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
  max-width: 600px;
}

.patent-badge-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.4));
}

.patent-badge-content {
  text-align: left;
}

.patent-badge-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.patent-badge-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.patent-badge-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Supporters Section */
.supporters-section {
  padding: 20px 0 5rem 0;
  position: relative;
  min-height: calc(100vh - 100px);
  scroll-margin-top: 100px; /* For smooth scroll positioning */
}

@media (max-width: 768px) {
  .supporters-section {
    padding-top: 5.5rem !important; /* Header height + small spacing */
    padding-bottom: 0 !important; /* Floating CTA removed */
    margin-top: 0 !important;
    scroll-margin-top: 5.5rem; /* For smooth scroll positioning */
  }
  
  .supporters-section .container {
    padding-top: 0 !important;
    padding-bottom: 0;
    margin-top: 0 !important;
  }
  
  .supporters-grid {
    margin-top: 0 !important; /* No gap - starts immediately after intro */
    padding-top: 0 !important;
  }
  
  /* Ensure supporters section is immediately visible on mobile */
  body > .glass-header + .supporters-section {
    padding-top: 5.5rem !important;
  }
}

.supporters-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 0;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.supporter-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  animation: cardFadeIn 0.6s ease-out backwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for cards */
.supporter-card:nth-child(1) { animation-delay: 0.1s; }
.supporter-card:nth-child(2) { animation-delay: 0.2s; }
.supporter-card:nth-child(3) { animation-delay: 0.3s; }
.supporter-card:nth-child(4) { animation-delay: 0.4s; }
.supporter-card:nth-child(5) { animation-delay: 0.5s; }
.supporter-card:nth-child(6) { animation-delay: 0.6s; }
.supporter-card:nth-child(7) { animation-delay: 0.7s; }
.supporter-card:nth-child(8) { animation-delay: 0.8s; }
.supporter-card:nth-child(9) { animation-delay: 0.9s; }
.supporter-card:nth-child(10) { animation-delay: 1.0s; }
.supporter-card:nth-child(11) { animation-delay: 1.1s; }
.supporter-card:nth-child(12) { animation-delay: 1.2s; }

.supporter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.15);
}

.supporter-photo {
  width: 280px;
  height: 280px;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid var(--glass-border);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: photoFadeIn 0.6s ease-out;
}

@keyframes photoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.supporter-photo:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
  border-color: rgba(0, 212, 255, 0.5);
}

.supporter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.supporter-photo:hover img {
  transform: scale(1.1);
}

.supporter-card:hover .supporter-photo {
  animation: photoPulse 2s ease-in-out infinite;
}

@keyframes photoPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 35px rgba(0, 212, 255, 0.4);
  }
}

.supporter-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  color: #000;
  font-weight: 800;
  font-size: 2.5rem;
}

/* Hide placeholder when image is present */
.supporter-photo:has(img) .supporter-photo-placeholder {
  display: none;
}

/* Fallback for browsers that don't support :has() */
.supporter-photo img + .supporter-photo-placeholder {
  display: none;
}

.supporter-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.supporter-city {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.supporter-role {
  display: inline-block;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--primary-cyan);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.supporter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffd700;
  margin-top: 0.5rem;
}

.supporter-badge-icon {
  font-size: 1.1rem;
}

.supporter-badge-photo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 215, 0, 0.5);
  display: inline-block;
  flex-shrink: 0;
}

/* Hide icon when photo is present */
.supporter-badge:has(.supporter-badge-photo) .supporter-badge-icon {
  display: none;
}

/* Fallback for browsers that don't support :has() */
.supporter-badge .supporter-badge-photo + .supporter-badge-icon {
  display: none;
}

.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.back-to-home:hover {
  color: var(--text-primary);
  transform: translateX(-5px);
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 3rem 0;
  background: rgba(10, 10, 15, 0.5);
  border-top: 1px solid var(--glass-border);
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.disclaimer-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.disclaimer-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content {
    padding: 1.5rem;
  }

  .disclaimer-content h3 {
    font-size: 1.25rem;
  }

  .disclaimer-content p {
    font-size: 0.85rem;
  }
}

/* Floating mobile WhatsApp CTA was removed to preserve a premium SaaS layout */

/* WhatsApp CTA (in-flow) */
.whatsapp-inline-cta {
  padding: 1.5rem 0;
}

.whatsapp-inline-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

/* Validation Registry card below Founder (top of hero) */
.hero-validation-card {
  max-width: 720px;
  margin: 1.25rem auto 0;
}

.whatsapp-inline-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.whatsapp-inline-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .whatsapp-inline-cta {
    padding: 1rem 0 0.5rem;
  }
  .whatsapp-inline-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .whatsapp-inline-btn {
    width: 100%;
  }
}

/* Footer */
.main-footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-note {
  color: var(--text-secondary);
  font-size: 0.85rem;
  opacity: 0.7;
}

.patent-footer-note {
  color: var(--text-secondary);
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-blocks-grid,
  .roi-grid,
  .supporters-grid {
    grid-template-columns: 1fr;
  }

  .activation-card {
    padding: 2rem 1.5rem;
  }

  .activation-icon {
    font-size: 3rem;
  }

  .activation-card h3 {
    font-size: 1.5rem;
  }

  .activation-description {
    font-size: 1rem;
  }

  .activation-benefits {
    flex-direction: column;
    gap: 1rem;
  }

  .activation-benefit-item {
    width: 100%;
    justify-content: center;
  }

  .supporters-intro {
    font-size: 1rem;
    padding: 0 1rem;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.5;
  }

  .supporter-card {
    padding: 1.5rem;
  }
  
  .supporter-photo {
    width: 220px;
    height: 220px;
  }
  
  .supporter-photo:hover {
    transform: translateY(-8px) scale(1.03);
  }

  .comparison-table {
    display: block;
  }

  .comparison-header {
    display: block;
    padding: 1.5rem;
  }

  .comparison-col-header {
    display: none;
  }

  .comparison-col-other,
  .comparison-col-wps {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .comparison-col-other {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
  }

  .comparison-col-wps {
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid var(--primary-cyan);
  }

  .comparison-row {
    display: block;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
  }

  .comparison-col-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .comparison-col {
    padding: 0.75rem 0;
    text-align: left;
  }

  .comparison-col-other .comparison-value,
  .comparison-col-wps .comparison-value {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }

  .wps-badge {
    position: static;
    margin-top: 0.75rem;
    display: inline-block;
  }

  .patent-badge-large {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .patent-badge-content {
    text-align: center;
  }

  /* mobile floating CTA removed */

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  .pricing-duration {
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) {
  /* mobile floating CTA removed */
}

/* ============================================
   AUTHENTICATION & LOGIN SYSTEM
   ============================================ */

/* Language Selector */
.language-selector {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10002;
  display: flex;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  background: var(--gradient-2);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Login Modal */
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.login-container {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.patent-badge-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffd700;
  margin-top: 1rem;
}

.patent-icon {
  font-size: 1.2rem;
}

.login-form,
.otp-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.login-submit-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.resend-otp-btn {
  width: 100%;
}

.otp-hint {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.login-info {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.2rem;
}

.login-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.login-footer p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.back-link {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .language-selector {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.4rem;
  }
  
  .lang-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .login-container {
    padding: 2rem 1.5rem;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
}

/* Patent Banner */
.patent-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.4);
  position: relative;
  z-index: 3;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  animation: patentPulse 3s ease-in-out infinite;
}

@keyframes patentPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.4);
  }
}

.patent-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

.patent-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.02em;
}

.patent-text strong {
  color: #fff;
  font-weight: 800;
}

/* Tech Proof Indicators */
.tech-proof-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.tech-indicator {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.tech-indicator:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.tech-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.tech-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .patent-banner {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  
  .tech-proof-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
  }
  
  .tech-indicator {
    min-width: auto;
    padding: 1rem;
  }
  
  .tech-icon {
    font-size: 2rem;
  }
  
  .tech-value {
    font-size: 1.5rem;
  }
  
  .tech-indicator {
    min-width: 100px;
    padding: 1rem;
  }
  
  .tech-value {
    font-size: 1.5rem;
  }
}

/* ============================================
   ADMIN PANEL
   ============================================ */

.admin-section {
  padding: 6rem 0 4rem;
  min-height: calc(100vh - var(--header-height, 80px));
}

.admin-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.admin-stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.admin-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.3));
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-panel-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.panel-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.panel-actions {
  display: flex;
  gap: 0.75rem;
}

.table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background: rgba(0, 212, 255, 0.1);
}

.admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--glass-border);
}

.admin-table td {
  padding: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.admin-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.active {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-badge.revoked {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.action-btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.revoke-btn {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.revoke-btn:hover {
  background: rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
}

.evidence-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.evidence-item {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.evidence-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.evidence-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .panel-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .admin-table {
    font-size: 0.85rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* ============================================
   ABOUT / CREDIBILITY PAGE
   ============================================ */

.about-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.patent-banner-large {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.patent-banner-large .patent-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.5));
}

.patent-content {
  flex: 1;
}

.patent-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.patent-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.patent-number strong {
  color: #ffd700;
}

.patent-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-section {
  padding: 5rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.credibility-section {
  padding: 5rem 0;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.credibility-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7);
  z-index: 0;
}

.credibility-section .container {
  position: relative;
  z-index: 1;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.credibility-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.credibility-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 15px 45px rgba(0, 212, 255, 0.2);
}

.credibility-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.4));
}

.credibility-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.credibility-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-section {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  color: var(--primary-cyan);
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .patent-banner-large {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .patent-banner-large .patent-icon {
    font-size: 3rem;
  }
  
  .about-card {
    padding: 2rem 1.5rem;
  }
  
  .about-card h3 {
    font-size: 1.5rem;
  }
  
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   INVENTION INTEGRITY STAMP
   ============================================ */

.integrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.integrity-item {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
}

.integrity-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.integrity-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 0.5rem;
  word-break: break-all;
}

.integrity-value.hash-value {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.integrity-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .integrity-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GLOBAL SAAS TRUST LAYER (FOOTER)
   ============================================ */

.trust-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.trust-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 5px rgba(0, 212, 255, 0.3));
}

.trust-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .trust-layer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-badge {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   INVENTION TIMESTAMP PAGE
   ============================================ */

.timestamp-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.timestamp-section {
  padding: 5rem 0;
}

.timestamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.timestamp-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.timestamp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.timestamp-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.4));
}

.timestamp-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.timestamp-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.hash-value {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  word-break: break-all;
}

.timestamp-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.timestamp-hash {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--glass-border);
}

.hash-display-small {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--primary-cyan);
  word-break: break-all;
}

.timestamp-authority-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.timestamp-authority-card h3 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.authority-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.authority-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.authority-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-cyan);
}

.badge-icon {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .timestamp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .timestamp-authority-card {
    padding: 2rem 1.5rem;
  }
  
  .authority-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* System info box (used on some gallery-related pages) */
.system-info-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.info-box-icon {
  font-size: 1.5rem;
}

.info-box-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-box-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
}

.info-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.info-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.info-value.hash-value {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  text-align: right;
  max-width: 200px;
}

@media (max-width: 768px) {
  .info-box-content {
    grid-template-columns: 1fr;
  }
  
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ============================================
   PATENT EVIDENCE MODE
   ============================================ */

.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  transition: background 0.3s;
  border: 1px solid var(--glass-border);
}

.toggle-slider:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-secondary);
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background: white;
}

.toggle-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.evidence-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.evidence-metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffd700;
}

.truth-protection-clause {
  margin: 2rem 0;
}

/* ============================================
   PATENT VERIFICATION PAGE
   ============================================ */

.patent-verification-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.patent-verification-section {
  padding: 5rem 0;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.verification-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.verification-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.verification-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.4));
}

.verification-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.verification-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.verification-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.verification-section-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.verification-section-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hash-display {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  word-break: break-all;
}

.hash-display code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--primary-cyan);
  line-height: 1.8;
}

.hash-code {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--primary-cyan);
  word-break: break-all;
  display: block;
}

.tech-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tech-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.tech-detail-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-detail-value {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-item-verification {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.stat-label-verification {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-value-verification {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verification-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  color: #25D366;
}

.verification-error {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  color: #ff6b6b;
}

.success-icon,
.error-icon {
  font-size: 2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .verification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .verification-section-card {
    padding: 2rem 1.5rem;
  }
  
  .tech-details-grid {
    grid-template-columns: 1fr;
  }
}
