/* Password Protection */
.password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.password-modal {
  text-align: center;
  padding: 3rem;
  max-width: 400px;
}

.password-modal h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.password-modal p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.password-modal input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
}

.password-modal input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.password-modal input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.password-modal button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e3a8a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.password-modal button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.password-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 1rem;
  margin-bottom: 0;
  min-height: 1.2rem;
}

/* Advisory Page Styles */

.advisory-page {
  background: #1e3a8a;
}

/* Text Reveal Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
.reveal-delay-5 { animation-delay: 0.5s; }
.reveal-delay-6 { animation-delay: 0.6s; }
.reveal-delay-7 { animation-delay: 0.7s; }
.reveal-delay-8 { animation-delay: 0.8s; }

/* Hero Section */
.advisory-hero {
  padding: 5rem 3rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.advisory-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b00;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

/* Section Base Styles */
.advisory-page section {
  padding: 4rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.advisory-page h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

/* Problems/Solution Section */
.problems-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.problem-card,
.solution-card {
  padding: 2rem;
  border-radius: 8px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-card {
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.problem-card h3,
.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.problem-card h3 {
  color: rgba(255, 255, 255, 0.5);
}

.solution-card h3 {
  color: #ff6b00;
}

.problem-list,
.solution-list {
  list-style: none;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.problem-list li {
  color: rgba(255, 255, 255, 0.7);
}

.solution-list li {
  color: rgba(255, 255, 255, 0.9);
}

.icon-x {
  color: #ff4444;
  font-weight: 600;
}

.icon-check {
  color: #44cc88;
  font-weight: 600;
}

/* Services Section */
.services-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.service-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b00;
  letter-spacing: 0.05em;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Process Section */
.process-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.process-step:hover .step-number {
  background: #ff6b00;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.process-step:hover h4 {
  color: #ff6b00;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 48px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

/* Results Section */
.results-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-card {
  padding: 2rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 8px;
  text-align: center;
}

.result-metric {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b00;
  line-height: 1;
}

.result-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.result-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Brands Section */
.brands-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  overflow: hidden;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  gap: 4rem;
  animation: scroll 35s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 45px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Section */
.cta-section-full {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 5rem 3rem;
}

.cta-section-full h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section-full p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* Advisory Footer */
.advisory-footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid,
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advisory-hero {
    padding: 3rem 1.5rem;
  }

  .advisory-hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .advisory-page section {
    padding: 3rem 1.5rem;
  }

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

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

  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .process-connector {
    width: 100%;
    height: auto;
    transform: rotate(90deg);
    margin: 0;
  }

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

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

  .brands-list {
    gap: 1.5rem 2rem;
  }

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

  .advisory-footer {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .advisory-hero h1 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .advisory-page h2 {
    font-size: 1.6rem;
  }

  .result-metric {
    font-size: 2.5rem;
  }
}
