/* ==========================================================================
   ZEUS CODE — DEVELOPER-FIRST DESIGN SYSTEM (ACCESSIBLE & HIGH-CONTRAST)
   Calibrado para WCAG AA/AAA, legibilidade cristalina e proporções elegantes
   ========================================================================== */

:root {
  --bg: #050811;
  --surface: #0b0f19;
  --surface-2: #111827;
  --card-bg: rgba(15, 23, 42, 0.78);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-hover-border: rgba(96, 165, 250, 0.45);
  --card-hover-bg: rgba(255, 255, 255, 0.04);
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --cyan-glow: #38bdf8;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --amber: #fbbf24;
  --purple: #a855f7;

  /* Textos de Alto Contraste (WCAG Compliant no fundo escuro) */
  --text: #ffffff;
  --text-muted: #cbd5e1;       /* Slate 300 - Contraste 10.5:1 (WCAG AAA) */
  --text-dim: #94a3b8;         /* Slate 400 - Contraste 6.4:1 (WCAG AA) */

  --border: #1e293b;
  --border-light: #334155;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Zeus Dark Palette Custom Scrollbars */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.28) #060913;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: #060913;
}

::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.28);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.55);
}

::-webkit-scrollbar-corner {
  background: #060913;
}

/* Acessibilidade de Foco */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Lighting (Mais sutil para não interferir no contraste de texto) */
.ambient-glow-1 {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: absolute;
  top: 1300px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

[data-lucide] {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2;
  vertical-align: -0.18em;
  display: inline-block;
}

/* Navbar */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(5, 8, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.nav-brand-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.55));
  transition: transform 0.2s ease;
}

.nav-brand:hover .nav-brand-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  cursor: pointer;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.nav-dropdown-trigger:hover {
  color: #ffffff;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  margin-top: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 250px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 101;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-muted) !important;
  font-size: 0.84rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

.dropdown-item .badge-pill {
  margin-left: auto;
  font-size: 0.68rem;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  font-weight: 700;
  font-family: var(--font-mono);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: #ffffff;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #090d16;
  border-bottom: 1px solid var(--card-border);
  padding: 1.25rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-drawer a:hover {
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.58rem 1.2rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.42rem 0.9rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.65);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

/* Package Manager Switcher */
.pkg-install-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pkg-manager-tabs {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 3px;
  gap: 3px;
}

.pkg-tab {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
  outline: none;
}

.pkg-tab:hover {
  color: #ffffff;
}

.pkg-tab.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.btn-terminal-copy {
  background: #0f172a;
  color: #f1f5f9;
  border: 1px solid rgba(96, 165, 250, 0.35);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  padding: 0.55rem 1.1rem;
  gap: 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.btn-terminal-copy:hover {
  border-color: var(--cyan-glow);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.35);
}

/* Badges */
.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

/* Hero Section (Proporções calibradas e confortáveis) */
.hero-section {
  padding-top: 115px;
  padding-bottom: 50px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 860px;
  margin: 0 auto 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #93c5fd 10%, #c084fc 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Terminal Context Intro */
.terminal-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.terminal-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.terminal-intro-tag i {
  width: 14px;
  height: 14px;
}

.terminal-intro-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0.35rem auto 0 auto;
  max-width: 680px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .terminal-intro-title {
    font-size: 1.05rem;
  }
}

.terminal-intro-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 640px;
  margin: 0.4rem auto 0 auto;
  line-height: 1.5;
}

.terminal-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: var(--font-mono);
}

.terminal-status-badge .status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  display: inline-block;
}

/* Interactive Terminal Window */
.terminal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 12px;
  background: #090d16;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.12);
  overflow: hidden;
  text-align: left;
}

.terminal-header {
  background: #0d131f;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.terminal-tab {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.terminal-tab:hover {
  color: #ffffff;
}

.terminal-tab.active {
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.4);
}

.terminal-body {
  padding: 1.25rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.7;
  color: #f8fafc;
  min-height: 290px;
  max-height: 380px;
  overflow-y: auto;
}

