* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; line-height: 1.6; color: #222; background: #f8f9fa; }

/* HERO */
.hero { position: relative; height: 100vh; overflow: hidden; color: white; text-align: center; }
.hero-slideshow .slide { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
  object-fit: cover; opacity: 0; transition: opacity 1.8s ease-in-out; 
}
.hero-slideshow .slide.active { opacity: 1; }

.hero-overlay { 
  position: absolute; inset: 0; 
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.8)); 
  display: flex; flex-direction: column; justify-content: center; align-items: center; 
  padding: 0 5%; z-index: 3; 
}

.navbar { 
  position: absolute; top: 0; left: 0; right: 0; 
  background: rgba(0,0,0,0.85); padding: 1.2rem 5%; 
  display: flex; justify-content: space-between; align-items: center; z-index: 10; 
}
.logo { font-size: 1.6rem; font-weight: 700; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; }

.hero-content h1 { 
  font-size: 3.2rem; line-height: 1.15; margin-bottom: 2.5rem; 
  text-shadow: 0 4px 20px rgba(0,0,0,0.9); max-width: 1100px; 
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.signup-btn, .login-btn { 
  padding: 16px 42px; border-radius: 8px; font-size: 1.15rem; font-weight: 600; 
  text-decoration: none; 
}
.signup-btn { background: white; color: black; }
.login-btn { background: #0066ff; color: white; }

/* Ticker */
.ticker-wrapper { background: #0a0a0a; padding: 12px 0; }

/* About, Contact, Auth Pages */
.about-header { 
  height: 50vh; 
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/id/1015/2000/1200'); 
  background-size: cover; display: flex; align-items: center; justify-content: center; 
  color: white; text-align: center; 
}

.about-content, .contact-page, .auth-page { 
  max-width: 1200px; margin: 0 auto; padding: 4rem 5%; 
}
.section { margin-bottom: 5rem; }
.section h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: #007bff; text-align: center; }

.grid, .plans-grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; 
}
.card, .plan-card { 
  background: #f8f9fa; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
}
.plan-btn { 
  display: block; text-align: center; background: #007bff; color: white; 
  padding: 12px; border-radius: 8px; text-decoration: none; margin-top: 1rem; 
}

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.risk { background: #fff3cd; padding: 2rem; border-radius: 12px; text-align: center; color: #856404; }

/* Auth & Contact */
.auth-page { 
  min-height: 80vh; display: flex; align-items: center; justify-content: center; 
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/id/1015/2000/1200'); 
  background-size: cover; 
}
.auth-box { 
  background: white; padding: 3rem; border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); max-width: 420px; width: 100%; 
}
.auth-box h2 { text-align: center; margin-bottom: 2rem; color: #007bff; }
.auth-box input, .auth-box textarea { 
  width: 100%; padding: 14px; margin: 10px 0; border: 1px solid #ddd; 
  border-radius: 8px; font-size: 1rem; 
}
.auth-box button { 
  width: 100%; padding: 16px; background: #0066ff; color: white; border: none; 
  border-radius: 8px; font-size: 1.1rem; cursor: pointer; margin-top: 10px; 
}

.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h1 { font-size: 2.8rem; margin-bottom: 1rem; color: #007bff; }
.contact-form { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px; margin: 10px 0; border: 1px solid #ddd; border-radius: 8px; }
.contact-form button { width: 100%; padding: 16px; background: #0066ff; color: white; border: none; border-radius: 8px; cursor: pointer; }

footer { 
  background: #111; color: #aaa; text-align: center; padding: 2.5rem 5%; font-size: 0.95rem; 
}
footer a { color: #00aaff; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.4rem; }
  .nav-links { gap: 1rem; font-size: 0.95rem; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
}
/* Homepage Additional Sections */
.home-section {
  padding: 4rem 5%;
  background: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.home-section .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.home-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.home-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

.why-choose {
  background: white;
}

.why-choose .cta {
  margin-top: 2rem;
}

/* Keep your existing hero, navbar, ticker, about, contact, auth styles */
/* Homepage Additional Sections */
.home-section {
  padding: 4rem 5%;
  background: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.home-section .icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.home-section h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.home-section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

.why-choose {
  background: white;
}

.why-choose .cta {
  margin-top: 2rem;
}/* Homepage Sections */
.home-section {
  padding: 4rem 5%;
  background: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.home-section .icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.home-section h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.home-section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

.why-choose {
  background: white;
}

.why-choose .cta {
  margin-top: 2rem;
}

/* Testimonials */
.testimonials-section {
  padding: 4rem 5%;
  background: white;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #007bff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Licenses */
.licenses-page {
  padding: 6rem 5% 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.licenses-page h1, .licenses-page h2 {
  color: #007bff;
  margin-bottom: 1.5rem;
}

.license-card {
  background: #f8f9fa;
  padding: 2rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  border-left: 5px solid #007bff;
}/* Homepage Additional Sections */
.home-section {
  padding: 4rem 5%;
  background: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.home-section .icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.home-section h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.home-section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

.why-choose {
  background: white;
}

.why-choose .cta {
  margin-top: 2rem;
}

/* Testimonials */
.testimonials-section {
  padding: 4rem 5%;
  background: white;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #007bff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
}/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
}

/* Homepage Sections */
.home-section {
  padding: 4rem 5%;
  background: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.home-section .icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.home-section h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.home-section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
}

.why-choose {
  background: white;
}

.why-choose .cta {
  margin-top: 2rem;
}

/* Testimonials */
.testimonials-section {
  padding: 4rem 5%;
  background: white;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #007bff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
}
/* Improved Hero for Mobile */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 3;
}

.hero-content {
  z-index: 4;
  text-align: center;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-btn, .login-btn {
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 140px;
}

.signup-btn { background: white; color: black; }
.login-btn { background: #0066ff; color: white; }

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .nav-links {
    gap: 1rem;
    font-size: 0.95rem;
  }
}/* Mobile-Optimized Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 3;
}

.hero-content {
  z-index: 4;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-btn, .login-btn {
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 140px;
}

.signup-btn { background: white; color: black; }
.login-btn { background: #0066ff; color: white; }

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .nav-links {
    gap: 0.8rem;
    font-size: 0.9rem;
  }
}/* Mobile-First Hero Fix */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 3;
}

.hero-content {
  z-index: 4;
  max-width: 90%;
  padding-top: 60px; /* space for navbar */
}

.hero-content h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-btn, .login-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 130px;
}

.signup-btn { background: white; color: black; }
.login-btn { background: #0066ff; color: white; }

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.85rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .nav-links {
    gap: 0.8rem;
    font-size: 0.85rem;
  }
}/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  padding: 1rem 5%;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
  }
}

/* Rest of your styles (hero, sections, testimonials, etc.) remain the same */
/* Mobile-First Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.95));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 5% 40px;
  z-index: 3;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-btn, .login-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 130px;
}

.signup-btn { background: white; color: black; }
.login-btn { background: #0066ff; color: white; }

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 1rem 5%;
  }
  .nav-links.active {
    display: flex;
  }
  .hero-content h1 {
    font-size: 1.85rem;
  }
  /* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.65rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

/* Hero */
.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 3;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 70px; 
    left: 0; 
    width: 100%; 
    background: rgba(0,0,0,0.95); 
    padding: 1rem 5%; 
  }
  .nav-links.active { display: flex; }
  .hero-content h1 { font-size: 2rem; }
}/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

/* Hero */
.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.95));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 3;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.95);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(0,0,0,0.95); padding: 1rem 5%; }
  .nav-links.active { display: flex; }
  .hero-content h1 { font-size: 2rem; }
}