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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

.navbar {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.logo-image {
  height: 40px;
  width: 40px;
  margin-right: 10px;
  object-fit: contain;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2563eb;
}

.cta-button {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-trial {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.hero-trial i {
  color: #fbbf24;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 20px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.app-preview {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.preview-header h3 {
  color: #333;
  font-size: 1.2rem;
}

.status-indicator {
  background: #10b981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.preview-chart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 20px;
}

.chart-placeholder {
  font-size: 3rem;
}

.preview-ai {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.ai-message {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.ai-message i {
  color: #2563eb;
  font-size: 1.2rem;
}

.features {
  padding: 100px 0;
  background: #f8fafc;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

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

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

.how-it-works {
  padding: 100px 0;
  background: white;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

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

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
}

.testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-info h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 5px;
}

.author-info span {
  color: #6b7280;
  font-size: 0.9rem;
}

.download-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.download-content {
  text-align: left;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.download-badge i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.download-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.download-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.download-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.download-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-download {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 20px 30px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  flex: 1;
  max-width: 200px;
}

.btn-download:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-download.primary {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
}

.btn-download.primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-3px) scale(1.02);
}

.btn-download i {
  font-size: 2.5rem;
}

.btn-download div {
  text-align: left;
}

.btn-download span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-download strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.trial-highlight {
  text-align: center;
  margin-bottom: 40px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.trial-badge i {
  font-size: 1.3rem;
}

.trial-highlight p {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.trust-item i {
  color: #10b981;
  font-size: 1.1rem;
}

.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-showcase {
  position: relative;
  width: 300px;
  height: 600px;
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 8px solid #2d2d2d;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.app-preview {
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.preview-header h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 700;
}

.status-indicator {
  background: #10b981;
  color: white;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.preview-chart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 15px;
  margin-bottom: 25px;
}

.chart-placeholder {
  font-size: 4rem;
  color: #2563eb;
}

.preview-ai {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #2563eb;
}

.ai-message {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-weight: 500;
}

.ai-message i {
  color: #2563eb;
  font-size: 1.3rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.floating-card.profit {
  top: 20%;
  right: -20px;
  color: #10b981;
  animation-delay: 0s;
}

.floating-card.alert {
  top: 50%;
  left: -30px;
  color: #f59e0b;
  animation-delay: 1s;
}

.floating-card.analysis {
  bottom: 20%;
  right: -25px;
  color: #2563eb;
  animation-delay: 2s;
}

.floating-card i {
  font-size: 1.2rem;
}

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

.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-logo i {
  margin-right: 10px;
  color: #2563eb;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f9fafb;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #2563eb;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.about-content {
  padding: 100px 0;
  background: white;
}

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

.content-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.content-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 20px;
  color: #1f2937;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

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

.tech-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.tech-visualization {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.ai-brain {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.ai-brain i {
  font-size: 4rem;
  color: #2563eb;
  margin-bottom: 15px;
}

.ai-brain span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
}

.data-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.data-point {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  flex: 1;
  min-width: 120px;
}

.arrow {
  font-size: 1.5rem;
  color: #6b7280;
}

.ai-technology {
  padding: 100px 0;
  background: #f8fafc;
}

.ai-technology h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.tech-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tech-icon i {
  font-size: 2rem;
  color: white;
}

.tech-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.tech-card p {
  color: #6b7280;
  line-height: 1.6;
}

.security-privacy {
  padding: 100px 0;
  background: white;
}

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

.security-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.security-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 40px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.security-item i {
  font-size: 2rem;
  color: #10b981;
  margin-top: 5px;
}

.security-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.security-item p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.security-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-shield {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 60px 40px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.security-shield i {
  font-size: 4rem;
  margin-bottom: 15px;
  display: block;
}

.security-shield span {
  font-size: 1.2rem;
  font-weight: 600;
}

.team-values {
  padding: 100px 0;
  background: #f8fafc;
}

.team-values h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cta-note {
  font-size: 1rem;
  opacity: 0.8;
}

.pricing-section {
  padding: 100px 0;
  background: #f8fafc;
}

.trial-banner {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 60px;
  text-align: center;
}

.trial-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.trial-content i {
  font-size: 3rem;
}

.trial-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trial-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.premium-features {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  text-align: center;
}

.premium-features h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

.premium-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.premium-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.premium-features li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 1.1rem;
}

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

.premium-features i {
  color: #10b981;
  margin-right: 15px;
  font-size: 1.1rem;
}

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

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
}

.period {
  font-size: 1.2rem;
  color: #6b7280;
  margin-left: 5px;
}

.plan-description {
  color: #6b7280;
  font-size: 1.1rem;
}

.plan-features {
  margin-bottom: 30px;
}

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

.plan-features li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.plan-features i {
  color: #10b981;
  margin-right: 15px;
  font-size: 1.1rem;
}

.plan-cta {
  text-align: center;
}

.btn-pricing {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  margin-bottom: 15px;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-pricing.featured {
  background: linear-gradient(135deg, #10b981, #059669);
}

.trial-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.savings {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  margin: 5px 0 0 0;
}

.pricing-faq {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-faq h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

.pricing-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-faq .faq-item {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-faq .faq-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.pricing-faq .faq-item p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Screenshot Gallery */
.screenshot-gallery {
  padding: 80px 0;
  background: #f8fafc;
}

.screenshot-gallery h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #1e293b;
}

.gallery-subtitle {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.gallery-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-screenshot {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 1px solid #e2e8f0;
}

.gallery-caption {
  padding: 30px;
}

.gallery-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e293b;
}

.gallery-caption p {
  color: #64748b;
  line-height: 1.6;
}

/* App Screenshot Styles */
.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.tech-screenshot {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.tech-screenshots {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.screenshot-caption {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 10px;
  font-weight: 500;
}

.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1f2937;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed !important;
    left: -100%;
    top: 70px;
    bottom: 0;
    flex-direction: column;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(16, 185, 129, 0.05) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 50%, #ffffff 100%);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 50px 20px;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
    z-index: 999;
    border-top: 2px solid #cbd5e1;
    opacity: 1 !important;
  }

  .nav-menu.active {
    left: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(16, 185, 129, 0.05) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 50%, #ffffff 100%) !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 18px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 280px;
    color: #374151;
    position: relative;
    overflow: hidden;
  }

  .nav-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(37, 99, 235, 0.1),
      transparent
    );
    transition: left 0.5s;
  }

  .nav-menu a:hover::before {
    left: 100%;
  }

  .nav-menu a:hover {
    background: linear-gradient(
      135deg,
      rgba(37, 99, 235, 0.08),
      rgba(37, 99, 235, 0.12)
    );
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
  }

  .nav-menu .cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    font-weight: 600;
  }

  .nav-menu .cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
  }

  .nav-menu .cta-button::before {
    display: none;
  }

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

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

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

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trial-content {
    flex-direction: column;
    text-align: center;
  }

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

  .pricing-card.featured {
    transform: none;
  }

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

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

  .faq-item {
    padding: 20px;
  }

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

  .pricing-faq .faq-item {
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-section {
    padding: 80px 0;
  }

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

  .download-content {
    text-align: center;
    order: 2;
  }

  .download-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .download-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .download-stats {
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .stat {
    min-width: 80px;
  }

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

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

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .btn-download {
    max-width: 280px;
    width: 100%;
    padding: 18px 25px;
  }

  .btn-download i {
    font-size: 2rem;
  }

  .btn-download div {
    text-align: left;
  }

  .btn-download span {
    font-size: 0.85rem;
  }

  .btn-download strong {
    font-size: 1.1rem;
  }

  .trial-highlight {
    margin-bottom: 30px;
  }

  .trial-badge {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .trial-highlight p {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .download-visual {
    order: 1;
    margin-bottom: 20px;
  }

  .phone-showcase {
    width: 200px;
    height: 400px;
  }

  .floating-card {
    display: none;
  }
}

/* Animation Classes */
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card,
.testimonial,
.faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.animate-in,
.testimonial.animate-in,
.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Lazy Loading */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* Privacy Policy Styles */
.privacy-content {
  padding: 100px 0;
  background: white;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-header {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid #2563eb;
}

.privacy-header p {
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 1.1rem;
}

.privacy-intro {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid #10b981;
}

.privacy-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.privacy-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 15px;
}

.privacy-section h2::before {
  content: counter(section-counter);
  counter-increment: section-counter;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-content {
  counter-reset: section-counter;
}

.privacy-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}

.privacy-section ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.privacy-section li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
}

.privacy-section li::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 1.2rem;
}

.privacy-subsection {
  margin: 30px 0;
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #e5e7eb;
}

.privacy-subsection h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.privacy-subsection p {
  margin-bottom: 15px;
}

.privacy-subsection ul {
  margin: 15px 0;
}

.privacy-subsection li {
  padding: 5px 0 5px 25px;
  font-size: 1rem;
}

.contact-info {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.privacy-section a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.privacy-section a:hover {
  text-decoration: underline;
}

/* FAQ Page Styles */
.faq-content {
  padding: 100px 0;
  background: #f8fafc;
}

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

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-button {
  background: white;
  border: 2px solid #e5e7eb;
  color: #6b7280;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.tab-button:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.tab-button.active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: #2563eb;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.faq-sections {
  position: relative;
}

.faq-section {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.faq-section.active {
  display: block;
}

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

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
  position: relative;
}

.faq-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 2px;
}

.faq-cta {
  background: white;
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.faq-cta p {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.faq-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-cta .btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.faq-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.faq-cta .btn-primary i {
  font-size: 1.2rem;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
  .category-tabs {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .tab-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

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

  .faq-cta {
    padding: 60px 20px;
    margin-top: 60px;
  }

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

  .faq-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .faq-cta .btn-primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Account Deletion Page Styles */
.deletion-content {
  padding: 100px 0;
  background: #f8fafc;
}

.deletion-intro {
  margin-bottom: 80px;
}

.intro-card {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.intro-card i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.intro-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-card p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.deletion-steps {
  margin-bottom: 80px;
}

.deletion-steps h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-left: 4px solid #2563eb;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
  margin-top: 10px;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-content li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: #4b5563;
  font-size: 0.95rem;
}

.step-content li::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 5px;
}

.data-deletion-info {
  margin-bottom: 80px;
}

.data-deletion-info h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

.data-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.data-category {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.data-category.deleted {
  border-left: 4px solid #ef4444;
}

.data-category.retained {
  border-left: 4px solid #f59e0b;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.category-header i {
  font-size: 2rem;
}

.data-category.deleted .category-header i {
  color: #ef4444;
}

.data-category.retained .category-header i {
  color: #f59e0b;
}

.category-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.data-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-category li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #4b5563;
  line-height: 1.6;
  border-bottom: 1px solid #f3f4f6;
}

.data-category li:last-child {
  border-bottom: none;
}

.data-category li::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.retention-periods {
  margin-bottom: 80px;
}

.retention-periods h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

.retention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.retention-item {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.retention-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.retention-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.retention-icon i {
  font-size: 1.5rem;
  color: white;
}

.retention-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.retention-content p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

.important-notes {
  margin-bottom: 80px;
}

.important-notes h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.note-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #e5e7eb;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.note-card.warning {
  border-left-color: #ef4444;
}

.note-card.info {
  border-left-color: #3b82f6;
}

.note-card.security {
  border-left-color: #10b981;
}

.note-card.support {
  border-left-color: #8b5cf6;
}

.note-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.note-card.warning i {
  color: #ef4444;
}

.note-card.info i {
  color: #3b82f6;
}

.note-card.security i {
  color: #10b981;
}

.note-card.support i {
  color: #8b5cf6;
}

.note-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.note-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.deletion-cta {
  margin-top: 80px;
}

.cta-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-delete {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-delete:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-delete i,
.btn-secondary i {
  font-size: 1.2rem;
}

/* Mobile Responsive for Deletion Page */
@media (max-width: 768px) {
  .intro-card {
    padding: 40px 20px;
  }

  .intro-card h2 {
    font-size: 2rem;
  }

  .intro-card p {
    font-size: 1.1rem;
  }

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

  .step-card {
    padding: 30px 20px;
  }

  .data-categories {
    grid-template-columns: 1fr;
  }

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

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

  .cta-card {
    padding: 40px 20px;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-delete,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Performance Optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* Critical CSS for above-the-fold content */
.hero {
  will-change: transform;
}

.navbar {
  will-change: background-color;
}
