:root {
  /* Premium Dark Theme Palette */
  --background: #0a0a0c;
  --foreground: #f8fafc;
  --surface: #131316;
  --card: #1c1c21;
  --primary: #00bfc9;
  /* Electric Blue */
  --primary-foreground: #ffffff;
  --secondary: #1e293b;
  --muted: #1e1e24;
  --muted-foreground: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #22d3ee;
  --success: #10b981;

  --radius: 12px;
  --font-sans: Arial, sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass: backdrop-filter: blur(12px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Header & Nav */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.top-bar {
  background-color: var(--primary);
  color: #03060b;
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: normal;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 191, 201, 0.3);
}

.top-bar strong {
  color: #000;
  text-decoration: underline;
}

.bg-surface {
  background-image: radial-gradient(circle at top, rgba(0, 191, 201, 0.08) 0%, transparent 60%), linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-color: var(--surface);
}

.bg-card {
  background-color: var(--card);
}

.bg-dark {
  background-color: var(--background);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--foreground);
}

.nav-links {
  display: none;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

/* Mobile Menu Behavior */
@media (max-width: 1023px) {
  .nav-links {
    position: fixed;
    top: 100px;
    /* Adjust based on header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background: var(--background);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 99;
    display: flex;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 1rem 0;
  }
}

.menu-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.125rem;
  }

  .logo img {
    height: 22px !important;
  }

  .hide-mobile {
    display: none !important;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  opacity: 1;
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-header {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--primary);
  color: #03060b;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--foreground);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 104px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background) 0%, rgba(5, 6, 8, 0.85) 50%, rgba(7, 7, 8, 0.4) 100%);
}

.hero-content {
  width: 100%;
  max-width: 740px;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(52, 216, 245, 0.89);
  color: var(--primary);
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 8vw, 4rem);
  margin-bottom: 1.5rem;
}

.title-large {
  font-size: clamp(1.75rem, 6vw, 3rem);
  margin-bottom: 1.5rem;
}

.hero p,
.description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--muted-foreground);
}

.service-highlights {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.highlights-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Features & Cards */
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
  background: rgba(28, 28, 33, 0.8);
}

.card-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgb(8, 180, 180);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.content-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-split {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-split.reverse .content-image {
    order: 1;
  }

  .content-split.reverse .content-text {
    order: 2;
    padding-left: 3rem;
  }
}

.content-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.mini-stats {
  margin-bottom: 2rem;
}

.mini-card {
  padding: 1rem !important;
}

.text-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.text-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge.simple {
  margin: 0;
  background: var(--muted);
  border-color: var(--border);
  color: var(--foreground);
}

/* Icon Box */
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Plans */
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
  background: var(--muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}


.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--foreground);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.text-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.icon-box-feature {
  width: 48px;
  height: 48px;
  background: rgba(0, 191, 201, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.plan-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--card);
  text-align: center;
  transition: var(--transition);
}

.plan-card.featured {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.03);
  transform: scale(1.05);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .plan-card.featured {
    transform: none;
  }
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.check-icon {
  color: var(--success);
  font-weight: bold;
}

/* FAQ */
.faq-container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--foreground);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-panel {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: none;
}

.faq-item.active .faq-panel {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* CTA Gradient and Conversion Banner */
.gradient-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  padding: 80px 0;
  border-radius: 24px;
  margin: 40px auto;
  max-width: 1280px;
  width: calc(100% - 3rem);
  text-align: center;
}

.conversion-banner {
  background: #00B6D3;
  color: #03060b;
  padding: 5rem 0;
  text-align: center;
}

.conversion-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  color: #03060b;
}

.conversion-banner p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.conversion-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #111;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: #050608;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--primary);
}

/* Breadcrumbs & Page Header */
.inner-hero {
  padding: 11rem 0 4rem;
  background: radial-gradient(circle at top, rgba(0, 191, 201, 0.12) 0%, transparent 60%);
  text-align: center;
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 12rem 0 3rem;
  }
}

.container-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.breadcrumbs {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  opacity: 0.7;
}

.header-badge {
  display: inline-flex;
  padding: 0.35rem 1.25rem;
  background: rgba(0, 191, 201, 0.05);
  border: 1px solid rgba(0, 191, 201, 0.2);
  color: var(--primary);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.inner-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.inner-hero .subtitle {
  color: var(--muted-foreground);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.breadcrumbs a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs .separator {
  opacity: 0.4;
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 500;
}

.copyright-area {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  opacity: 0.6;
}

.copyright-area p {
  margin-bottom: 0.5rem;
}

/* Float WhatsApp */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.float-wa:hover {
  transform: scale(1.1);
}

/* Stats Cards (Simplified) */
.card-stat {
  padding: 4rem 2rem;
  margin-top: 2rem;
  text-align: center;
  background: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .card-stat {
    padding: 2.5rem 1.5rem;
  }
}

.card-stat:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 201, 0.2);
}

