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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #0f172a;
  color: #fff;
}

/* Hamburger (hidden by default, shown on mobile) */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #23304d;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* stack bars */
  gap: 5px; /* spacing between bars */
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0; /* ensure clean stacking */
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo img {
  height: 60px;
  vertical-align: middle;
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.logo a:hover {
  opacity: 0.8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #4f46e5;
}

.hero {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  color: white;
  padding: 100px 10%;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Vanta Waves Animation for Hero */
#hero-waves {
  position: relative;
  z-index: 1;
}

#hero-waves .hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Vanta Waves Animation for Page Heroes */
#about-waves,
#trust-waves,
#testimonials-waves,
#team-waves,
#faq-waves {
  position: relative;
  z-index: 1;
}

#about-waves .page-hero-content,
#trust-waves .page-hero-content,
#testimonials-waves .page-hero-content,
#team-waves .page-hero-content,
#faq-waves .page-hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

.hero h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  margin-bottom: 30px;
}

.cta-btn {
  background: white;
  color: #4f46e5;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.page-hero {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  color: white;
  padding: 80px 10%;
  text-align: center;
}

.page-hero-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.9;
}

.about, .features {
  padding: 48px 10%;
  background: #f9fafb;
}

.about h2, .features h2 {
  text-align: center;
  margin-bottom: 20px;
}

.why-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-section h3 {
  font-size: 2rem;
  color: #4f46e5;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card h4 {
  color: #4f46e5;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

/* Inquiry form section */
.inquiry-section {
  padding: 48px 10%;
  background: #fff;
}

.inquiry-section h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}

.inquiry-form {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-field { display: flex; flex-direction: column; }
.form-field label { font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  outline: none;
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.15); }
.form-field .hint { color: #6b7280; font-size: 0.85rem; margin-top: 4px; }

.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.form-status { color: #374151; font-size: 0.95rem; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.feature-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature h3 {
  color: #4f46e5;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #4f46e5;
  margin-bottom: 15px;
}

.features-showcase {
  padding: 48px 10%;
  background: #f9fafb;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Vanta Waves Animation for Features Banner */
#features-waves {
  position: relative;
  z-index: 1;
}

#features-waves .page-hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Vanta Waves Animation Container */
#vanta-waves {
  position: relative;
  z-index: 1;
}

#vanta-waves .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin: 20px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.feature-playcard {
  display: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.feature-playcard.active {
  display: block;
  animation: slideIn 0.5s ease-in-out;
}

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

.playcard-content {
  padding: 40px;
  text-align: center;
}

.playcard-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.playcard-content h3 {
  font-size: 1.8rem;
  color: #4f46e5;
  margin-bottom: 15px;
}

.playcard-details {
  margin-top: 20px;
  text-align: left;
}

.playcard-details ul {
  list-style: none;
  padding: 0;
}

.playcard-details li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.playcard-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.carousel-btn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #3730a3;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #4f46e5;
}

.features-grid-section {
  padding: 48px 10%;
  background: #fff;
}

.features-grid-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.trust-section {
  padding: 48px 10%;
  background: #f9fafb;
}

.trust-promise {
  text-align: center;
  margin-bottom: 60px;
}

.trust-promise h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #4f46e5;
  margin-bottom: 20px;
  font-weight: bold;
}

.trust-acronym {
  margin-bottom: 60px;
}

