/* ============================================
   organizapix - Estilos Principais
   Design: Minimalismo Corporativo
   Cores: Azul #1e40af | Azul #2563eb
   Tipografia: Poppins (títulos) + Inter (corpo)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* === Botões === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover {
  background: #1e40af;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: #1e40af;
  color: #1e40af;
}

.btn-outline:hover {
  background: #eff6ff;
}

.btn-white {
  background: #ffffff;
  color: #1e40af;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-outline-white {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* === Navegação === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1e3a8a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.35);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-logo img {
  max-height: 3rem;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.navbar-menu a:hover {
  color: #dbeafe;
}

.navbar-menu a.btn-primary,
.navbar-menu a.btn-primary:visited,
.navbar-menu a.btn-primary:hover,
.navbar-menu a.btn-primary:focus-visible {
  color: #ffffff;
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1e3a8a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  border-radius: 0.5rem;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.navbar .btn-primary {
  background: #1e3a8a;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.navbar .btn-primary:hover {
  background: #172554;
  border-color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .navbar-menu { display: flex; }
  .navbar-toggle { display: none; }
}

/* === Hero Section === */
.hero {
  padding: 2.75rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 48vw, 560px);
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding-bottom: 7.25rem;
}

.hero-content {
  max-width: 36rem;
}

.hero h1 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #374151;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 1s ease-out 0.1s forwards;
}

.hero-divider {
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 1s ease-out 0.25s forwards;
}

.hero p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hero p.subtitle {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 400;
}

.hero-cta-section {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  padding: 0 0 1.25rem;
}

.hero-cta-section .container {
  display: block;
  max-width: 1180px;
  min-height: 0;
  padding: 0 1rem;
}

.hero-cta-block {
  margin-top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 0.55rem;
  padding: 0.55rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  flex-shrink: 0;
}

.hero-buttons .btn {
  width: 100%;
  max-width: none;
  padding-left: 1rem;
  padding-right: 1rem;
  min-height: 3.6rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.65rem;
}

.hero-buttons .btn-icon {
  width: 1.56rem;
  height: 1.56rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-buttons .btn-icon svg {
  width: 100%;
  height: 100%;
}

.hero-buttons .btn-icon-demo {
  width: 1.62rem;
  height: 1.62rem;
}

.hero-buttons .btn-primary {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.35);
}

.hero-buttons .btn-primary:hover {
  background: #1e40af;
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.45);
}

.hero-buttons .btn-outline {
  background: transparent;
  border-color: #1d4ed8;
  color: #1e3a8a;
}

.hero-buttons .btn-outline:hover {
  background: transparent;
  border-color: #1e40af;
  color: #172554;
}

.hero-cta-text {
  margin: 0;
  flex: 1;
  max-width: none;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0;
  text-align: center;
  color: #4b5563;
  font-size: 1.03rem;
  line-height: 1.4;
  border: none;
  border-radius: 0.7rem;
  background: transparent;
}

@media (max-width: 767px) {
  .hero-cta-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .hero-cta-section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.25rem;
    padding: 0;
  }

  .hero-cta-block {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .hero .container {
    column-gap: 3rem;
    row-gap: 0.5rem;
  }

  .hero-buttons {
    gap: 0.45rem;
    width: auto;
  }

  .hero-buttons .btn {
    width: auto;
    min-height: 4.4rem;
    font-size: 1.15rem;
  }

  .hero-cta-text { font-size: 1.05rem; }
}

@media (max-width: 767px) {
  .hero {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero .container {
    min-height: 0;
    padding-bottom: 1rem;
  }

  .hero h1 {
    font-size: 1.95rem;
  }
}

@media (min-width: 1024px) {
  .hero-buttons { gap: 0.5rem; }

  .hero-cta-text {
    font-size: 1.1rem;
  }
}

.hero-image {
  display: none;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-bg {
  display: none;
}

.hero-image-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-card img {
  height: 30rem;
  width: 100%;
  max-width: 36rem;
  object-fit: contain;
  border-radius: 0.75rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: heroRevealImage 1.2s ease-out 0.3s forwards;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
  }
  .hero h1 { font-size: 2.66rem; }
  .hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.2rem; }
}

/* === Carousel Section === */
.carousel-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.carousel {
  position: relative;
  width: 100%;
  background: #111827;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
  position: relative;
  height: 24rem;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent, transparent);
}

.carousel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  color: #ffffff;
}