.stat-number {
  font-size: clamp(2.25rem, 10vw, 3rem);
  font-weight: 950;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Pills & Badges */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.channel-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}

.channel-pill:hover {
  border-color: var(--primary);
  background: rgba(0, 191, 201, 0.05);
}

.pill-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  background: rgba(0, 191, 201, 0.1);
  color: var(--primary);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
/* CTA Update Banner */
.update-banner {
  background: linear-gradient(135deg, rgba(0, 191, 201, 0.1) 0%, rgba(0, 191, 201, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.update-content {
  flex: 1;
  min-width: 280px;
}

@media (max-width: 768px) {
  .update-banner {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
    justify-content: center;
  }
  
  .update-content {
    min-width: 100%;
  }
  
  .update-content h3 {
    font-size: 1.25rem;
  }
}

/* Navigation & Layout Enhancements */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-n2 { margin-top: -0.5rem; }

@media (max-width: 768px) {
  .hero {
    padding-top: 170px !important;
  }
  .hero-actions {
    justify-content: center;
  }
}

.text-xs-bold { font-size: 0.75rem; font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.pb-8 { padding-bottom: 8rem; }
.badge-dark { background: rgba(255,255,255,0.05); color: white; border: 1px solid var(--border); }


/* Pricing Page Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.plan-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(0, 191, 201, 0.05) 0%, transparent 100%);
}

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price .currency { font-size: 1.15rem; font-weight: 600; }
.plan-price .amount { font-size: 2.25rem; font-weight: 800; }
.plan-price .period { color: var(--muted-foreground); font-size: 0.85rem; }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.plan-features li svg { color: var(--primary); flex-shrink: 0; }

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  margin-top: 4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.comparison-table tr:last-child td { border-bottom: none; }

.check-cell { color: var(--primary); text-align: center; }


/* Guarantee Section */
.guarantee-card {
  background: rgba(0, 191, 201, 0.05);
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
}

.guarantee-icon {
  background: var(--primary);
  color: black;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

@media (max-width: 768px) {
  .guarantee-card {
    padding: 2.5rem 1.5rem;
  }
}

/* UI Text Sizes */
.font-bold { font-weight: 700; }
.text-md { font-size: 1.1rem; }
.text-lg { font-size: 1.25rem; }

.payment-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
}

/* Testimonial Styles */
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--foreground);
}

/* FAQ Enhancements */
.faq-trigger {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.5rem;
}

.faq-panel {
  font-size: 1.05rem;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Teste Grátis Page Specific Styles */
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-card {
  background: var(--card);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to bottom right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.color-warning { color: #fbbf24; }


/* ========== Teste Gratis Page ========== */
.teste-hero-actions {
  padding: 0 0 2rem;
  background: radial-gradient(circle at top, rgba(0, 191, 201, 0.12) 0%, transparent 60%);
}

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

.btn-lg svg {
  margin-right: 0.5rem;
}

.steps-grid {
  gap: 3rem;
  margin-top: 4rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.step-purple { background: #a855f7; }
.step-blue { background: #3b82f6; }
.step-cyan { background: #06b6d4; }

.stat-card {
  background: var(--card);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to bottom right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.color-warning { color: #fbbf24; }

.faq-wrapper {
  max-width: 800px;
}

.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 2rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 2rem; }
.gap-1 { gap: 0.25rem; }
.gap-4 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }

@media (max-width: 768px) {
  .stat-card .stat-number {
    font-size: 1.75rem;
  }
  .steps-grid {
    gap: 2rem;
    margin-top: 2rem;
  }
  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* ========== Dispositivos Page & Shared CTA ========== */
.install-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}

.install-steps li {
  counter-increment: step;
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: black;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversion-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn-dark {
  background: #0a0a0c;
  color: white;
  border: 1px solid #0a0a0c;
}

.btn-dark:hover {
  background: #1a1a1e;
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(3, 6, 11, 0.5);
  color: #03060b;
}

.btn-outline-dark:hover {
  background: rgba(3, 6, 11, 0.05);
}

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

/* ========== FAQ Page Categories ========== */
.faq-page-wrapper {
  max-width: 900px;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

.faq-category-title:first-child {
  margin-top: 0;
}
