
/* =========================
   Base Styles
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

a {
  text-decoration: none;
}

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


/* =========================
   Header & Navigation
========================= */
header {
  background: linear-gradient(135deg, #2563eb, #020617);
  color: white;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: lightgrey;
}

.brand-name:hover {
  opacity: 0.8;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 25px;
  font-size: 16px;
}

nav a:hover {
  opacity: 0.8;
}




/* ================================
   Mobile Navigation for Nav Menu
=================================== */

/* Mobile menu button (hamburger) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  /* Show hamburger menu on mobile */
  .menu-toggle {
    display: block;
  }
  
  /* Hide regular nav links by default on mobile */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2563eb, #020617);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    display: none;
    z-index: 1000;
  }
  
  /* Show nav when mobile menu is active */
  nav.active {
    display: flex;
  }
  
  /* Style mobile nav links */
  nav a {
    margin: 0;
    padding: 15px 40px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Adjust header for mobile */
  .header-content {
    padding: 10px 20px;
    position: relative;
  }
  
  /* Reduce hero font sizes on mobile */
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero p {
    font-size: 16px;
  }
}

/* For very small phones */
@media (max-width: 480px) {
  .brand-name {
    font-size: 1.2rem;
  }
  
  .hero {
    padding: 40px 15px;
  }
}


/* =========================
   Hero Section
========================= */
.hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2563eb, #020617);
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e2e8f0;
}

.hero p {
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto 30px;
  color: #e2e8f0;
}

.hero small {
  display: block;
  margin-top: 14px;
  color: #cbd5e1;
}


/* =========================
   Buttons
========================= */
.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 15px;
  background: #22c55e;
  color: #022c22;
  border-radius: 8px;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.9;
}


/* =========================
   Layout Helpers
========================= */
.section {
  padding: 20px;
  max-width: 1340px;
  margin: auto;
}

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


/* =========================
   Cards
========================= */
.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
}


/* =========================
   Comparison Table
========================= */
.comparison-section {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.table-responsive {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 25px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table thead th {
  background-color: #1e293b;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

.highlight-column {
  background-color: #2563eb;
  color: white;
}

.highlight-cell {
  color: #2563eb;
  font-weight: 600;
  background-color: #eff6ff;
}

.comparison-table tbody tr:hover {
  background-color: #f1f5f9;
}

@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 15px;
    font-size: 13px;
  }
}


/* =========================
   Video Button
========================= */
.video-button {
  display: inline-flex;
  align-items: center;
  background: #ff0000;
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s, background 0.2s;
}

.video-button:hover {
  background: #cc0000;
  transform: scale(1.05);
}

.play-icon {
  margin-right: 10px;
  font-size: 1.2em;
}


/* =========================
   FAQ Section
========================= */
.faq-section {
  padding: 40px 20px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 10px;
}

.faq-answer p {
  padding: 10px 0 18px;
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}


/* =========================
   Footer
========================= */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 20px 30px;
  margin-top: 60px;
  border-top: 4px solid #2563eb;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact a {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
