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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.4), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(78, 205, 196, 0.4), transparent 50%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
}

.badge-icon {
  font-size: 18px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s ease infinite;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary {
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.pricing-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Section */
.section {
  padding: 100px 0;
}

.dark-section {
  background: rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #fff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Value Cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.savings {
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.tab {
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.tab.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Dashboard */
.dashboard {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-box {
  padding: 30px;
  border-radius: 16px;
  border: 2px solid;
}

.stat-box.blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.stat-box.red {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.stat-box.green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 15px;
}

.stat-detail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Alerts */
.alerts-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
}

.alerts-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.alert {
  padding: 20px;
  border-radius: 12px;
  border: 2px solid;
  margin-bottom: 15px;
}

.alert.warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.alert.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.alert.info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.alert-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.alert-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.alert-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.alert-body {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.alert-confidence {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Predictions */
.prediction-panel {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.prediction-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.prediction-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prediction-row {
  display: grid;
  grid-template-columns: 100px 1fr 200px 80px;
  align-items: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  gap: 15px;
}

.pred-day {
  font-weight: 700;
}

.pred-status {
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-align: center;
}

.pred-status.green {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.pred-status.yellow {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.pred-status.red {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.pred-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.pred-conf {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
}

.info-box h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.info-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-size: 14px;
}

/* Scam Section */
.scam-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.scam-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.scam-header p {
  color: rgba(255, 255, 255, 0.6);
}

.scam-savings {
  text-align: right;
}

.savings-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
}

.savings-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.scam-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.scam-stat-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-txt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.scam-alerts {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
}

.scam-alerts h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.scam-alert-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 12px;
}

.scam-type {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 5px;
}

.scam-number {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.scam-reports {
  text-align: right;
}

.scam-reports > div:first-child {
  font-weight: 700;
  margin-bottom: 3px;
}

.time-ago {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.premium-feature {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.pf-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.premium-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.premium-feature p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-enable {
  padding: 14px 32px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enable:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

/* Traffic Section */
.traffic-section {
  margin-bottom: 30px;
}

.traffic-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.route-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.route-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.route-path {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.route-timing {
  font-weight: 700;
  font-size: 1.1rem;
}

.route-status {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.route-status.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.route-status.moderate {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.route-suggestion {
  color: #60a5fa;
  font-size: 14px;
}

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

.traffic-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
}

.traffic-box h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.incident {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.incident:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.incident-type {
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 5px;
  font-size: 14px;
}

.incident-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.incident-impact {
  text-align: right;
  font-size: 12px;
}

.delay {
  color: #f59e0b;
  margin-top: 3px;
}

.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid;
  margin-bottom: 10px;
  font-size: 14px;
}

.time-slot.light {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.time-slot.moderate {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.time-slot.heavy {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.price-period {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  color: #10b981;
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.price-btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-color: transparent;
}

.price-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

/* Impact */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 50px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.impact-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Trust Box */
.trust-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-box h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.trust-point {
  display: flex;
  gap: 20px;
}

.trust-check {
  width: 36px;
  height: 36px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-point h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.trust-point p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .dashboard {
    padding: 25px;
  }
  
  .prediction-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .pred-day,
  .pred-time {
    font-size: 14px;
  }
  
  .scam-header {flex-direction: column;
}
.trust-box {
padding: 30px 20px;
}
.tabs {
justify-content: flex-start;
}
.hero-buttons {
flex-direction: column;
align-items: stretch;
}
.btn-primary,
.btn-secondary {
width: 100%;
}
}
@media (max-width: 640px) {
.alert-header {
flex-direction: column;
gap: 5px;
}
.route-header {
flex-direction: column;
}
.scam-alert-item {
flex-direction: column;
gap: 10px;
}
.scam-reports {
text-align: left;
}
}
