/* Modern, Vibrant & User-Friendly Design */
/* CSS Reset & Compatibility */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  /* Primary Colors - Electric Blue to Purple */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

  /* Vibrant Color Palette */
  --electric-blue: #667eea;
  --neon-purple: #764ba2;
  --hot-pink: #f5576c;
  --cyan-blue: #4facfe;
  --mint-green: #00f2fe;
  --coral-pink: #f093fb;

  /* Background Colors */
  --bg-dark: #0a0e27;
  --bg-darker: #070a1f;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.1);
  --bg-overlay: rgba(10, 14, 39, 0.8);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark: #2d3748;
  --text-accent: #667eea;

  /* Shadows & Effects */
  --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 30px 80px rgba(102, 126, 234, 0.3);
  --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.4);

  /* Border Radius */
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Animations */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: var(--bg-dark);
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(245, 87, 108, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(79, 172, 254, 0.2) 0%,
      transparent 50%
    );
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.7;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Animated Background Particles */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='stars' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='0.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='5' cy='5' r='0.3' fill='rgba(102,126,234,0.2)'/%3E%3Ccircle cx='15' cy='15' r='0.2' fill='rgba(245,87,108,0.2)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23stars)'/%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

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

  50% {
    transform: translateY(-20px);
  }
}

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

/* Header Styles */
.header {
  background: rgba(10, 14, 39, 0.9);
  /* Fallback for browsers without backdrop-filter support */
  background: rgba(10, 14, 39, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-glass);
  width: 100%;
}

.header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  min-height: 64px;
  gap: 20px;
  padding: 0 24px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  width: 160px;
}

.logo-section:hover {
  transform: translateY(-2px);
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: var(--transition-smooth);
}

.logo:hover::before {
  left: 100%;
}

.brand-text {
  font-size: 16px;
  font-weight: 800;
  /* Fallback color for browsers without gradient text support */
  color: #667eea;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
  line-height: 1;
}

.tagline {
  font-size: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1;
}

/* Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.nav-toggle:hover {
  background: var(--bg-glass);
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-gradient);
  margin: 3px 0;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  text-align: center;
  display: block;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
  z-index: -1;
  border-radius: var(--radius-sm);
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 5px rgba(245, 87, 108, 0.5);
  }

  100% {
    box-shadow: 0 0 20px rgba(245, 87, 108, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
  max-width: 600px;
}

.hero-buttons .cta-btn:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

/* Enhanced Animated Shield */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.animated-shield {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.shield-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid transparent;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--electric-blue),
    var(--hot-pink),
    var(--cyan-blue),
    var(--electric-blue)
  );
  padding: 3px;
  animation: rotate 8s linear infinite;
}

.shield-layer::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: var(--bg-dark);
  border-radius: 50%;
}

.shield-layer:nth-child(1) {
  width: 200px;
  height: 200px;
  animation-duration: 8s;
}

.shield-layer:nth-child(2) {
  width: 150px;
  height: 150px;
  animation-duration: 6s;
  animation-direction: reverse;
}

.shield-layer:nth-child(3) {
  width: 100px;
  height: 100px;
  animation-duration: 4s;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Browser Download Buttons */
.cta-btn {
  padding: 18px 30px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-width: 250px;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-smooth);
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.cta-btn.firefox {
  background: linear-gradient(135deg, #ff6b35, #ff8e3c);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-btn.chrome {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
}

.cta-btn.edge {
  background: linear-gradient(135deg, #0078d4, #00bcf2);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 120, 212, 0.4);
}

.browser-icon {
  font-size: 1.4em;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.browser-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-glass);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: var(--transition-slow);
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

/* Showcase Section */
.showcase-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(245, 87, 108, 0.05) 100%
  );
}

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

.showcase-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
}

.hero-image:hover {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-badge {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.showcase-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.showcase-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.tech-feature:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateX(10px);
}

.tech-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

.tech-feature span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  text-align: center;
}

.stats-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

.stat-item {
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Media Coverage Section */
.media-coverage {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.02) 0%,
    rgba(245, 87, 108, 0.02) 100%
  );
}

.media-coverage h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.media-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

.media-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.media-card:hover .media-image img {
  transform: scale(1.05);
}

.media-content {
  padding: 25px;
}

.media-source {
  margin-bottom: 15px;
}

.source-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.source-badge.techradar {
  background: #6b46c1;
  color: white;
}

.source-badge.forbes {
  background: #1f2937;
  color: white;
}

.source-badge.bleeping {
  background: #dc2626;
  color: white;
}

.media-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

.media-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--primary-gradient);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.nav-btn:active {
  transform: translateY(-1px) scale(1.05);
}

/* Mini Hero for other pages */
.mini-hero {
  background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mini-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(102, 126, 234, 0.2) 0%,
    transparent 70%
  );
}

.mini-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.mini-hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* Page Sections */
.page-section {
  margin: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-slow);
}

.page-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-content {
  padding: 60px 0;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 40px;
  text-align: center;
  margin-top: auto;
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-tagline {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Loading Indicator */
.loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.loading-indicator.visible {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--electric-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: var(--shadow-glow);
}

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

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: var(--shadow-glow);
}

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

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

/* Enhanced Notifications */
.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  min-width: 320px;
  max-width: 450px;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--text-dark);
  padding: 20px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2001;
  transform: translateX(500px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.5;
}

.notification.visible {
  transform: translateX(0);
  animation: slideInNotification 0.4s ease-out;
}

@keyframes slideInNotification {
  from {
    transform: translateX(500px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification::before {
  display: none;
}

.notification.success {
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.15),
    rgba(0, 242, 254, 0.15)
  );
  border-color: rgba(79, 172, 254, 0.4);
  color: #ffffff;
}

.notification.success::before {
  content: "✅";
}

.notification.error {
  background: linear-gradient(
    135deg,
    rgba(245, 87, 108, 0.15),
    rgba(240, 147, 251, 0.15)
  );
  border-color: rgba(245, 87, 108, 0.4);
  color: #ffffff;
}

.notification.error::before {
  display: none;
}

.notification.warning {
  background: linear-gradient(
    135deg,
    rgba(255, 185, 0, 0.15),
    rgba(255, 159, 67, 0.15)
  );
  border-color: rgba(255, 185, 0, 0.4);
  color: #ffffff;
}

.notification.warning::before {
  content: "⚠️";
}

.notification.info {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15),
    rgba(118, 75, 162, 0.15)
  );
  border-color: rgba(102, 126, 234, 0.4);
  color: #ffffff;
}

.notification.info::before {
  content: "💡";
}

.notification button {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition-fast);
  margin-left: auto;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Selection */
::selection {
  background: rgba(102, 126, 234, 0.3);
  color: white;
}

::-moz-selection {
  background: rgba(102, 126, 234, 0.3);
  color: white;
}

/* ===============================
   CONTACT PAGE STYLES
   =============================== */

/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-method h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.contact-method p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0 0 5px 0;
}

.contact-method small {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form Container */
.contact-form-container {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Form Rows and Groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  color: #2d3748 !important;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Ensure textarea text is visible */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  color: #2d3748 !important;
}

/* Placeholder text styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0 !important;
  opacity: 1;
}

/* Fix for webkit browsers */
.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  color: #a0aec0 !important;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  color: #a0aec0 !important;
  opacity: 1;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  color: #a0aec0 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

/* Focus visible for keyboard navigation */
.submit-btn:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

/* Hover effects for better interactivity */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd5e0;
  transform: translateY(-1px);
}