.trust-row-first {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.trust-row-second {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.trust-letter {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.letter-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.letter {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

.letter-content h3 {
  color: #4f46e5;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.letter-content ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.letter-content li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.letter-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

.trust-stats {
  margin-bottom: 60px;
}

.trust-stats h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

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

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4f46e5;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.security-badges {
  text-align: center;
}

.security-badges h2 {
  margin-bottom: 40px;
  color: #333;
}

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

.badge {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
}

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

.badge h4 {
  color: #4f46e5;
  margin-bottom: 10px;
}

.testimonials-section {
  padding: 60px 10%;
  background: #f9fafb;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: slideIn 0.5s ease-in-out;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

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

.quote-icon {
  font-size: 4rem;
  color: #4f46e5;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  font-size: 3rem;
}

.author-info h4 {
  color: #333;
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  margin-bottom: 10px;
}

.rating {
  font-size: 1.2rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.slider-btn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: #3730a3;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.testimonials-stats {
  margin-top: 60px;
}

.testimonials-stats h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

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

.stat-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4f46e5;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section h2 {
  color: #333;
  margin-bottom: 15px;
}

.cta-section p {
  color: #666;
  margin-bottom: 30px;
}

.team-section {
  padding: 48px 10%;
  background: #f9fafb;
}

.team-intro {
  text-align: center;
  margin-bottom: 60px;
}

.team-intro h2 {
  color: #333;
  margin-bottom: 20px;
}

.team-intro p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.team-member {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  margin-bottom: 20px;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.member-info h3 {
  color: #333;
  margin-bottom: 5px;
}

.position {
  color: #4f46e5;
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #3730a3;
}

.team-values {
  margin-bottom: 60px;
}

.team-values h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

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

.value-item {
  background: #fff;
  padding: 24px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.value-item h3 {
  color: #4f46e5;
  margin-bottom: 15px;
}

.join-team {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.join-team h2 {
  color: #333;
  margin-bottom: 15px;
}

.join-team p {
  color: #666;
  margin-bottom: 30px;
}

.open-positions h3 {
  color: #4f46e5;
  margin-bottom: 20px;
}

.positions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.position-item {
  background: #f9fafb;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.position-item h4 {
  color: #333;
  margin-bottom: 5px;
}

.position-item p {
  color: #666;
  font-size: 0.9rem;
}

.no-positions {
  color: #666;
  font-style: italic;
  text-align: center;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.contact-section {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-top: 30px;
}

.contact-section h3 {
  color: #4f46e5;
  margin-bottom: 15px;
}

.contact-section p {
  color: #666;
  margin-bottom: 15px;
}

.email-link {
  display: inline-block;
  background: #4f46e5;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.email-link:hover {
  background: #3730a3;
}

.about-content {
  padding: 48px 10%;
  background: #fff;
}

.about-story {
  margin-bottom: 60px;
}

.about-story h2 {
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.about-story p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.mission, .vision {
  background: #f9fafb;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
}

.mission h3, .vision h3 {
  color: #4f46e5;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.mission p, .vision p {
  color: #666;
  line-height: 1.8;
}

.values {
  text-align: center;
}

.values h2 {
  color: #333;
  margin-bottom: 40px;
}

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

.value-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
  color: #4f46e5;
  margin-bottom: 15px;
}

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

.faq-section {
  padding: 48px 10%;
  background: #f9fafb;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-btn {
  background: #fff;
  border: 2px solid #e5e7eb;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  display: none;
}

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

.faq-category h2 {
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h3 {
  color: #333;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: #4f46e5;
  font-weight: bold;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

.contact-support {
  margin-top: 60px;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-support h2 {
  color: #333;
  margin-bottom: 15px;
}

.contact-support p {
  color: #666;
  margin-bottom: 30px;
}

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

.support-option {
  background: #f9fafb;
  padding: 30px 20px;
  border-radius: 15px;
}

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

.support-option h3 {
  color: #4f46e5;
  margin-bottom: 10px;
}

.support-option p {
  color: #666;
  font-weight: 500;
}


.phone-row {
  display: flex;
  gap: 8px;
}

/* Tablet breakpoint: show two columns for TRUST grid */
@media (max-width: 1024px) {
  .trust-row-first,
  .trust-row-second {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }
  /* Keep logo in one line and scale appropriately */
  .logo img { height: 44px; }
  .logo a span { white-space: nowrap; font-size: 1rem; }
  
  /* Collapse nav into a mobile drawer */
  .hamburger { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .nav-links.open { max-height: 400px; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 5%; }

  
  .hero {
    padding: 60px 5%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .page-hero {
    padding: 60px 5%;
  }
  
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .about, .features, .features-showcase, .trust-section, .testimonials-section, .team-section, .about-content, .faq-section {
    padding: 40px 5%;
  }
  
  .trust-promise h2 {
    font-size: 2.5rem;
  }
  
  .trust-acronym {
    grid-template-columns: 1fr;
  }
  
  .trust-letter {
    flex-direction: column;
    text-align: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .faq-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .category-btn {
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  
  .benefits-grid,
  .features-grid,
  .stats-grid,
  .badges-grid,
  .values-grid,
  .support-options {
    grid-template-columns: 1fr;
  }
  
  /* Mobile breakpoint: TRUST grid stacks to one column with tighter spacing */
  .trust-row-first,
  .trust-row-second {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-letter {
    padding: 20px;
    gap: 16px;
  }

  .letter-circle {
    width: 48px;
    height: 48px;
  }

  .letter {
    font-size: 1.5rem;
  }

  .letter-content h3 {
    font-size: 1.1rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
}

footer {
  background: #0f172a;
  color: #fff;
  padding: 20px 10%;
  text-align: center;
}

/* --- Scroll reveal utility --- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Aurora ribbon overlay for banners --- */
.aurora {
  position: relative;
  isolation: isolate;
}

.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background: conic-gradient(from 180deg at 50% 50%, rgba(79,70,229,0.0), rgba(34,211,238,0.16), rgba(244,114,182,0.12), rgba(147,51,234,0.18), rgba(79,70,229,0.0));
  filter: blur(40px);
  transform: translate3d(0,0,0);
  animation: auroraDrift 18s linear infinite;
  pointer-events: none;
}

.aurora::after {
  animation-duration: 24s;
  animation-direction: reverse;
  opacity: 0.7;
}

@keyframes auroraDrift {
  0% { transform: translateY(-2%) rotate(0deg) scale(1.05); }
  50% { transform: translateY(2%) rotate(180deg) scale(1.0); }
  100% { transform: translateY(-2%) rotate(360deg) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora::before,
  .aurora::after {
    animation: none;
  }
}

/* --- Subtle animated gradients and floating shapes utilities --- */
.animated-gradient {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #4f46e5, #9333ea, #4f46e5);
  background-size: 200% 200%;
  animation: gradientShift 12s ease-in-out infinite;
}

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

.floating-shapes {
  position: relative;
  overflow: hidden;
}

.floating-shapes::before,
.floating-shapes::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 50vmin;
  height: 50vmin;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
}

.floating-shapes::before {
  background: radial-gradient(circle at 30% 30%, #ffffff66, transparent 60%), radial-gradient(circle at 70% 70%, #a78bfa66, transparent 60%);
  top: -15vmin;
  left: -10vmin;
  animation: floatA 18s ease-in-out infinite;
}

.floating-shapes::after {
  background: radial-gradient(circle at 70% 30%, #22d3ee66, transparent 60%), radial-gradient(circle at 40% 80%, #f472b666, transparent 60%);
  bottom: -20vmin;
  right: -10vmin;
  animation: floatB 22s ease-in-out infinite;
}

@keyframes floatA {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -10px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatB {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 15px) scale(0.98); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .animated-gradient {
    animation: none;
    background-size: cover;
  }
  .floating-shapes::before,
  .floating-shapes::after {
    animation: none;
    display: none;
  }
}