@media (max-width: 640px) {
  .carousel-info {
    padding: 1rem 1rem 1.25rem;
  }

  .carousel-info h3 {
    font-size: 1.125rem;
  }

  .carousel-btn {
    display: none;
  }
}

.carousel-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.carousel-info p {
  font-size: 0.875rem;
  color: #d1d5db;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.5);
  width: 0.5rem;
}

.carousel-dot.active {
  background: #ffffff;
  width: 2rem;
}

@media (min-width: 768px) {
  .carousel-inner { height: 31rem; }
  .carousel-info h3 { font-size: 1.875rem; }
  .carousel-info p { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .carousel-inner { height: 37.5rem; }
}

/* === Problems Section === */
.problems {
  padding: 2rem 0 5rem;
  background:
    radial-gradient(circle at 12% 100%, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.6) 28%, rgba(30, 58, 138, 0) 52%),
    linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #60a5fa 100%);
}

.problems .section-header {
  max-width: 72rem;
}

.section-header h2.problems-title-single-line {
  white-space: normal;
  color: #ffffff;
}

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

.problem-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #1d4ed8;
  transition: box-shadow 0.3s;
}

.problem-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.problem-card p {
  color: #374151;
  font-weight: 500;
}

.problem-card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.problem-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #1d4ed8;
}

@media (min-width: 768px) {
  .problems-grid { grid-template-columns: 1fr 1fr; }
}

/* === Solution Section === */
.solution {
  padding: 5rem 0;
}

.solution-content {
  max-width: 56rem;
  margin: 0 auto;
}

.solution h2 {
  font-size: 1.65rem;
  color: #1e40af;
  margin-bottom: 2rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.solution-list li span {
  color: #374151;
}

.solution-placeholder {
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.solution-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: #1d4ed8;
  margin: 0 auto 1rem;
}

.solution-placeholder p {
  color: #6b7280;
}

.solution-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
}

.approved-banks-block {
  margin-top: 2rem;
  border: 2px solid #fb923c;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 1.25rem;
  text-align: center;
}

.approved-banks-block h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 1rem;
}

.approved-banks-block img {
  width: 100%;
  max-width: 875px;
  margin: 0 auto;
  border-radius: 0.5rem;
}

.pie-chart {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    #1d4ed8 0% 60%,
    #3b82f6 60% 80%,
    #60a5fa 80% 90%,
    #dbeafe 90% 100%
  );
  position: relative;
}

.pie-chart::after {
  content: "";
  position: absolute;
  inset: 24%;
  background: #ffffff;
  border-radius: 50%;
}

.chart-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.1rem;
  color: #1e3a8a;
  font-size: 1rem;
  font-weight: 500;
}