/* Smooth transitions for all form elements */
.form-group input,
.form-group select,
.form-group textarea,
.form-icon,
.submit-btn,
.contact-method,
.faq-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Group Animation */
.form-group {
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.form-group:focus-within {
  transform: translateY(-2px);
}

/* Custom placeholder animation */
.form-group input::placeholder,
.form-group textarea::placeholder {
  transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0.5;
  transform: translateY(-2px);
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-card);
}

.btn-loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Submit Button Loading Animation */
.submit-btn.loading {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Form Note */
.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
  text-align: center;
  color: var(--text-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

.faq-item h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 450px;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transform: translateX(500px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.dismiss {
  transform: translateX(500px);
  opacity: 0;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
}

.notification-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-message {
  flex: 1;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.notification.success {
  background: var(--success-gradient);
}

.notification.error {
  background: var(--warning-gradient);
}

.notification.info {
  background: var(--primary-gradient);
}

/* Multiple notifications stacking */
.notification:nth-child(n + 2) {
  margin-top: 10px;
}

/* Loading States */
.form-group input.loading,
.form-group select.loading,
.form-group textarea.loading {
  background: linear-gradient(90deg, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Form Validation */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input.error + .form-icon,
.form-group select.error + .form-icon,
.form-group textarea.error + .form-icon {
  color: #e53e3e;
}

.error-message {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.error-message::before {
  content: "⚠️";
  font-size: 0.9rem;
}

/* Success State */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.form-group input.success + .form-icon,
.form-group select.success + .form-icon,
.form-group textarea.success + .form-icon {
  color: #38a169;
}

/* ===============================
   MOBILE OPTIMIZATIONS
   =============================== */

/* Touch Target Sizes - Minimum 44px for iOS/Android accessibility */
.cta-btn,
.nav-link,
.submit-btn,
.nav-toggle,
.scroll-to-top {
  min-height: 44px;
  min-width: 44px;
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Smooth scrolling for all devices */
html {
  scroll-behavior: smooth;
}

/* Better text rendering on mobile */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Prevent zoom on input focus (iOS) */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
  font-size: 16px;
}

/* Safe area for notched devices */
.header {
  padding-top: env(safe-area-inset-top);
}

.footer {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Better tap highlighting */
a,
button,
.nav-link,
.cta-btn,
.submit-btn {
  -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
}

/* Disable text selection on interactive elements */
.nav-toggle,
.cta-btn,
.submit-btn,
.scroll-to-top {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Better mobile nav animation */
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu overlay */
.main-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}

.main-nav.active::before {
  opacity: 1;
  visibility: visible;
}

/* Improve mobile form inputs */
.form-group input,
.form-group select,
.form-group textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Better mobile card stacking */
@media (max-width: 768px) {
  .glass-card,
  .media-card,
  .feature-card,
  .security-feature {
    margin-bottom: 20px;
  }
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    gap: 40px;
  }

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

  .showcase-content {
    gap: 40px;
  }

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

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

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

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

/* Tablets */
@media (max-width: 768px) {
  .container {
    padding: 0 25px;
  }

  /* Header */
  .header-container {
    padding: 15px 0;
    position: relative;
  }

  .logo-section {
    order: 1;
    z-index: 1001;
  }

  .auth-section {
    order: 2;
    margin-left: auto;
    margin-right: 10px;
    z-index: 1001;
  }

  .nav-toggle {
    order: 3;
    z-index: 1001;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0 30px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--primary-gradient);
    color: white;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

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

  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
  }

  .cta-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }

  /* Showcase Section */
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .showcase-text h3 {
    font-size: 2rem;
  }

  .tech-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Stats Section */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-number {
    font-size: 3rem;
  }

  /* Media Coverage */
  .media-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .media-navigation {
    display: none;
  }

  /* Feature Grids */
  .feature-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card,
  .security-feature {
    padding: 25px;
  }

  /* Team and Values */
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Mini Hero */
  .mini-hero {
    padding: 40px 0;
  }

  .mini-hero h1 {
    font-size: 2.5rem;
  }

  /* Contact Form */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-header h3 {
    font-size: 1.8rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .submit-btn {
    width: 100%;
    max-width: none;
  }

  /* Footer */
  .footer {
    text-align: center;
  }

  /* Scroll to top button */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* Notifications */
  .notification {
    top: 20px;
    right: 20px;
    left: 20px;
    transform: translateY(-100px);
    width: auto;
    max-width: none;
  }

  .notification.show {
    transform: translateY(0);
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  /* Header */
  .header-container {
    padding: 12px 0;
  }

  .logo {
    width: 35px;
    height: 35px;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .tagline {
    font-size: 0.75rem;
  }

  .main-nav {
    width: 100%;
    right: -100%;
    text-align: center;
  }

  .nav-toggle {
    width: 35px;
    height: 35px;
  }

  .nav-toggle .bar {
    height: 2px;
  }

  /* Hero Section */
  .hero {
    padding: 40px 0;
  }

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

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

  .hero-buttons {
    max-width: 300px;
  }

  .cta-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .browser-icon img {
    width: 20px;
    height: 20px;
  }

  /* Showcase */
  .showcase-text h3 {
    font-size: 1.8rem;
  }

  .tech-feature {
    padding: 15px;
    font-size: 0.9rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Cards */
  .glass-card,
  .media-card,
  .feature-card,
  .security-feature,
  .faq-item,
  .team-member,
  .value-item {
    padding: 20px;
  }

  .feature-header h3,
  .security-feature h3 {
    font-size: 1.3rem;
  }

  /* Mini Hero */
  .mini-hero h1 {
    font-size: 2rem;
  }

  .mini-hero p {
    font-size: 1rem;
  }

  /* Contact */
  .contact-method {
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px 14px 45px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  .form-icon {
    left: 15px;
    font-size: 1.1rem;
  }

  .form-header h3 {
    font-size: 1.6rem;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    padding: 30px 0;
  }

  /* Scroll to top */
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  /* Notifications */
  .notification {
    top: 15px;
    right: 15px;
    left: 15px;
    padding: 16px 20px;
  }

  .notification-content {
    gap: 10px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .container {
    padding: 0 15px;
  }

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

  .cta-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px 12px 40px;
  }

  .form-icon {
    left: 12px;
    font-size: 1rem;
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    padding: 30px 0;
  }

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

  .mini-hero {
    padding: 20px 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image,
  .showcase-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.1);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .nav-toggle,
  .scroll-to-top,
  .notification,
  .loading-indicator {
    display: none !important;
  }

  .hero-buttons {
    display: none;
  }

  .main-nav {
    position: static;
    background: none;
  }
}

/* Contact Form Responsive Styles */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-header h3 {
    font-size: 1.8rem;
  }

  .contact_info h2 {
    font-size: 2rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .submit-btn {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .contact-method {
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px 14px 45px;
  }

  .form-icon {
    left: 15px;
    font-size: 1.1rem;
  }

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

  .faq-item {
    padding: 25px;
  }
}

/* Textarea with Character Counter */
.form-group:has(.char-counter) {
  margin-bottom: 40px;
}

/* Fallback for browsers that don't support :has() */
.form-group textarea + .form-icon + .char-counter {
  margin-bottom: 15px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 300px;
  padding-top: 16px;
}

/* Form Icons */
.form-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #a0aec0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
}

.form-group:focus-within .form-icon {
  color: var(--electric-blue);
  transform: translateY(-50%) scale(1.1);
}

.form-group:focus-within label {
  color: var(--electric-blue);
}

/* Textarea Specific Icon Positioning */
.form-group textarea + .form-icon {
  top: 45px;
  transform: translateY(0);
}

.form-group textarea:focus + .form-icon {
  transform: scale(1.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0.5;
  transform: translateY(-2px);
}

/* Disabled Google Button Styles */
.google-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  pointer-events: none;
}

.google-btn:disabled:hover {
  background-color: #cccccc !important;
  transform: none !important;
}

.google-btn:disabled .google-icon {
  opacity: 0.5;
}

/* Disabled Microsoft Button Styles */
.microsoft-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  pointer-events: none;
}

.microsoft-btn:disabled:hover {
  background-color: #cccccc !important;
  transform: none !important;
}

.microsoft-btn:disabled .microsoft-icon {
  opacity: 0.5;
}

/* Enhanced error message styling */
.error-message {
  white-space: pre-line;
  line-height: 1.4;
  max-height: 150px;
  overflow-y: auto;
}

/* Authentication Styles */
.auth-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.auth-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
  font-size: 14px;
  min-width: 100px;
  height: 36px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.auth-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.auth-icon svg {
  width: 16px;
  height: 16px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass);
  padding: 8px 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  color: var(--text-primary);
  font-weight: 500;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logout-btn {
  background: rgba(245, 87, 108, 0.2);
  color: var(--hot-pink);
  border: 1px solid var(--hot-pink);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.logout-btn:hover {
  background: var(--hot-pink);
  color: white;
}

.verify-btn {
  background: rgba(79, 172, 254, 0.2);
  color: var(--cyan-blue);
  border: 1px solid var(--cyan-blue);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-right: 8px;
}

.verify-btn:hover {
  background: var(--cyan-blue);
  color: white;
}

.verification-pending {
  background: rgba(245, 87, 108, 0.1);
  border: 1px solid rgba(245, 87, 108, 0.3);
}

.verification-pending .user-name {
  color: var(--hot-pink);
  font-size: 12px;
}

/* Authentication Modal */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.auth-modal::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.auth-modal-content {
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.95),
    rgba(7, 10, 31, 0.95)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 0;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  position: relative;
  display: flex;
  flex-direction: column;
}

.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition-fast);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.auth-forms {
  padding: 30px 35px 25px;
  flex: 1;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.auth-forms::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.auth-form {
  display: block;
}

.auth-form .form-group {
  margin-bottom: 24px;
  position: relative;
}

.auth-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 13px;
}

.auth-form input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--electric-blue);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-form input::placeholder {
  color: var(--text-muted);
}

.auth-form .form-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-secondary);
  pointer-events: none;
  z-index: 2;
  margin-top: 12px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  margin-top: 8px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
}

.remember-me input[type="checkbox"] {
  width: auto;
  margin: 0;
  padding: 0;
}

.forgot-password {
  color: var(--electric-blue);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.forgot-password:hover {
  color: var(--cyan-blue);
}

.error-message {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(245, 87, 108, 0.15),
    rgba(245, 87, 108, 0.08)
  );
  border: 1px solid rgba(245, 87, 108, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(245, 87, 108, 0.1);
  display: none;
  position: relative;
  overflow: hidden;
}

.error-message::before {
  content: "⚠️";
  font-size: 16px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.error-message:not(:empty) {
  display: block;
  animation: slideInError 0.3s ease-out;
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-submit-btn {
  width: 100%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.auth-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-card);
}

.btn-loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.divider {
  text-align: center;
  margin: 14px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.95),
    rgba(7, 10, 31, 0.95)
  );
  padding: 0 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.google-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.microsoft-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.microsoft-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.microsoft-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

/* On larger screens, show OAuth buttons side by side */
@media (min-width: 480px) {
  .oauth-buttons {
    flex-direction: row;
    gap: 12px;
  }

  .oauth-buttons .google-btn,
  .oauth-buttons .microsoft-btn {
    flex: 1;
    margin-bottom: 0;
  }

  .oauth-buttons .google-btn .btn-text,
  .oauth-buttons .microsoft-btn .btn-text {
    font-size: 14px;
  }
}

/* Back Button Styles */
.back-button-container {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: var(--transition-fast);
  text-decoration: none;
}

.back-button:hover {
  color: var(--electric-blue);
  transform: translateX(-2px);
}

.back-icon {
  font-size: 16px;
  font-weight: bold;
  transition: var(--transition-fast);
}

.back-button:hover .back-icon {
  transform: translateX(-2px);
}

.back-text {
  font-family: inherit;
}

.auth-switch {
  text-align: center;
  color: var(--text-secondary);

  font-size: 14px;
}

.auth-switch a {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.auth-switch a:hover {
  color: var(--cyan-blue);
}

.auth-footer {
  padding: 15px 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--electric-blue);
}

.footer-note {
  color: var(--text-muted);
  font-size: 11px;
  margin: 0;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 500;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-width: 300px;
  box-shadow: var(--shadow-card);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-success {
  background: var(--success-gradient);
}

.notification-error {
  background: var(--warning-gradient);
}

.notification-info {
  background: var(--primary-gradient);
}

.notification button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}

/* Responsive Authentication Styles */
@media (max-width: 768px) {
  .auth-section {
    gap: 10px;
  }

  .auth-btn {
    padding: 6px 12px;
    font-size: 13px;
    min-width: 80px;
    height: 32px;
  }

  .auth-icon {
    width: 16px;
    height: 16px;
  }

  .auth-icon svg {
    width: 14px;
    height: 14px;
  }

  .auth-modal-content {
    margin: 10px;
    max-width: none;
    width: calc(100% - 20px);
    max-height: 85vh;
    overflow: hidden;
  }

  .auth-modal-header,
  .auth-forms {
    padding-left: 20px;
    padding-right: 20px;
  }

  .auth-footer {
    padding: 10px 20px;
  }

  .auth-modal-header {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .auth-forms {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .auth-footer {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .user-name {
    max-width: 80px;
  }

  .notification {
    right: 10px;
    left: 10px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .auth-btn span:not(.auth-icon) {
    display: none;
  }

  .user-profile {
    padding: 6px 10px;
  }

  .user-name {
    display: none;
  }
}

/* Resend Verification Email Button */
.resend-verification-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-top: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.resend-verification-btn::before {
  content: "📧";
  font-size: 16px;
}

.resend-verification-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.resend-verification-btn:active {
  transform: translateY(0);
}

.resend-verification-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===============================
   AUTH MODAL SPACING FIXES
   =============================== */

/* Enhanced Auth Modal Layout */
.auth-modal-content {
  max-width: 440px !important;
  max-height: 95vh !important;
}

.auth-modal-header {
  padding: 30px 35px 25px !important;
}

.auth-forms {
  padding: 30px 35px 35px !important;
}

/* Form Group Spacing */
.auth-form .form-group {
  margin-bottom: 28px !important;
}

.auth-form .form-group:last-of-type {
  margin-bottom: 24px !important;
}

/* Form Options Spacing */
.form-options {
  margin-bottom: 28px !important;
  margin-top: 12px !important;
}

/* Error Message Enhanced Spacing */
.error-message {
  margin-bottom: 28px !important;
  margin-top: 8px !important;
}

/* Auth Submit Button Spacing */
.auth-submit-btn {
  margin-bottom: 24px !important;
}

/* Divider Spacing */
.divider {
  margin: 28px 0 24px 0 !important;
}

/* OAuth Buttons Container Spacing */
.oauth-buttons {
  margin-bottom: 28px !important;
}

/* Individual OAuth Button Spacing */
.oauth-buttons .google-btn,
.oauth-buttons .microsoft-btn {
  margin-bottom: 0 !important;
}

/* Auth Switch Spacing */
.auth-switch {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

/* Back Button Container Spacing */
.back-button-container {
  margin-bottom: 28px !important;
  padding-bottom: 20px !important;
}

/* Auth Footer Spacing */
.auth-footer {
  padding: 25px 35px 30px !important;
}

/* Form Input Enhanced Spacing */
.auth-form input {
  padding: 16px 20px 16px 50px !important;
  margin-bottom: 0 !important;
}

/* Form Label Spacing */
.auth-form label {
  margin-bottom: 10px !important;
  font-size: 14px !important;
}

/* Form Icon Positioning */
.auth-form .form-icon {
  top: 50% !important;
  margin-top: 16px !important;
}

/* Remember Me and Forgot Password Spacing */
.remember-me {
  gap: 12px !important;
}

.forgot-password {
  font-size: 14px !important;
}

/* Enhanced Resend Verification Button */
.resend-verification-btn {
  margin-top: 20px !important;
  width: 100% !important;
  justify-content: center !important;
}

/* Mobile Responsive Spacing */
@media (max-width: 480px) {
  .auth-modal-content {
    margin: 15px !important;
    max-width: none !important;
  }

  .auth-modal-header {
    padding: 25px 25px 20px !important;
  }

  .auth-forms {
    padding: 25px 25px 30px !important;
  }

  .auth-footer {
    padding: 20px 25px 25px !important;
  }

  .form-options {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-start !important;
  }

  .oauth-buttons {
    flex-direction: column !important;
  }

  .oauth-buttons .google-btn,
  .oauth-buttons .microsoft-btn {
    width: 100% !important;
  }
}

/* Enhanced Visual Hierarchy */
.modal-title {
  font-size: 1.9rem !important;
  margin-bottom: 0 !important;
}

/* Improved Close Button */
.close-modal {
  width: 40px !important;
  height: 40px !important;
  font-size: 28px !important;
}

/* Enhanced Form Focus States */
.auth-form input:focus {
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
}

/* Better Button Hierarchy */
.auth-submit-btn {
  font-size: 16px !important;
  padding: 16px 24px !important;
  font-weight: 700 !important;
}

/* OAuth Button Text Sizing */
.oauth-buttons .google-btn .btn-text,
.oauth-buttons .microsoft-btn .btn-text {
  font-size: 15px !important;
}

/* Enhanced Error Message Layout */
.error-message {
  padding: 20px 24px !important;
  border-radius: var(--radius-lg) !important;
}

/* Better Divider Styling */
.divider {
  position: relative !important;
  text-align: center !important;
  font-size: 15px !important;
}

.divider span {
  padding: 0 24px !important;
  font-weight: 500 !important;
}

/* Enhanced Auth Switch */
.auth-switch {
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.auth-switch a {
  font-weight: 600 !important;
}

/* Footer Links Spacing */
.footer-links {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-bottom: 15px !important;
  flex-wrap: wrap !important;
}

.footer-links a {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: var(--transition-fast) !important;
}

.footer-links a:hover {
  color: var(--electric-blue) !important;
}

.footer-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}

/* Smooth Transitions for All Elements */
.auth-form *,
.auth-modal-content *,
.oauth-buttons *,
.error-message,
.back-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Enhanced Hover States */
.auth-form input:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.oauth-buttons .google-btn:hover,
.oauth-buttons .microsoft-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2) !important;
}

/* Perfect Vertical Rhythm */
.auth-form > *:not(:last-child) {
  margin-bottom: 24px !important;
}

.auth-form > .form-group:not(:last-of-type) {
  margin-bottom: 28px !important;
}

.auth-form > .error-message + .auth-submit-btn {
  margin-top: 8px !important;
}

/* Enhanced Loading States */
.auth-submit-btn .btn-loading,
.google-btn .btn-loading,
.microsoft-btn .btn-loading {
  font-size: 15px !important;
}

/* Better Visual Balance */
.auth-modal-content {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}

/* Enhanced Backdrop */
.auth-modal {
  backdrop-filter: blur(15px) !important;
  background: rgba(10, 14, 39, 0.85) !important;
}

/*
 ===============================
   MODERN CONTACT FORM ERROR HANDLING
   =============================== */

/* Compact Field Error Messages */
.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 8px 12px;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(220, 38, 38, 0.05)
  );
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  font-size: 13px;
  color: #dc2626;
  animation: slideInError 0.3s ease-out;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.field-error::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #dc2626;
}

.field-error .error-icon {
  font-size: 14px;
  color: #dc2626;
  flex-shrink: 0;
}

.field-error .error-text {
  font-weight: 500;
  line-height: 1.3;
}

/* Error State for Form Fields */
.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626 !important;
  background: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Valid State for Form Fields */
.form-group input.valid,
.form-group textarea.valid {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Valid State Indicator */
.form-group input.valid::after,
.form-group textarea.valid::after {
  content: "✓";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
}

/* Shake Animation for Errors */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 50px;
  }
}

/* Enhanced Form Field Focus States */
.form-group input:focus,
.form-group textarea:focus {
  outline: none !important;
  border-color: var(--electric-blue) !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15) !important;
  transform: translateY(-1px) !important;
  background: rgba(102, 126, 234, 0.02) !important;
}

/* Improved Form Labels */
.form-group label {
  font-weight: 600 !important;
  color: #374151 !important;
  font-size: 14px !important;
  margin-bottom: 8px !important;
  transition: color 0.3s ease !important;
}

.form-group:has(input.error) label,
.form-group:has(textarea.error) label {
  color: #dc2626 !important;
}

.form-group:has(input.valid) label,
.form-group:has(textarea.valid) label {
  color: #10b981 !important;
}

/* Modern Form Icons */
.form-group .form-icon {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 16px !important;
  color: #9ca3af !important;
  pointer-events: none !important;
  z-index: 2 !important;
  margin-top: 16px !important;
  transition: color 0.3s ease !important;
}

.form-group:has(input.error) .form-icon,
.form-group:has(textarea.error) .form-icon {
  color: #dc2626 !important;
}

.form-group:has(input.valid) .form-icon,
.form-group:has(textarea.valid) .form-icon {
  color: #10b981 !important;
}

.form-group:has(input:focus) .form-icon,
.form-group:has(textarea:focus) .form-icon {
  color: var(--electric-blue) !important;
}

/* Enhanced Submit Button States */
.submit-btn {
  background: var(--primary-gradient) !important;
  color: white !important;
  border: none !important;
  padding: 16px 32px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

.submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.submit-btn:active {
  transform: translateY(0) !important;
}

.submit-btn.loading {
  pointer-events: none !important;
  opacity: 0.8 !important;
}

.submit-btn.loading::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  animation: loading-shimmer 1.5s infinite !important;
}

@keyframes loading-shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Character Counter Enhancements */
.char-counter {
  font-size: 12px !important;
  color: #6b7280 !important;
  margin-top: 6px !important;
  text-align: right !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.char-counter.warning {
  color: #f59e0b !important;
}

.char-counter.limit {
  color: #dc2626 !important;
  font-weight: 600 !important;
}

/* Form Row Responsive Improvements */
.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  margin-bottom: 25px !important;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .field-error {
    font-size: 12px !important;
    padding: 6px 10px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px 14px 45px !important;
    font-size: 16px !important;
    /* Prevents zoom on iOS */
  }
}

/* Success State Animation */
@keyframes successPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.form-group input.valid,
.form-group textarea.valid {
  animation: successPulse 0.6s ease-out !important;
}

/* Modern Tooltip for Additional Help */
.form-group {
  position: relative !important;
}

.form-help {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 16px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #e5e7eb !important;
  color: #6b7280 !important;
  font-size: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: help !important;
  transition: all 0.3s ease !important;
}

.form-help:hover {
  background: var(--electric-blue) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.1) !important;
}

/* Enhanced Form Container */
.contact-form {
  position: relative !important;
}

.contact-form::before {
  content: "" !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: var(--primary-gradient) !important;
  border-radius: calc(var(--radius-xl) + 2px) !important;
  z-index: -1 !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.contact-form:hover::before {
  opacity: 0.1 !important;
}

/* Improved Form Header */
.form-header {
  text-align: center !important;
  margin-bottom: 40px !important;
  position: relative !important;
}

.form-header::after {
  content: "" !important;
  position: absolute !important;
  bottom: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 3px !important;
  background: var(--primary-gradient) !important;
  border-radius: 2px !important;
}

/* Form Footer Enhancements */
.form-footer {
  text-align: center !important;
  margin-top: 30px !important;
}

.form-note {
  margin-top: 15px !important;
  font-size: 14px !important;
  color: #6b7280 !important;
  font-style: italic !important;
}

/* Accessibility Improvements */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.submit-btn:focus-visible {
  outline: 2px solid var(--electric-blue) !important;
  outline-offset: 2px !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .field-error {
    border-width: 2px !important;
    background: rgba(239, 68, 68, 0.2) !important;
  }

  .form-group input.error,
  .form-group textarea.error {
    border-width: 3px !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .field-error,
  .form-group input,
  .form-group textarea,
  .submit-btn {
    animation: none !important;
    transition: none !important;
  }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
  .form-group label {
    color: #e5e7eb !important;
  }

  .form-group input,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
  }
}

/* ===============================COMPACT CONTACT FORM SPACING=============================== */
/* Reduce overall form container padding */
.contact-form-container {
  padding: 20px !important;
}

/* Compact form header */
.form-header {
  text-align: center !important;
  margin-bottom: 25px !important;
}

.form-header h3 {
  font-size: 1.6rem !important;
  margin-bottom: 8px !important;
}

.form-header p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

/* Tighter form row spacing */
.form-row {
  gap: 15px !important;
  margin-bottom: 18px !important;
}

/* Compact form groups */
.form-group {
  margin-bottom: 18px !important;
}

/* Smaller form labels */
.form-group label {
  font-size: 0.85rem !important;
  margin-bottom: 6px !important;
  font-weight: 600 !important;
}

/* Compact form inputs */
.form-group input,
.form-group textarea {
  padding: 12px 16px 12px 42px !important;
  font-size: 0.95rem !important;
  border-width: 1px !important;
}

/* Smaller textarea */
.form-group textarea {
  min-height: 100px !important;
}

/* Compact form icons */
.form-group .form-icon {
  left: 14px !important;
  font-size: 14px !important;
  margin-top: 12px !important;
}

/* Tighter character counter */
.char-counter {
  font-size: 11px !important;
  margin-top: 4px !important;
}

/* Compact error messages */
.field-error {
  padding: 6px 10px !important;
  margin-top: 4px !important;
  font-size: 12px !important;
  border-radius: 6px !important;
}

/* Smaller submit button */
.submit-btn {
  padding: 12px 28px !important;
  font-size: 0.95rem !important;
  margin-top: 15px !important;
}

/* Compact form footer */
.form-footer {
  text-align: center !important;
  margin-top: 20px !important;
}

.form-note {
  margin-top: 10px !important;
  font-size: 12px !important;
}

/* Reduce contact grid gap */
.contact-grid {
  gap: 40px !important;
}

/* Compact contact methods */
.contact-method {
  padding: 18px !important;
  gap: 15px !important;
}

.contact-icon {
  width: 45px !important;
  height: 45px !important;
  font-size: 1.6rem !important;
}

.contact-method h4 {
  font-size: 1.1rem !important;
  margin-bottom: 5px !important;
}

.contact-method p {
  font-size: 0.9rem !important;
  margin-bottom: 3px !important;
}

.contact-method small {
  font-size: 0.8rem !important;
}

/* Mobile responsive compact spacing */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 15px !important;
  }

  .form-header {
    margin-bottom: 20px !important;
  }

  .form-header h3 {
    font-size: 1.4rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
  }

  .form-group {
    margin-bottom: 15px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 14px 10px 38px !important;
    font-size: 16px !important;
    /* Prevents zoom on iOS */
  }

  .form-group textarea {
    min-height: 80px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-method {
    padding: 15px !important;
  }
}

/* Extra compact mode for very tight spacing */
@media (max-width: 480px) {
  .contact-form-container {
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .form-header {
    margin-bottom: 15px !important;
  }

  .form-header h3 {
    font-size: 1.3rem !important;
    margin-bottom: 5px !important;
  }

  .form-header p {
    font-size: 0.85rem !important;
  }

  .form-group {
    margin-bottom: 12px !important;
  }

  .form-group label {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px 12px 8px 35px !important;
  }

  .form-group .form-icon {
    left: 12px !important;
    font-size: 13px !important;
    margin-top: 10px !important;
  }

  .submit-btn {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    width: 100% !important;
  }

  .form-footer {
    margin-top: 15px !important;
  }

  .form-note {
    font-size: 11px !important;
    margin-top: 8px !important;
  }
}

/* Optimize focus states for compact form */
.form-group input:focus,
.form-group textarea:focus {
  transform: translateY(-1px) !important;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.15) !important;
}

/* Compact hover effects */
.form-group input:hover,
.form-group textarea:hover {
  transform: translateY(-0.5px) !important;
}

/* Tighter error state styling */
.form-group input.error,
.form-group textarea.error {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1) !important;
}

/* Compact valid state */
.form-group input.valid,
.form-group textarea.valid {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1) !important;
}

/* Reduce animation distances for compact feel */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-3px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(3px);
  }
}

/* Compact notification positioning */
.notification {
  min-width: 280px !important;
  max-width: 380px !important;
  padding: 15px 20px !important;
  top: 20px !important;
  right: 20px !important;
}

/* Tighter FAQ section if present */
.faq-section {
  margin-top: 40px !important;
}

.faq-grid {
  gap: 20px !important;
}

.faq-item {
  padding: 15px !important;
}

.faq-item h4 {
  font-size: 1rem !important;
  margin-bottom: 8px !important;
}

.faq-item p {
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
}

/* Ensure proper spacing hierarchy */
.contact-section {
  padding: 40px 0 !important;
}

/* Compact mini-hero for contact page */
.mini-hero {
  padding: 60px 0 50px !important;
}

.mini-hero h1 {
  font-size: 2.8rem !important;
  margin-bottom: 15px !important;
}

.mini-hero p {
  font-size: 1.1rem !important;
}

/* Optimize main content spacing */
.main-content {
  padding: 40px 0 !important;
}

/* Ensure form elements stack properly on mobile */
@media (max-width: 640px) {
  .form-row {
    display: block !important;
  }

  .form-row .form-group {
    margin-bottom: 12px !important;
  }

  .form-row .form-group:last-child {
    margin-bottom: 15px !important;
  }
}

/* Fine-tune the overall contact page layout */
.contact-info h2 {
  font-size: 2.2rem !important;
  margin-bottom: 15px !important;
}

.contact-info > p {
  font-size: 1rem !important;
  margin-bottom: 30px !important;
}

.contact-methods {
  gap: 20px !important;
}

/* Ensure consistent spacing throughout */
* {
  box-sizing: border-box !important;
}

/* Override any conflicting margins */
.contact-form * {
  margin: 0 !important;
}

.contact-form .form-group {
  margin-bottom: 18px !important;
}

.contact-form .form-row {
  margin-bottom: 18px !important;
}

.contact-form .form-header {
  margin-bottom: 25px !important;
}

.contact-form .form-footer {
  margin-top: 20px !important;
}

/* Ensure proper visual hierarchy with compact spacing */
.form-group label {
  line-height: 1.2 !important;
}

.form-group input,
.form-group textarea {
  line-height: 1.4 !important;
}

/* Optimize button spacing */
.submit-btn {
  margin-bottom: 0 !important;
}

/* Final spacing adjustments for perfect compact layout */
.contact-form-container::before {
  height: 3px !important;
}

.field-error .error-icon {
  font-size: 12px !important;
}

.field-error .error-text {
  line-height: 1.2 !important;
}

/* ===============================ULTRA-COMPACT EYE-CATCHING CONTACT FORM=============================== */
/* Remove all emoji-related styling and create modern design */
.form-group .form-icon {
  display: none !important;
}

/* Ultra-compact container */
.contact-form-container {
  padding: 16px !important;
  border-radius: 16px !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(102, 126, 234, 0.2) !important;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Gradient border effect */
.contact-form-container::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--primary-gradient) !important;
}

