/* ============================================
   Organiza PIx - Estilos Principais
   Design: Minimalismo Corporativo
   Cores: Azul #1e40af | Verde #10b981
   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: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
  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: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.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: #4b5563;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.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: #1f2937;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #4b5563;
  font-weight: 500;
  border-radius: 0.5rem;
}

.mobile-menu a:hover {
  background: #f3f4f6;
  color: #1e40af;
}

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

/* === Hero Section === */
.hero {
  padding: 2.75rem 0 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 50%, #ffffff 100%);
}

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

.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, #10b981, #16a34a);
  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-block {
  margin-top: 0;
  background: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.35rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 1s ease-out 0.4s forwards;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.hero-buttons .btn {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  min-height: 4.4rem;
  border-radius: 0.7rem;
  font-size: 1.15rem;
  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: linear-gradient(135deg, #15803d, #16a34a);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.28);
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #166534, #15803d);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

.hero-buttons .btn-outline {
  background: transparent;
  border-color: #16a34a;
  color: #166534;
}

.hero-buttons .btn-outline:hover {
  background: transparent;
  border-color: #15803d;
  color: #14532d;
}

.hero-cta-text {
  margin: 0;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
  border: none;
  border-radius: 0.7rem;
  background: #ffffff;
}

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

@media (min-width: 768px) {
  .hero .container {
    column-gap: 3rem;
    row-gap: 0.5rem;
  }

  .hero-cta-block {
    grid-column: 1 / -1;
  }

  .hero-buttons {
    grid-template-columns: 280px 1fr 280px;
    align-items: stretch;
    gap: 0.45rem;
  }

  .hero-cta-text {
    font-size: 1.05rem;
    justify-content: center;
    text-align: center;
  }
}

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

  .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; }
}

/* === Social Proof === */
.social-proof {
  padding: 3.5rem 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.proof-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.proof-header p {
  color: #374151;
  font-weight: 600;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.metric-card h3 {
  color: #1e3a8a;
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.metric-card p {
  color: #4b5563;
  font-size: 0.9rem;
}

.proof-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.segment-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.segment-card h3 {
  color: #1d4ed8;
  font-size: 1rem;
  margin-bottom: 0;
}

.segment-card p {
  color: #475569;
  font-size: 0.86rem;
  margin: 0;
}

.segment-card-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.segment-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .proof-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .proof-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* === Carousel Section === */
.carousel-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ecfdf5 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;
}

.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: 5rem 0;
  background: #f9fafb;
}

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

.problems-title-single-line {
  white-space: nowrap;
}

.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 #2563eb;
  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: #2563eb;
}

@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: #1e40af;
  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;
}

.key-support-card {
  margin-top: 1rem;
  border: none;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 45%, #f0f9ff 100%);
  border-radius: 0.9rem;
  padding: 1.15rem;
  text-align: center;
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.14);
}

.key-support-card h3 {
  color: #1e3a8a;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.key-support-card p {
  color: #475569;
  max-width: 780px;
  margin: 0 auto 0.9rem;
}

.key-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.key-type-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  background: #ffffff;
  min-height: 3rem;
  padding: 0.45rem 0.7rem;
  transition: all 0.25s ease;
}

.key-type-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(30, 64, 175, 0.12);
}

.key-type-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.85rem;
}

.key-type-item h4 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1f2937;
}

.pie-chart {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    #16a34a 0% 60%,
    #22c55e 60% 80%,
    #84cc16 80% 90%,
    #bbf7d0 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.dizimo { background: #16a34a; }
.legend-color.oferta { background: #22c55e; }
.legend-color.missao { background: #84cc16; }
.legend-color.outras { background: #bbf7d0; }

@media (min-width: 768px) {
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution h2 { font-size: 1.98rem; }
  .key-support-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .key-support-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* === Mobile App Section === */
.mobile-app {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ecfdf5 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;
}

@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;
  }
}

/* === Benefits Section === */
.benefits {
  padding: 5rem 0;
}

.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;
}

/* === How It Works === */
.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 2rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.45rem;
}

.step-card p {
  color: #4b5563;
}

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

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-cta {
    flex-direction: row;
    justify-content: center;
  }
}

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

.access-card {
  background: #2f4f93;
  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: #2f4f93; }
.access-card:nth-child(2) { background: #1f4a82; }
.access-card:nth-child(3) { background: #355f97; }
.access-card:nth-child(4) {
  background: #9aa5b1;
  color: #1f2937;
}

.access-card:nth-child(4) p {
  color: #374151;
}

@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: #f9fafb;
}

.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, #4b5563 0%, #5b6573 55%, #6b7280 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: #bfdbfe;
  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: #111827;
  color: #9ca3af;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 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: #ffffff;
}

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

@media (min-width: 768px) {
  .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;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

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

.icon-check {
  color: #10b981;
}

.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: #065f46;
  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;
}

/* === Mobile Sticky CTA === */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mobile-sticky-cta .btn {
  padding: 0.65rem 0.6rem;
  font-size: 0.84rem;
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 5rem;
  }

  .toast {
    right: 1rem;
    bottom: 5.5rem;
    left: 1rem;
  }
}

/* === Modern Visual Refresh (Bootstrap-aligned) === */
:root {
  --brand-primary: #2563eb;
  --brand-primary-strong: #1d4ed8;
  --brand-accent: #0ea5e9;
  --surface-soft: #f8fafc;
  --surface-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
}

body {
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 35%, #f8fbff 100%);
}

.navbar {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #dbeafe;
}

.btn {
  border-radius: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-strong), var(--brand-primary));
}

.btn-outline {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-outline:hover {
  background: #eff6ff;
  color: var(--brand-primary-strong);
}

.social-proof,
.problems,
.how-it-works,
.access-levels,
.faq {
  background: var(--surface-soft);
}

.metric-card,
.problem-card,
.benefit-card,
.step-card,
.access-card,
.contact-form-card,
.faq-item {
  background: var(--surface-card);
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.metric-card:hover,
.problem-card:hover,
.benefit-card:hover,
.step-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.section-header h2,
.cta h2,
.contact-info h2,
.audit-info h2 {
  letter-spacing: -0.02em;
}

.section-header p,
.hero-cta-text,
.contact-info > p,
.audit-info > p,
.faq-answer p {
  color: var(--text-muted);
}
