/* CSS Variables */
:root {
  /* Variáveis de cores primárias no formato RGB para facilitar opacidade */
  --primary-rgb: 66, 99, 235;
  --success-rgb: 10, 197, 125;

  /* Cores derivadas das RGB */
  --primary-color: rgb(var(--primary-rgb));
  --primary-dark: rgb(51, 78, 194);
  --secondary-dark-color: #00143b;
  --secondary-dark: linear-gradient(135deg, #00143b 0%, #142046 100%);
  --success-color: rgb(var(--success-rgb));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1a2233;
  line-height: 1.6;
}

.landing-page {
  font-family: "Inter", sans-serif;
  color: #1a2233;
  line-height: 1.6;
}

.pricing-page {
  background: var(--secondary-dark);
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #4fc3f7 0%, #7c4dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Outline Button for Hero */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  height: 68px;
  padding: 0 3.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.hero-button {
  width: auto;
  min-width: 220px;
  padding: 0 28px;
  height: 50px;
  font-size: 13px;
  font-weight: 600;
}

.navbar .hero-button {
  width: auto;
  min-width: 210px;
  padding: 0 28px;
  height: 47px;
}

.hero-buttons .hero-button {
  width: auto;
  min-width: 220px;
  max-width: none;
  padding: 0 28px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: var(--secondary-dark);
  color: white;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

/* Hero Fullscreen - First Viewport */
.hero-fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: flex-start;
}

.hero-content-centered {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  gap: 0;
  width: 100%;
  position: relative;
}

/* Scroll Indicator */
.scroll-indicator-wrapper {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce-soft 2s ease-in-out infinite;
  width: 100%;
}

@media (max-width: 768px) {
  .scroll-indicator-wrapper {
    bottom: 2.5rem;
  }
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}

.scroll-mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%,
  100% {
    opacity: 1;
    top: 8px;
  }

  50% {
    opacity: 0.3;
    top: 18px;
  }
}

@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Hero Image Section - Second Viewport */
.hero-image-section {
  background: var(--secondary-dark);
  padding: 4rem 0 3rem;
  position: relative;
}

.hero-image-section .hero-image-modern {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image-section .hero-screenshot {
  width: 100%;
}

.hero-image-section .metrics-grid {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  /* .hero-section min-height removed to allow hero-fullscreen class to work */

  .hero-fullscreen {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .scroll-mouse {
    width: 22px;
    height: 36px;
  }

  .hero-image-section {
    padding: 2rem 0 2rem;
  }

  .hero-image-section .metrics-grid {
    margin-top: 2rem;
  }

  .hero-title-xl {
    font-size: 2.25rem;
  }

  .hero-subtitle-lg {
    font-size: 1rem;
  }

  .hero-buttons-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-xl {
    width: 100%;
    height: 56px;
    padding: 0 2rem;
    font-size: 1rem;
  }

  .cta-subtext-modern {
    flex-direction: row;
    gap: 0.75rem;
    font-size: 0.8rem;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .cta-subtext-modern span {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .btn-outline-white {
    width: 100%;
    height: 56px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 700;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  padding: 1.5rem 4rem;
  margin: 0 auto;
  background: transparent;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-scrolled {
  background: rgba(8, 16, 41, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 4rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex: 0 0 auto;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  height: 42px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a.active-link {
  color: #9db4ff;
}

.nav-links a:hover {
  opacity: 0.8;
}

.auth-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  position: relative;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%);
}

.mobile-menu-toggle.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.login-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.login-btn:hover {
  opacity: 0.8;
}

.signup-btn {
  padding: 0.5rem 1rem;
  background-color: white;
  color: #00143b;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  flex: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.cta-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cta-subtext .check {
  color: #16d089;
  font-weight: 600;
}

.hero-image {
  width: 43%;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
}

/* ===== MODERN HERO STYLES ===== */
.hero-content-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  gap: 2rem;
}

.hero-text-center {
  max-width: 800px;
  margin-top: 3.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #16d089;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title-xl {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-lg {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.hero-buttons-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-xl {
  height: 68px;
  padding: 0 3.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(66, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(66, 99, 235, 0.5);
}

.cta-subtext-modern {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.check-icon {
  color: #16d089;
  font-weight: 700;
}

/* Hero Image Modern */
.hero-image-modern {
  width: 100%;
  max-width: 900px;
  position: relative;
}

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

.hero-screenshot {
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  animation: float 4s ease-in-out infinite;
}

.badge-top-right {
  top: 10%;
  right: -20px;
  animation-delay: 0.5s;
}

.badge-bottom-left {
  bottom: 8%;
  left: -10px;
  animation-delay: 1s;
}

.badge-icon {
  font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  40% {
    transform: rotate(45deg) translateY(8px);
  }

  60% {
    transform: rotate(45deg) translateY(4px);
  }
}

@media (min-width: 1800px) {
  .hero-text-center {
    margin-top: 8.5rem;
    max-width: 1200px;
  }

  .hero-title-xl {
    font-size: 3.9rem;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Features Section */
.features-section {
  background-color: white;
  padding: 5rem 0;
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.feature-card {
  background-color: #f6f9ff;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.feature-link {
  margin-top: auto;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.feature-link:hover {
  color: var(--primary-dark);
}

/* About Section */
.about-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #f6f9ff;
}

.about-content h2 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 700;
}

/* Target Audience Section */
.target-audience-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.target-audience-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 0.75rem;
}

.target-audience-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.audience-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.audience-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2233;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .target-audience-section .section-title {
    font-size: 1.5rem;
  }
}

/* Feature Detail Sections */
.feature-detail-section {
  padding: 5rem 0;
  background-color: white;
  overflow: hidden;
  /* Add this to clip overflow */
}

.bg-light {
  background-color: #f6f9ff;
}

/* Scroll animation styles */
.feature-detail {
  display: flex;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.feature-detail.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-detail-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.feature-detail.animate .feature-detail-content {
  opacity: 1;
  transform: translateX(0);
}

.feature-detail.reverse .feature-detail-content {
  transform: translateX(50px);
}

.feature-detail.reverse.animate .feature-detail-content {
  transform: translateX(0);
}

.feature-detail-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.feature-detail.animate .feature-detail-image {
  opacity: 1;
  transform: translateX(0);
}

.feature-detail.reverse .feature-detail-image {
  transform: translateX(-50px);
}

.feature-detail.reverse.animate .feature-detail-image {
  transform: translateX(0);
}

.feature-detail.reverse {
  flex-direction: row-reverse;
}

.feature-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.feature-description {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0.6rem;
  font-weight: 400;
  font-size: 1.1rem;
}

.feature-detail-image img {
  max-width: 98%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* Pricing Section */
.pricing-section {
  color: #f8fbff;
  background: transparent;
  margin: 0;
  padding: 0;
}

.pricing-gradient {
  background: var(--secondary-dark);
  padding: 0;
  box-shadow: none;
}

.pricing-section .container {
  padding-top: 2rem;
  padding-bottom: 8rem;
  overflow: visible;
}

.pricing-gradient {
  overflow: visible;
}

.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.pricing-header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.pricing-header p {
  color: rgba(235, 239, 255, 0.85);
  font-size: 1.05rem;
}

.eyebrow-text {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.85rem;
  color: rgba(99, 126, 255, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.billing-wrapper {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 27, 64, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.4rem 0.75rem;
  margin: 2.5rem auto 3rem;
  position: relative;
}

.billing-label {
  font-size: 0.95rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color 0.3s ease;
}

.billing-label.active {
  color: #ffffff;
}

.billing-toggle {
  width: 46px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.billing-toggle .toggle-knob {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.billing-toggle.active {
  background: var(--primary-color);
}

.billing-toggle.active .toggle-knob {
  transform: translateX(22px);
}

.discount-pill {
  background: rgba(22, 208, 137, 0.2);
  color: #16d089;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 400px));
  gap: 0.5rem;
  max-width: 2200px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: center;
}

@media (max-width: 1400px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-card {
  background: rgba(8, 16, 41, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 460px;
  position: relative;
}

.plan-card.highlight {
  background: linear-gradient(180deg, #1f2f78 0%, #18225c 100%);
  border: 1px solid rgba(99, 126, 255, 0.6);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 26, 63, 0.45);
}

.plan-card-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.plan-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(22, 208, 137, 0.18);
  color: #16d089;
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.badge-procurado {
  background: linear-gradient(135deg, #16d089 0%, #00b8d4 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(22, 208, 137, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.badge-procurado:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 208, 137, 0.6);
}

.plan-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  white-space: nowrap;
}

.plan-context {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
  word-wrap: break-word;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: -0.75rem;
}

.plan-price .currency {
  font-size: 1.5rem;
}

.plan-price .value {
  font-size: 2.8rem;
  font-weight: 700;
}

.plan-price .period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.billing-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: -1.4rem;
  margin-bottom: 0;
}

.custom-plan-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -0.5rem;
  margin-bottom: 0;
  font-style: italic;
}

.custom-plan-description {
  margin-bottom: 1.5rem;
  margin-top: -0.75rem;
}

.custom-plan-description p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.annual-saving {
  font-size: 0.85rem;
  color: rgba(22, 208, 137, 0.85);
  display: none;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16d089;
}

.plan-btn {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.plan-btn.primary {
  background: white;
  color: #121d4b;
}

.plan-btn.btn-primary {
  background: var(--primary-color);
  color: white;
}

.plan-btn.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.plan-btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.plan-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: #1a2233;
}

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

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

.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a2233;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #6b7280;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  padding-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--secondary-dark);
  color: white;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
  color: white;
}

.cta-section h2 {
  color: white;
}

/* Footer */
.site-footer {
  background: var(--secondary-dark);
  color: white;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 0;
}

.simplified-footer {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  height: 30px;
  margin: 0;
}

.footer-left .social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-left .footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: 2rem;
}

.footer-left .footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-left .footer-legal a:hover {
  color: white;
}

.footer-right {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    justify-content: center;
  }

  .feature-detail {
    flex-direction: column;
    gap: 2rem;
  }

  .feature-detail.reverse {
    flex-direction: column;
  }

  .feature-detail-content,
  .feature-detail-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 0.5rem;
  }

  .floating-badge {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.6rem !important;
    border-radius: 8px !important;
    gap: 0.3rem !important;
  }

  .badge-icon {
    font-size: 0.8rem !important;
  }

  .badge-top-right {
    top: 5% !important;
    right: -10px !important;
  }

  .badge-bottom-left {
    bottom: 5% !important;
    left: -10px !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar {
    position: relative;
    padding: 1rem 1.75rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-scrolled {
    padding: 1rem 1.75rem !important;
  }

  .menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .logo {
    flex-shrink: 0;
    order: 1;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
    order: 2;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    order: 3;
    align-items: flex-start;
  }

  .auth-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.25rem;
    gap: 0.6rem;
    margin-top: 1.25rem;
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    order: 4;
    align-items: center;
  }

  .navbar.menu-open {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: var(--secondary-dark);
    z-index: 1000;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    padding: 1.5rem 1.75rem 4rem 1.75rem;
    gap: 0;
  }

  /* Pricing Grid Mobile */
  .pricing-section .container {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  .billing-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .plan-card {
    padding: 1.5rem !important;
    min-height: auto !important;
  }

  .navbar.menu-open .nav-links,
  .navbar.menu-open .auth-links {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 0;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .auth-links .login-btn {
    padding: 0.85rem 0;
    font-size: 1rem;
    display: block;
    text-align: center;
    width: 100%;
  }

  .auth-links .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .hero-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-buttons .hero-button {
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
  }

  .hero-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 0;
    width: 100%;
    order: 2;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .section-header h2,
  .about-content h2,
  .feature-detail-content h2,
  .cta-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .simplified-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .footer-logo-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }

  .footer-left .footer-legal {
    margin-left: 0;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .footer-right {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .hero-buttons {
    margin-bottom: 2rem;
  }

  .hero-image {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    gap: 0 !important;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.7rem;
  }

  .hero-buttons {
    margin: 0;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
  }

  .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

/* Simulation Page Styles */
.simulation-section {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.simulation-billing-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(16, 27, 64, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.4rem 0.75rem;
  margin: 2rem auto 2.5rem;
  position: relative;
  width: fit-content;
}

.simulation-header {
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #ffffff;
}

.back-link span {
  font-size: 1.2rem;
}

.simulation-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.simulation-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.simulation-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.5rem;
}

.simulation-input-section {
  margin-bottom: 2rem;
}

.input-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.simulation-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.simulation-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.simulation-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.calculation-summary {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculation-summary h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.calculation-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calculation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.calculation-value {
  font-weight: 600;
  color: #ffffff;
}

.calculation-total {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.calculation-total-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.simulation-actions {
  display: flex;
  gap: 1rem;
}

.simulation-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.simulation-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.simulation-btn.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.simulation-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .simulation-section {
    padding: 2rem 0;
  }

  .simulation-header h1 {
    font-size: 2rem;
  }

  .simulation-header p {
    font-size: 1rem;
  }

  .simulation-card {
    padding: 1.5rem;
  }

  .simulation-actions {
    flex-direction: column;
  }

  .calculation-total-value {
    font-size: 1.1rem;
  }

  .hero-image {
    margin: 3.5rem 0 1.5rem 0;
  }

  .hero-image img {
    max-width: 100%;
  }

  .hero-text {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ========================================
   SOCIAL PROOF - Metrics Section
   ======================================== */
.metrics-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.metric-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .metric-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .metrics-section {
    padding: 2rem 0;
  }

  .metrics-grid {
    gap: 1rem;
  }

  .metric-value {
    font-size: 1.75rem;
  }
}

/* ========================================
   SOCIAL PROOF - Testimonials Section
   ======================================== */
.testimonials-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 0.75rem;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating .star {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-text::before {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonial-text::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  color: #1a2233;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-header h2 {
    font-size: 1.75rem;
  }

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

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* ========================================
   PRICING COMPARISON TABLE
   ======================================== */
.comparison-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.comparison-section .section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 2rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  min-width: 700px;
}

.comparison-table thead {
  background: linear-gradient(135deg, #00143b 0%, #142046 100%);
  color: #ffffff;
}

.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table th.feature-col {
  text-align: left;
  width: 25%;
}

.comparison-table th.highlight-col {
  background: rgba(66, 99, 235, 0.3);
}

.comparison-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

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

.comparison-table td {
  padding: 0.875rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #374151;
}

.comparison-table td.feature-name {
  text-align: left;
  font-weight: 500;
  color: #1a2233;
}

.comparison-table td.highlight-col {
  background-color: rgba(66, 99, 235, 0.05);
}

.comparison-table .check {
  color: #16d089;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .dash {
  color: #9ca3af;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 2rem 0;
  }

  .comparison-section .section-title {
    font-size: 1.5rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   EXIT INTENT POPUP
   ======================================== */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.exit-popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.exit-popup {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.2s;
}

.exit-popup-close:hover {
  color: #374151;
}

.exit-popup-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.exit-popup h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 0.5rem;
}

.exit-popup .popup-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.exit-popup .popup-description {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.exit-popup .btn-popup {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.exit-popup .btn-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 99, 235, 0.4);
}

.exit-popup .popup-dismiss {
  display: block;
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.85rem;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}

.exit-popup .popup-dismiss:hover {
  color: #6b7280;
}

@media (max-width: 480px) {
  .exit-popup {
    padding: 2rem 1.5rem;
  }

  .exit-popup h2 {
    font-size: 1.25rem;
  }
}

/* ========================================
   VIDEO DEMO SECTION
   ======================================== */
.video-demo-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}

.video-demo-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 0.5rem;
}

.video-demo-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
  width: 100%;
  display: block;
}

.video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.video-thumbnail:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.video-modal {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.video-modal-close:hover {
  opacity: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .video-demo-section .section-title {
    font-size: 1.5rem;
  }

  .play-button svg {
    width: 60px;
    height: 60px;
  }
}

/* ========================================
   MODERN CTA SECTION
   ======================================== */
.cta-modern {
  padding: 5rem 0;
  text-align: center;
  color: #ffffff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-xl {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  margin-bottom: 2rem;
}

.btn-white {
  background: #ffffff;
  color: #00143b;
  border: none;
  font-weight: 700;
}

.btn-white:hover {
  background: #f0f0f0;
  color: #00143b;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .cta-title-xl {
    font-size: 1.75rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ========================================
   METRICS SIMPLE STYLE
   ======================================== */
.metrics-simple {
  background: transparent;
}

.metric-item-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  gap: 0.5rem;
}

.metric-item-simple .metric-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.metric-item-simple .metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.metric-item-simple .metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FEATURES INTRO SECTION
   ======================================== */
.features-intro-section {
  padding: 4rem 0 2rem;
  background: #ffffff;
  text-align: center;
}

.features-intro-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 0.75rem;
}

.features-intro-section .section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-intro-section .section-title {
    font-size: 1.5rem;
  }
}

/* ========================================
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ======================================== */
@media (max-width: 768px) {
  /* Navbar Mobile */
  .navbar {
    padding: 1rem 1.5rem;
  }

  .logo img {
    height: 32px;
  }

  /* Hero Section Mobile */
  .hero-content-modern {
    padding: 1rem 1.5rem 2rem;
    gap: 1.5rem;
  }

  .hero-title-xl {
    font-size: 1.75rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-subtitle-lg {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    width: 100%;
  }

  .btn-xl {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .cta-subtext-modern {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
  }

  /* Hero Image Mobile - Much Better Presentation */
  .hero-image-modern {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  /* Metrics Section Mobile */
  .metrics-section {
    padding: 2rem 0;
  }

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

  .metric-item-simple {
    padding: 1rem 0.5rem;
  }

  .metric-item-simple .metric-icon {
    font-size: 1.5rem;
  }

  .metric-item-simple .metric-value {
    font-size: 1.5rem;
  }

  .metric-item-simple .metric-label {
    font-size: 0.75rem;
  }

  /* Target Audience Mobile */
  .target-audience-section {
    padding: 3rem 0;
  }

  .target-audience-section .section-title {
    font-size: 1.35rem;
    padding: 0 1rem;
  }

  .target-audience-section .section-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .audience-card {
    padding: 1rem;
  }

  .audience-icon {
    font-size: 2rem;
  }

  .audience-card h3 {
    font-size: 0.85rem;
  }

  /* Features Intro Mobile */
  .features-intro-section {
    padding: 2.5rem 0 1.5rem;
  }

  .features-intro-section .section-title {
    font-size: 1.35rem;
    padding: 0 1rem;
  }

  .features-intro-section .section-subtitle {
    font-size: 0.9rem;
    padding: 0 1.5rem;
  }

  /* Feature Detail Sections Mobile */
  .feature-detail-section {
    padding: 3rem 0;
  }

  .feature-detail {
    flex-direction: column;
    gap: 2rem;
  }

  .feature-detail.reverse {
    flex-direction: column;
  }

  .feature-detail-content h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .feature-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-header h2 {
    font-size: 1.35rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  /* Video Demo Mobile */
  .video-demo-section {
    padding: 3rem 0;
  }

  .video-demo-section .section-title {
    font-size: 1.35rem;
  }

  .video-demo-section .section-subtitle {
    font-size: 0.9rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-title-xl {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-badge {
    font-size: 0.85rem;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 1.35rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 2rem 0;
  }

  .simplified-footer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    align-items: center;
  }

  .footer-logo-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo {
    height: 28px;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .hero-title-xl {
    font-size: 1.5rem;
  }

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

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

/* Video Player Inline */
.video-player-container {
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-player-container video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .video-player-container {
    margin: 1.5rem auto 0;
    border-radius: 12px;
  }

  .video-player-container video {
    border-radius: 12px;
  }
}