/* Ultra-compact header */
.form-header {
  text-align: center !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1) !important;
}

.form-header h3 {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
  background: var(--primary-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.form-header p {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Ultra-tight form rows */
.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}

/* Compact form groups */
.form-group {
  margin-bottom: 12px !important;
  position: relative !important;
}

/* Modern labels */
.form-group label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #374151 !important;
  margin-bottom: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: block !important;
}

/* Sleek inputs without icons */
.form-group input,
.form-group textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-family: inherit !important;
  background: rgba(255, 255, 255, 0.8) !important;
  color: #1f2937 !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-sizing: border-box !important;
  font-weight: 500 !important;
}

/* Compact textarea */
.form-group textarea {
  min-height: 70px !important;
  resize: vertical !important;
  line-height: 1.4 !important;
}

/* Modern focus states */
.form-group input:focus,
.form-group textarea:focus {
  outline: none !important;
  border-color: var(--electric-blue) !important;
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1),
    0 2px 8px rgba(102, 126, 234, 0.15) !important;
  transform: translateY(-1px) !important;
}

/* Hover effects */
.form-group input:hover,
.form-group textarea:hover {
  border-color: #d1d5db !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}

/* Ultra-compact character counter */
.char-counter {
  font-size: 0.7rem !important;
  color: #9ca3af !important;
  text-align: right !important;
  margin-top: 2px !important;
  font-weight: 500 !important;
}

.char-counter.warning {
  color: #f59e0b !important;
}

.char-counter.limit {
  color: #ef4444 !important;
  font-weight: 600 !important;
}

/* Compact error messages */
.field-error {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-top: 3px !important;
  padding: 4px 8px !important;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(220, 38, 38, 0.05)
  ) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  border-radius: 6px !important;
  font-size: 0.7rem !important;
  color: #dc2626 !important;
  font-weight: 500 !important;
}