/* Cores de Sintaxe do Terminal (Brilhantes e Altamente Legíveis) */
.t-blue { color: #93c5fd; }
.t-green { color: #4ade80; }
.t-yellow { color: #fde047; }
.t-dim { color: #94a3b8; }
.t-bold { font-weight: 700; }
.t-cyan { color: #38bdf8; }

/* The "Resposta Curta" Manifesto Section */
.manifesto-section {
  padding: 65px 0;
}

.manifesto-card {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.1) 0%, rgba(11, 15, 25, 0.9) 65%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 14px;
  padding: 2.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.manifesto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #93c5fd;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
}

.manifesto-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.manifesto-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.manifesto-text strong {
  color: #ffffff;
  font-weight: 700;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem;
}

.pain-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.25rem;
}

.pain-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.pain-card-icon-bad {
  color: #f87171;
}

.pain-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Feature Grid */
.features-section {
  padding: 65px 0;
}

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

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.35rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.6rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--card-hover-border);
  background: var(--card-hover-bg);
  transform: translateY(-2px);
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  margin-bottom: 1.15rem;
}

.feature-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Matrix Table */
.matrix-section {
  padding: 65px 0;
}

.matrix-table-wrapper {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.matrix-table th, .matrix-table td {
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.matrix-table th {
  background: rgba(15, 23, 42, 0.9);
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.matrix-table th.highlight-col {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  border-bottom: 2px solid var(--accent);
}

.matrix-table td {
  color: var(--text-muted);
}

.matrix-table td.highlight-col {
  background: rgba(37, 99, 235, 0.06);
  font-weight: 600;
  color: #ffffff;
}

.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-no {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f87171;
  font-size: 0.82rem;
}

/* Pricing Section */
.pricing-section {
  padding: 65px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
}

.pricing-card.featured {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.18) 0%, #0c1220 70%);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.2);
  transform: scale(1.02);
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.8rem;
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.pricing-tier-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.pricing-tier-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  min-height: 38px;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-amount {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.pricing-period {
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: #f1f5f9;
}

.pricing-features li [data-lucide] {
  color: #34d399;
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  padding: 65px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.85rem;
}

/* Final CTA */
.cta-section {
  padding: 65px 0 100px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(139, 92, 246, 0.12) 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 14px;
  padding: 3rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cta-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* Footer */
.landing-footer {
  border-top: 1px solid var(--card-border);
  background: #03060d;
  padding: 3.5rem 0 2rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Responsividade Avançada para Todos os Dispositivos */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.matrix-table-wrapper {
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  min-width: 640px;
}

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

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

  /* Navbar Mobile */
  .nav-links {
    display: none;
  }

  .mobile-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .mobile-nav-drawer {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 96px;
    padding-bottom: 35px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.2vw, 2.3rem);
    line-height: 1.25;
  }

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

  .badge-hero {
    font-size: 0.68rem;
    padding: 0.3rem 0.75rem;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
  }

  /* Hero CTA & Package Switcher Mobile */
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 380px;
    margin: 0 auto 2.5rem;
    gap: 0.85rem;
  }

  .pkg-install-box {
    width: 100%;
  }

  .pkg-manager-tabs {
    width: 100%;
    justify-content: center;
  }

  .btn-terminal-copy {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.55rem 0.75rem;
  }

  .hero-cta-group .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Terminal Preview Mobile */
  .terminal-wrapper {
    margin: 0 -0.25rem;
    border-radius: 10px;
  }

  .terminal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
  }

  .terminal-header > div:last-child {
    display: none;
  }

  .terminal-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .terminal-tab {
    white-space: nowrap;
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
  }

  .terminal-body {
    font-size: 0.75rem;
    padding: 0.9rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Cards e Grids Mobile */
  .manifesto-card {
    padding: 1.4rem 1.15rem;
  }

  .pain-cards-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

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

  .feature-card {
    padding: 1.3rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  /* Pricing Cards Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 1.75rem;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

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

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Final CTA Mobile */
  .cta-box {
    padding: 2.2rem 1.25rem;
  }

  .cta-title {
    font-size: 1.55rem;
  }

  .cta-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }
}

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

  .nav-brand span {
    font-size: 0.95rem;
  }

  .nav-actions .btn-sm {
    padding: 0.35rem 0.6rem;
    font-size: 0.76rem;
  }

  .btn-terminal-copy {
    font-size: 0.74rem;
    padding: 0.5rem 0.65rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .badge-hero {
    font-size: 0.64rem;
    padding: 0.25rem 0.65rem;
  }
}

/* Authentication Card, Tabs & Social Login */
.dev-auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1rem 3.5rem 1rem;
  position: relative;
  z-index: 10;
}

.dev-auth-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  position: relative;
  backdrop-filter: blur(12px);
}

.dev-modal-tabs {
  display: flex;
  gap: 0.35rem;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.dev-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 0.5rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.dev-tab-btn.active {
  background: rgba(59, 130, 246, 0.25);
  color: #fff;
}

.dev-tab-btn:hover:not(.active) {
  color: #f1f5f9;
}

.modal-form-group {
  margin-bottom: 1rem;
}

.modal-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
}

.modal-input {
  width: 100%;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.modal-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn-modal-submit {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.15s;
  margin-top: 1.25rem;
}

.btn-modal-submit:hover {
  opacity: 0.95;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-feedback {
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  line-height: 1.45;
}

.modal-footer-hint {
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.modal-footer-hint a,
.modal-footer-hint button {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

.modal-footer-hint a:hover,
.modal-footer-hint button:hover {
  text-decoration: underline;
}

.social-login-divider {
  display: flex;
  align-items: center;
  margin: 1.25rem 0 0.85rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 500;
}

.social-login-divider::before,
.social-login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.social-login-divider span {
  padding: 0 0.75rem;
}

.btn-social-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.btn-social-auth:hover {
  background: #111827;
  border-color: #3b82f6;
  color: #fff;
}


/* ==========================================================================
   Verboo Code Pricing System & Prepaid Recharges Styles
   ========================================================================== */
/* Verboo Code Pricing Styles */
.verboo-pricing-section {
  padding: 1.5rem 0 4rem;
  position: relative;
  z-index: 2;
}

.verboo-controls-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Audience Switch (Just for me vs Teams) */
.audience-switch {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.audience-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audience-btn.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

.audience-btn:hover:not(.active) {
  color: #f8fafc;
}

/* Frequency Toggle (Mensal vs Anual) */
.frequency-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  color: #94a3b8;
  cursor: pointer;
  user-select: none;
}

.frequency-switch span.active-freq {
  color: #f8fafc;
  font-weight: 700;
}

.toggle-track {
  width: 46px;
  height: 24px;
  background: #1e293b;
  border-radius: 9999px;
  position: relative;
  transition: background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toggle-track.yearly {
  background: #2563eb;
}

.toggle-thumb {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: transform 0.2s ease;
}

.toggle-track.yearly .toggle-thumb {
  transform: translateX(22px);
}

.discount-pill {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
}

/* Grid Layout */
.verboo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

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

@media (max-width: 1100px) {
  .verboo-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .verboo-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .verboo-grid-4, .verboo-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Plan Card */
.v-card {
  background: #0d1322;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.v-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.v-card.featured {
  border-color: #3b82f6;
  background: linear-gradient(180deg, #101935 0%, #0d1322 100%);
  box-shadow: 0 0 35px rgba(37, 99, 235, 0.22);
}

.v-card-top {
  display: flex;
  flex-direction: column;
}

.v-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  min-height: 26px;
}

.v-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.v-badge i,
.v-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.v-badge.popular {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.35);
}

.v-badge.ultra {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.35);
}

.v-plan-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 0.5rem;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
}

.v-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.25rem 0 0.25rem;
}

.v-price-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  letter-spacing: -0.02em;
}

.v-price-period {
  font-size: 0.88rem;
  color: #94a3b8;
}

.v-plan-subdesc {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  min-height: 34px;
}

/* Capacity Tags (req/min, concurrent) */
.v-capacity-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.v-cap-item {
  display: flex;
  flex-direction: column;
}

.v-cap-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.v-cap-label {
  font-size: 0.7rem;
  color: #94a3b8;
}

/* Models & Speed Table */
.v-models-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.65rem;
}

.v-model-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.v-model-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
}

.v-model-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.v-model-name i,
.v-model-name svg {
  color: #60a5fa;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.v-toks {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: #34d399;
  font-weight: 600;
  font-size: 0.8rem;
}

.v-view-more {
  font-size: 0.75rem;
  color: #60a5fa;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
}

.v-view-more i,
.v-view-more svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.v-view-more:hover {
  text-decoration: underline;
}

/* Scarcity Bar  */
.v-scarcity-wrap {
  margin-bottom: 1.25rem;
}

.v-scarcity-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.v-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.v-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.v-progress-fill.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* CTA Button */
.btn-v-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
}