.chart-legend li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-color {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-color.vendas { background: #1d4ed8; }
.legend-color.servicos { background: #3b82f6; }
.legend-color.reposicao { background: #60a5fa; }
.legend-color.outras { background: #dbeafe; }

@media (min-width: 768px) {
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution h2 { font-size: 1.98rem; }
}

/* === Mobile App Section === */
.mobile-app {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eff6ff 0%, #eff6ff 100%);
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.mobile-carousel {
  position: relative;
  max-width: 302px;
  margin: 0 auto;
  border-radius: 0.75rem;
  padding: 0.55rem;
  border: 1px solid #dbeafe;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.1);
  overflow: visible;
}

.mobile-carousel-viewport {
  border-radius: 0.5rem;
  overflow: hidden;
}

.mobile-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.mobile-screenshot {
  flex: 0 0 50%;
  width: 50%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.mobile-screenshot.active {
  animation: none;
}

.mobile-screenshot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile-carousel-btn {
  display: none;
}

.mobile-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.mobile-carousel-dot {
  width: 0.45rem;
  height: 0.45rem;
  border: none;
  border-radius: 999px;
  background: #bfdbfe;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-carousel-dot.active {
  width: 1.25rem;
  background: #1d4ed8;
}

.mobile-app-info h2 {
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 1rem;
}

.mobile-app-info > p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list li span {
  color: #374151;
}

.mobile-store-badges {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: end;
}

.mobile-store-badges a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.mobile-store-badges img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 100%;
}

.mobile-store-downloads {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.store-download-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border-radius: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  justify-self: center;
}

.store-link-apple {
  background: #111827;
  color: #ffffff;
}

.store-link-apple:hover {
  background: #0b1220;
}

.store-link-google {
  background: #ffffff;
  color: #1e3a8a;
  border-color: #1d4ed8;
}

.store-link-google:hover {
  background: #f8fbff;
}

.store-qrcode-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.6rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-qrcode-card:hover {
  border-color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.store-qrcode-card img {
  width: 140px;
  height: 140px;
  border-radius: 0.35rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.store-qrcode-card span {
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .mobile-app-grid { grid-template-columns: 1fr 1fr; }
  .mobile-app-info h2 { font-size: 2.25rem; }
  .mobile-carousel {
    max-width: 397px;
  }

  .mobile-store-badges {
    max-width: 520px;
  }

  .mobile-store-downloads {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .mobile-store-badges {
    grid-template-columns: 1fr 1fr;
  }
}

/* === Benefits Section === */
.benefits {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 12% 100%, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.6) 28%, rgba(30, 58, 138, 0) 52%),
    linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #60a5fa 100%);
}

.benefits .section-header h2 {
  color: #ffffff;
}

.benefits .section-header p {
  color: #d1d5db;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  display: flex;
  gap: 0.75rem;
}

.benefit-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #bfdbfe;
}

.benefit-card p {
  color: #374151;
  font-weight: 500;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* === Access Levels Section === */
.access-levels {
  padding: 5rem 0;
  background: #f9fafb;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.access-card {
  background: #1e3a8a;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  text-align: center;
  transition: all 0.3s;
  color: #ffffff;
}

.access-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.access-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: currentColor;
  margin: 0 auto 1rem;
}

.access-card h3 {
  font-size: 1.125rem;
  color: currentColor;
  margin-bottom: 0.5rem;
}

.access-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.access-card:nth-child(1) { background: #1e3a8a; }
.access-card:nth-child(2) { background: #1e40af; }
.access-card:nth-child(3) { background: #1d4ed8; }
.access-card:nth-child(4) {
  background: #1e3a8a;
  color: #ffffff;
}

.access-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .access-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .access-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Audit Section === */
.audit {
  padding: 5rem 0;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.audit-info h2 {
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 1rem;
}

.audit-info > p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .audit-grid { grid-template-columns: 1fr 1fr; }
  .audit-info h2 { font-size: 2.25rem; }
}

/* === FAQ Section === */
.faq {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 12% 100%, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.6) 28%, rgba(30, 58, 138, 0) 52%),
    linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #60a5fa 100%);
}

.faq .section-header h2 {
  color: #ffffff;
}

.faq .section-header p {
  color: #d1d5db;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s;
}

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

.faq-question h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.faq-question .chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #1e40af;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
}

/* === Contact Section === */
.contact {
  padding: 5rem 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-app-image {
  margin-top: 2.75rem;
  text-align: center;
}

.contact-app-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-detail {
  display: flex;
  gap: 1rem;
}

.contact-detail-icon {
  background: #eff6ff;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1e40af;
}

.contact-detail h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: #6b7280;
}

.contact-form-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-info h2 { font-size: 2.25rem; }
}

/* === CTA Section === */
.cta {
  padding: 5rem 0;
  background: linear-gradient(180deg, #172554 0%, #1e3a8a 55%, #1e40af 100%);
  color: #ffffff;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  color: #dcfce7;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.cta-buttons .btn {
  gap: 0.55rem;
}

.cta-buttons .btn-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-buttons .btn-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
  .cta h2 { font-size: 2.25rem; }
}

/* === Footer === */
.footer {
  background: #0f1f52;
  color: #9ca3af;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 300px;
  height: 75px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
}

.footer-links h4 {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid #1e3a8a;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* === Modal === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 0.75rem;
  width: 100%;
  max-width: 28rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.3s ease-out;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.5rem;
  color: #111827;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 0.25rem;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #111827;
}

.modal-body {
  padding: 1.5rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.modal-buttons .btn {
  flex: 1;
}

@media (min-width: 640px) {
  .modal-buttons {
    flex-direction: row;
  }
}

/* === SVG Icons === */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-check {
  color: #2563eb;
}

.icon-check-blue {
  color: #1e40af;
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes heroRevealImage {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* === Toast Notification === */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1e40af;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 200;
  animation: fadeIn 0.3s ease-out;
  display: none;
  font-weight: 500;
}

.toast.active {
  display: block;
}

.toast.error {
  background: #991b1b;
}

@media (max-width: 640px) {
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}