.field-error .error-icon {
  font-size: 0.7rem !important;
  color: #dc2626 !important;
}

.field-error .error-text {
  line-height: 1.2 !important;
}

/* Error states */
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Valid states */
.form-group input.valid,
.form-group textarea.valid {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Modern submit button */
.submit-btn {
  width: 100% !important;
  padding: 12px 20px !important;
  background: var(--primary-gradient) !important;
  color: white !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3),
    0 0 0 1px rgba(102, 126, 234, 0.1) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
  overflow: hidden !important;
}

.submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4),
    0 0 0 1px rgba(102, 126, 234, 0.2) !important;
}

.submit-btn:active {
  transform: translateY(0) !important;
}

/* Loading state */
.submit-btn.loading {
  pointer-events: none !important;
  opacity: 0.8 !important;
}

.submit-btn.loading::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  ) !important;
  animation: loading-shimmer 1.5s infinite !important;
}

/* Compact form footer */
.form-footer {
  text-align: center !important;
  margin-top: 12px !important;
}

.form-note {
  margin-top: 6px !important;
  font-size: 0.7rem !important;
  color: #9ca3af !important;
  font-style: italic !important;
}

/* Contact info section styling */
.contact-info h2 {
  font-size: 1.8rem !important;
  margin-bottom: 12px !important;
  color: #1f2937 !important;
}

