/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: filter 0.3s ease;
}

.logo:hover .logo-image {
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

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

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 1rem;
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  background: var(--gradient-1);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Phone Mockup */
.phone-mockup {
  background: linear-gradient(145deg, #2d3748, #1a202c);
  border-radius: 2.5rem;
  padding: 1.25rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  position: relative;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 25px;
  background: #1a202c;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.phone-screen {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.app-preview {
  padding: 1.5rem 1rem;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.125rem;
}

.preview-header .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--text-light);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  padding: 1rem;
}

.preview-item {
  aspect-ratio: 1;
  background: var(--gradient-1);
  border-radius: 0.75rem;
  animation: fadeInScale 0.6s ease backwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.preview-item:nth-child(1) {
  animation-delay: 0.1s;
}
.preview-item:nth-child(2) {
  animation-delay: 0.2s;
}
.preview-item:nth-child(3) {
  animation-delay: 0.3s;
}
.preview-item:nth-child(4) {
  animation-delay: 0.4s;
}
.preview-item:nth-child(5) {
  animation-delay: 0.5s;
}
.preview-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Comparison Section */
.comparison {
  padding: 6rem 0;
  background: var(--bg-light);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}

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

.comparison-header {
  background: var(--gradient-1);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.comparison-row {
  transition: background 0.3s ease;
}

.comparison-row:hover {
  background: rgba(99, 102, 241, 0.03);
}

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

.comparison-cell.feature {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  justify-content: flex-start;
}

.comparison-cell.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.brand-logo {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 48;
}

.comparison-cell.check {
  color: var(--success-color);
  font-size: 2rem;
  font-weight: 700;
}

.comparison-cell.cross {
  color: var(--danger-color);
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.7;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

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

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99, 102, 241, 0.1);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  color: var(--primary-color);
  filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
  transition: all 0.3s ease;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--secondary-color);
  filter: drop-shadow(0 6px 12px rgba(139, 92, 246, 0.4));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Why Pixora Section */
.why-pixora {
  padding: 6rem 0;
  background: var(--bg-light);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.375rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.why-point:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.point-icon {
  font-size: 3rem;
  flex-shrink: 0;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
  transition: transform 0.3s ease;
}

.why-point:hover .point-icon {
  transform: scale(1.1);
}

.why-point h4 {
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.why-point p {
  color: var(--text-light);
  line-height: 1.6;
}

.privacy-shield {
  background: var(--gradient-1);
  padding: 5rem 3rem;
  border-radius: 2.5rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.privacy-shield::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: rotateBackground 30s linear infinite;
}

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

.shield-icon {
  font-size: 8rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

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

.privacy-shield p {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Privacy Section */
.privacy {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.privacy-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.privacy-card:hover::before {
  opacity: 0.05;
}

.privacy-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.privacy-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-card h3 .material-symbols-outlined {
  font-size: 2rem;
  color: var(--primary-color);
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 40;
  transition: transform 0.3s ease;
}

.privacy-card:hover h3 .material-symbols-outlined {
  transform: scale(1.1);
}

.privacy-card p {
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Download Section */
.download {
  padding: 6rem 0;
  background: var(--gradient-1);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

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

.download-content h2 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.download-content > p {
  font-size: 1.375rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  color: var(--text-dark);
  padding: 1.25rem 2.5rem;
  border-radius: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

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

.download-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
  transition: transform 0.3s ease;
}

.download-btn:hover .download-icon {
  transform: scale(1.1);
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.download-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.download-store {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
}

.download-note {
  opacity: 0.9;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Alternative Downloads */
.alternative-downloads {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.alt-download-title {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.alt-download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.alt-download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.9375rem;
}

.alt-download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.alt-download-btn.direct-download {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
}

.alt-download-btn.direct-download:hover {
  background: rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.6);
}

.alt-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.download-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.download-info .material-symbols-outlined {
  font-size: 1.25rem;
}

.download-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.download-btn.disabled:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Security Badge */
.security-badge {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.virus-total-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.4);
  padding: 1rem 1.75rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  max-width: 400px;
}

.virus-total-badge:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.badge-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.badge-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.badge-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.badge-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.virus-total-badge:hover .badge-arrow {
  transform: translateX(5px);
  color: white;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--bg-light);
}

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

.faq-item {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.1);
}

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

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 4rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.5),
    transparent
  );
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
}

.footer-logo .logo-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h4 {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .why-content {
    gap: 3rem;
  }
}

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

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 1rem;
  }

  .stat {
    flex: 1;
    min-width: 0;
  }

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

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .comparison-cell {
    padding: 1.25rem 0.75rem;
    font-size: 0.875rem;
  }

  .comparison-cell.feature {
    font-size: 0.9375rem;
  }

  .brand-logo {
    font-size: 2rem;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-text h2 {
    font-size: 2.25rem;
  }

  .alt-download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .alt-download-btn {
    justify-content: center;
  }

  .virus-total-badge {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

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

  .badge-arrow {
    display: none;
  }

  .download-content h2 {
    font-size: 2.25rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .phone-mockup {
    transform: perspective(1000px) rotateY(0deg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .comparison-cell {
    padding: 1rem 0.5rem;
    font-size: 0.8125rem;
  }

  .feature-card,
  .privacy-card,
  .faq-item {
    padding: 1.75rem;
  }
}

/* Additional Improvements */
.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.footer-tagline {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.shield-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Improved hover effects */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

/* Scroll reveal animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-1);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .trust-badges {
    justify-content: center;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .download,
  .footer {
    display: none;
  }
}

/* Accessibility improvements */
.btn:focus,
.download-btn:focus,
a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.btn:focus:not(:focus-visible),
.download-btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 0.5rem 0;
}

.skip-to-main:focus {
  top: 0;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .download,
  .footer,
  .scroll-progress {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: white;
    color: black;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --text-dark: #000000;
    --text-light: #000000;
    --border-color: #000000;
  }

  .btn {
    border: 2px solid currentColor;
  }
}

/* Loading state */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

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

/* Selection styling */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