.btn-v-plan i,
.btn-v-plan svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-v-plan:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-v-plan.primary {
  background: #2563eb;
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-v-plan.primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.6);
}


/* ==========================================================================
   CREATIVE SPOTLIGHT (SEM LIMITES - INFINITE TOKENS CARD)
   ========================================================================== */
.creative-spotlight-section {
  padding: 48px 0;
  position: relative;
}

.creative-spotlight-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.15);
  position: relative;
  overflow: hidden;
}

.creative-spotlight-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.creative-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.creative-image-wrapper {
  position: relative;
  max-width: 380px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 35px rgba(6, 182, 212, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creative-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.85), 0 0 45px rgba(6, 182, 212, 0.5);
}

.creative-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

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

.creative-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #67e8f9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.creative-title {
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 1rem;
}

.creative-title .gradient-text-cyan {
  background: linear-gradient(135deg, #06b6d4, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creative-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.creative-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.creative-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.creative-feature-icon {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #34d399;
  margin-top: 2px;
}

.creative-feature-icon i,
.creative-feature-icon svg {
  width: 16px;
  height: 16px;
}

.creative-feature-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.creative-feature-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.15rem;
  line-height: 1.45;
}

.creative-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.creative-cta-row .btn {
  padding: 0.75rem 1.6rem;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 960px) {
  .creative-spotlight-card {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 2rem 1.5rem;
  }

  .creative-image-col {
    order: -1;
  }

  .creative-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .creative-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    line-height: 1.22;
  }

  .creative-desc {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
  }

  .creative-features-list {
    gap: 0.9rem;
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 640px) {
  .creative-spotlight-section {
    padding: 28px 0;
  }

  .creative-spotlight-card {
    padding: 1.5rem 1.15rem;
    border-radius: 16px;
    gap: 1.75rem;
  }

  .creative-image-wrapper {
    max-width: 270px;
    border-radius: 12px;
  }

  .creative-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.85rem;
    line-height: 1.3;
  }

  .creative-title {
    font-size: 1.42rem;
    margin-bottom: 0.75rem;
  }

  .creative-desc {
    font-size: 0.88rem;
    line-height: 1.52;
    margin-bottom: 1.25rem;
  }

  .creative-feature-title {
    font-size: 0.9rem;
  }

  .creative-feature-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .creative-cta-row {
    width: 100%;
  }

  .creative-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .creative-spotlight-card {
    padding: 1.2rem 0.85rem;
  }

  .creative-image-wrapper {
    max-width: 230px;
  }

  .creative-title {
    font-size: 1.28rem;
  }
}

/* ==========================================================================
   TRIAL HIGHLIGHTS & FREE TRIAL SYSTEM
   ========================================================================== */
.trial-hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 9999px;
  padding: 0.45rem 1.15rem;
  margin-bottom: 1.35rem;
  font-size: 0.86rem;
  color: #a7f3d0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  flex-wrap: wrap;
  justify-content: center;
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.trial-hero-link {
  color: #34d399;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.trial-hero-link:hover {
  color: #6ee7b7;
}

.hero-trial-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 0.75rem;
}

.hero-guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #94a3b8;
  font-size: 0.82rem;
  font-family: var(--font-mono, monospace);
}

.hero-guarantee-item i,
.hero-guarantee-item svg {
  color: #34d399;
  width: 15px;
  height: 15px;
}

/* Trial Info Card below Pricing Grid */
.trial-info-card {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trial-info-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.trial-info-icon {
  color: #34d399;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trial-info-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.trial-info-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.trial-steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.trial-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #060913;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