.contact-info > p {
  font-size: 0.9rem !important;
  color: #6b7280 !important;
  margin-bottom: 20px !important;
  line-height: 1.5 !important;
}

/* Compact contact methods */
.contact-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.contact-method {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px !important;
  background: rgba(102, 126, 234, 0.05) !important;
  border: 1px solid rgba(102, 126, 234, 0.1) !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.contact-method:hover {
  background: rgba(102, 126, 234, 0.1) !important;
  border-color: rgba(102, 126, 234, 0.2) !important;
  transform: translateY(-1px) !important;
}

.contact-icon {
  width: 36px !important;
  height: 36px !important;
  background: var(--primary-gradient) !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  color: white !important;
  flex-shrink: 0 !important;
}

.contact-method h4 {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-bottom: 2px !important;
}

.contact-method p {
  font-size: 0.8rem !important;
  color: #4b5563 !important;
  margin-bottom: 1px !important;
  font-weight: 500 !important;
}

.contact-method small {
  font-size: 0.7rem !important;
  color: #9ca3af !important;
}

/* Responsive ultra-compact design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 12px !important;
  }

  .form-header {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
  }

  .form-header h3 {
    font-size: 1.2rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .form-group {
    margin-bottom: 10px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px 10px !important;
    font-size: 16px !important;
    /* Prevents zoom on iOS */
  }

  .form-group textarea {
    min-height: 60px !important;
  }

  .submit-btn {
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
  }

  .contact-methods {
    gap: 8px !important;
  }

  .contact-method {
    padding: 8px !important;
    gap: 8px !important;
  }

  .contact-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 1rem !important;
  }
}

/* Extra compact for very small screens */
@media (max-width: 480px) {
  .contact-form-container {
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .form-header h3 {
    font-size: 1.1rem !important;
  }

  .form-header p {
    font-size: 0.75rem !important;
  }

  .form-group {
    margin-bottom: 8px !important;
  }

  .form-group label {
    font-size: 0.7rem !important;
    margin-bottom: 2px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 6px 8px !important;
  }

  .submit-btn {
    padding: 8px 12px !important;
  }

  .form-footer {
    margin-top: 8px !important;
  }
}

/* Enhanced animations for eye-catching effect */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
  }
}

.form-group input:focus,
.form-group textarea:focus {
  animation: pulse-border 0.6s ease-out !important;
}

/* Gradient text for labels on focus */
.form-group:has(input:focus) label,
.form-group:has(textarea:focus) label {
  background: var(--primary-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Modern glass effect */
.contact-form-container {
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

/* Subtle hover effect for the entire form */
.contact-form-container:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2),
    0 0 0 1px rgba(102, 126, 234, 0.15) !important;
  transform: translateY(-1px) !important;
}

/* Remove any remaining emoji styling */
.error-icon {
  display: none !important;
}

.field-error {
  padding-left: 8px !important;
}

.field-error .error-text {
  margin-left: 0 !important;
}

/* Clean, modern aesthetic */
* {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Ensure proper stacking */
.contact-form {
  position: relative !important;
  z-index: 1 !important;
}

/* Final polish */
.form-group input,
.form-group textarea {
  border-style: solid !important;
  border-width: 1.5px !important;
}

.submit-btn {
  border: none !important;
  outline: none !important;
}

.submit-btn:focus-visible {
  outline: 2px solid var(--electric-blue) !important;
  outline-offset: 2px !important;
}

/* ====
===========================
   COMPLETE EMOJI REMOVAL & SVG REPLACEMENT
   =============================== */

/* Remove all emoji-based content from CSS */
.error-message::before,
.notification::before,
.notification.success::before,
.notification.error::before,
.notification.warning::before,
.notification.info::before {
  display: none !important;
}

/* Tech badge styling for SVG icons */
.tech-badge {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  background: rgba(102, 126, 234, 0.1) !important;
  border: 1px solid rgba(102, 126, 234, 0.2) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
}

.tech-badge svg {
  color: var(--electric-blue) !important;
  flex-shrink: 0 !important;
}

/* Tech feature styling for SVG icons */
.tech-feature {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  margin-bottom: 12px !important;
}

.tech-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--primary-gradient) !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
}

.tech-icon svg {
  color: white !important;
}

/* Security badge styling */
.security-badge {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(5, 150, 105, 0.08)
  ) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 20px 0 !important;
}

.security-badge svg {
  color: #10b981 !important;
  flex-shrink: 0 !important;
}

/* Security measures styling */
.measure h4 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

.measure h4 svg {
  color: var(--electric-blue) !important;
  flex-shrink: 0 !important;
}

/* Feature card icons */
.feature-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  background: var(--primary-gradient) !important;
  border-radius: 16px !important;
  margin-bottom: 16px !important;
}

.feature-icon.large {
  width: 80px !important;
  height: 80px !important;
  border-radius: 20px !important;
}

.feature-icon svg {
  color: white !important;
}

/* Security feature icons */
.security-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  background: var(--primary-gradient) !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

.security-icon svg {
  color: white !important;
}

/* Member avatar styling */
.member-avatar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 80px !important;
  height: 80px !important;
  background: var(--primary-gradient) !important;
  border-radius: 50% !important;
  margin-bottom: 16px !important;
}

.member-avatar svg {
  color: white !important;
}

/* Value item styling */
.value-item h4 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.value-item h4 svg {
  color: var(--electric-blue) !important;
  flex-shrink: 0 !important;
}

/* Contact method icons */
.contact-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--primary-gradient) !important;
  border-radius: 10px !important;
  flex-shrink: 0 !important;
}

.contact-icon svg {
  color: white !important;
}

/* Notification styling without emojis */
.notification {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 16px 20px !important;
}

.notification-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.notification-icon svg {
  color: currentColor !important;
}

/* Button icon styling */
.btn-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
}

.btn-icon svg {
  color: currentColor !important;
}

/* Auth icon styling */
.auth-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 8px !important;
}

.auth-icon svg {
  color: currentColor !important;
}

/* Success message icon */
.success-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  background: rgba(16, 185, 129, 0.2) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
}

.success-icon svg {
  color: #10b981 !important;
}

/* Clean professional appearance */
.tech-badge,
.security-badge,
.measure h4,
.value-item h4,
.feature-icon,
.security-icon,
.member-avatar,
.contact-icon,
.notification-icon,
.btn-icon,
.auth-icon,
.success-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Hover effects for interactive elements */
.tech-badge:hover,
.contact-method:hover .contact-icon,
.feature-card:hover .feature-icon {
  transform: translateY(-2px) !important;
}

/* Ensure SVG icons are properly sized */
svg {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

/* Remove any remaining emoji styling */
*::before,
*::after {
  font-family: inherit !important;
}

/* Clean notification close button */
.notification-close {
  background: none !important;
  border: none !important;
  color: currentColor !important;
  font-size: 18px !important;
  cursor: pointer !important;
  padding: 4px !important;
  border-radius: 4px !important;
  transition: background-color 0.2s ease !important;
  margin-left: auto !important;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Ensure consistent icon sizing across all components */
.tech-badge svg,
.tech-icon svg,
.security-badge svg,
.measure h4 svg,
.value-item h4 svg {
  width: 18px !important;
  height: 18px !important;
}

.feature-icon svg {
  width: 32px !important;
  height: 32px !important;
}

.feature-icon.large svg {
  width: 40px !important;
  height: 40px !important;
}

.security-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.member-avatar svg {
  width: 40px !important;
  height: 40px !important;
}

.contact-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.notification-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.btn-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.auth-icon svg {
  width: 18px !important;
  height: 18px !important;
}

.success-icon svg {
  width: 14px !important;
  height: 14px !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .tech-badge {
    font-size: 13px !important;
    padding: 6px 10px !important;
  }

  .tech-badge svg {
    width: 16px !important;
    height: 16px !important;
  }

  .feature-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .feature-icon.large {
    width: 60px !important;
    height: 60px !important;
  }

  .member-avatar {
    width: 60px !important;
    height: 60px !important;
  }

  .contact-icon {
    width: 32px !important;
    height: 32px !important;
  }
}

/* Ensure all text content is properly spaced with icons */
.tech-feature span:last-child,
.measure p,
.value-item p {
  flex: 1 !important;
}

/* Professional color scheme for all icons */
.tech-icon,
.feature-icon,
.security-icon,
.member-avatar,
.contact-icon {
  background: var(--primary-gradient) !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

/* Subtle animation for all icon containers */
@keyframes iconPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.feature-icon:hover,
.security-icon:hover,
.contact-icon:hover {
  animation: iconPulse 0.6s ease-in-out !important;
}

/* Final cleanup - ensure no emoji content anywhere */
.error-message::before,
.notification::before,
.resend-verification-btn::before,
.form-icon {
  content: none !important;
  display: none !important;
}

/* Professional appearance for all components */
.tech-badge,
.security-badge,
.feature-card,
.security-feature,
.team-member,
.value-item,
.contact-method {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Ensure proper contrast and readability */
.tech-badge,
.security-badge,
.measure h4,
.value-item h4 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* Clean, modern aesthetic */
* {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/*
 ===============================
   ENHANCED PRIVACY POLICY & FEATURES STYLING
   =============================== */

/* Enhanced Hero Sections */
.privacy-hero,
.features-hero {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 50%,
    rgba(245, 87, 108, 0.1) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before,
.features-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content-enhanced {
  text-align: center;
  position: relative;
  z-index: 2;
}

.privacy-icon-large,
.features-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin: 0 auto 30px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

  50% {
    transform: translateY(-10px);
  }
}

.privacy-icon-large svg,
.features-icon-large svg {
  color: white;
}

.hero-subtitle-enhanced {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.privacy-stats,
.features-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.privacy-stats .stat-item,
.features-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.privacy-stats .stat-number,
.features-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.privacy-stats .stat-label,
.features-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation Cards */
.privacy-nav-container,
.features-nav-container {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-nav-container h2,
.features-nav-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.privacy-nav-grid,
.features-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.nav-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-card:hover::before {
  transform: scaleX(1);
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 12px;
  margin: 0 auto 15px;
}

.nav-icon svg {
  color: white;
}

.nav-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* Enhanced Policy Sections */
.policy-section-enhanced {
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.section-icon svg {
  color: white;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Data Flow Visual */
.data-flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-step {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.step-icon svg {
  color: white;
}

.flow-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--electric-blue);
  font-weight: bold;
}

/* Enhanced Data Type Cards */
.data-types-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.data-type-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.data-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.data-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 87, 108, 0.2);
  border-color: rgba(245, 87, 108, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-header .type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: 12px;
  margin-right: 15px;
}

.card-header .type-icon svg {
  color: white;
}

.card-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.data-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-badge.temporary {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.data-badge.ephemeral {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.data-badge.secure {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--hot-pink);
  font-weight: bold;
  font-size: 1.2rem;
}

.retention-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.retention-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
}

.retention-time {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Zero Knowledge Visual */
.zero-knowledge-visual {
  margin: 40px 0;
}

.zk-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zk-layer {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
}

.zk-layer .layer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin: 0 auto 15px;
}

.zk-layer .layer-icon svg {
  color: white;
}

.zk-layer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.zk-layer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.zk-connection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.encryption-badge {
  padding: 8px 16px;
  background: var(--success-gradient);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Security Guarantees */
.security-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin: 0 auto 15px;
}

.guarantee-icon svg {
  color: white;
}

.guarantee-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

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

.guarantee-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.guarantee-card li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.right-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.right-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--success-gradient);
}

.right-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.right-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--success-gradient);
  border-radius: 12px;
  margin-bottom: 15px;
}

.right-icon svg {
  color: white;
}

.right-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.right-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.5;
}

.right-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.right-status.active {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.right-status.automatic {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.right-status.guaranteed {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Contact Section for Privacy */
.contact-section-privacy {
  margin-top: 60px;
}

.contact-card-privacy {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card-privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.contact-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-methods-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-method-privacy {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-method-privacy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 10px;
}

.method-icon svg {
  color: white;
}

.method-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.method-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.last-updated-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last-updated-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 5px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .privacy-stats,
  .features-stats {
    flex-direction: column;
    gap: 20px;
  }

  .data-flow-visual,
  .zk-diagram {
    flex-direction: column;
    gap: 20px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .data-types-enhanced,
  .security-guarantees,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle-enhanced {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .privacy-hero,
  .features-hero {
    padding: 60px 0;
  }

  .privacy-icon-large,
  .features-icon-large {
    width: 80px;
    height: 80px;
  }

  .privacy-icon-large svg,
  .features-icon-large svg {
    width: 40px;
    height: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .contact-card-privacy {
    padding: 25px;
  }
}

/* Enhanced Privacy Page Styles */
.privacy-hero,
.features-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  overflow: hidden;
  min-height: 80vh;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.privacy-hero::before,
.features-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(102, 126, 234, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(245, 87, 108, 0.2) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 10;
  background: var(--bg-dark);
  padding-top: 60px;
}

.page-section {
  margin-bottom: 80px;
  padding: 0 24px;
}

.privacy-hero-text,
.features-hero-text {
  position: relative;
  z-index: 3;
}

.privacy-badge-hero,
.features-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--electric-blue);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.privacy-title,
.features-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 3;
}

.privacy-subtitle,
.features-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}

.highlight-gradient {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 100px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--electric-blue);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.privacy-visual,
.features-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.privacy-shield {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.privacy-shield svg {
  color: var(--electric-blue);
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
  animation: pulse 2s ease-in-out infinite;
  z-index: 5;
}

.shield-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.promise-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.promise-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

.promise-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.data-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.step-tech {
  background: rgba(102, 126, 234, 0.1);
  color: var(--electric-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--electric-blue);
  font-weight: bold;
}

.feature-tabs {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.feature-list li {
  padding: 8px 0;
  color: var(--text-secondary);
}

.privacy-guarantee {
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.1) 0%,
    rgba(0, 242, 254, 0.1) 100%
  );
  border: 1px solid rgba(79, 172, 254, 0.3);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  color: var(--cyan-blue);
}

.email-demo,
.browser-demo,
.sandbox-demo {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.email-item {
  background: rgba(102, 126, 234, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  margin: 10px 0;
  font-family: monospace;
}

.auto-delete {
  color: var(--hot-pink);
  font-size: 0.9rem;
  margin-top: 15px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.compliance-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.compliance-badge {
  background: var(--accent-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.contact-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 60px auto 40px auto;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--electric-blue);
  font-weight: 500;
  margin: 20px 0;
}

.response-badge {
  background: rgba(0, 242, 254, 0.1);
  color: var(--cyan-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin: 10px 0;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Headers */
.promise-header,
.section-header,
.overview-header,
.tech-header,
.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}

.promise-header h2,
.section-header h2,
.overview-header h2,
.tech-header h2,
.comparison-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.promise-header p,
.section-header p,
.overview-header p,
.tech-header p,
.comparison-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Features Page Styles */
.features-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  overflow: hidden;
}

.features-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(245, 87, 108, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(79, 172, 254, 0.2) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite reverse;
}

.features-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 87, 108, 0.1);
  border: 1px solid rgba(245, 87, 108, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--hot-pink);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.features-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.features-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.feature-highlights {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
}

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

.feature-orbit {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.orbit-item {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit 10s linear infinite;
}

.orbit-2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: orbit 10s linear infinite 2.5s;
}

.orbit-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit 10s linear infinite 5s;
}

.orbit-4 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: orbit 10s linear infinite 7.5s;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(125px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(125px) rotate(-360deg);
  }
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card-modern {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card-modern.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.feature-card-modern.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-header-modern {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-badge {
  background: rgba(102, 126, 234, 0.1);
  color: var(--electric-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.premium-badge {
  background: rgba(245, 87, 108, 0.1);
  color: var(--hot-pink);
}

.feature-content-modern h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-benefits {
  margin: 20px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: var(--text-secondary);
}

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

.feature-demo {
  background: rgba(102, 126, 234, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: var(--radius-sm);
  padding: 15px;
  margin: 20px 0;
  text-align: center;
}

.demo-email {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: 6px;
  margin: 10px 0;
  color: var(--electric-blue);
}

.demo-timer {
  color: var(--hot-pink);
  font-size: 0.9rem;
}

.feature-stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--electric-blue);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.supported-formats,
.enterprise-features {
  margin: 20px 0;
}

.format-list,
.enterprise-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.format,
.enterprise-list span {
  background: rgba(79, 172, 254, 0.1);
  color: var(--cyan-blue);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.try-feature-btn {
  width: 100%;
  background: var(--primary-gradient);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 20px;
}

.try-feature-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.premium-btn {
  background: var(--accent-gradient);
}

.tech-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tech-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tech-spec {
  background: rgba(0, 242, 254, 0.1);
  color: var(--cyan-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
}

.comparison-table {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.comparison-row.header {
  background: rgba(102, 126, 234, 0.1);
  font-weight: 600;
}

.null-void {
  color: var(--electric-blue);
  font-weight: 600;
}

.competitors {
  color: var(--text-muted);
}

.cta-card {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.cta-primary {
  background: white;
  color: var(--electric-blue);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
}

.freedom-icon {
  font-size: 4rem;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .privacy-stats,
  .feature-highlights {
    justify-content: center;
    gap: 20px;
  }

  .data-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

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

  .comparison-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .privacy-hero,
  .features-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .page-section {
    padding: 0 20px;
  }

  .privacy-title,
  .features-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .privacy-subtitle,
  .features-subtitle {
    font-size: 1.1rem;
  }

  .contact-card {
    margin: 40px 20px;
    padding: 30px 20px;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes countToZero {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes countToHundred {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Smooth Scrolling Enhancement */
html {
  scroll-behavior: smooth;
}

/* Enhanced Animations */
.nav-card,
.data-type-card,
.guarantee-card,
.right-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interactive Elements */
.nav-card:active {
  transform: translateY(-2px) scale(0.98);
}

.data-type-card:active,
.guarantee-card:active,
.right-card:active {
  transform: translateY(-1px) scale(0.98);
}

/* Enhanced Focus States */
.nav-card:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 4px;
}

/* Professional Polish */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.policy-section-enhanced,
.features-section-enhanced {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
