/* ==========================================================================
   GUESBAY LANDING PAGE DESIGN SYSTEM & STYLES
   Colors: Dark Obsidian + Emerald / Forest Green Accents
   ========================================================================== */

:root {
  /* Brand Palettes */
  --bg-dark: #070B09;
  --bg-card: rgba(16, 26, 21, 0.75);
  --bg-card-hover: rgba(22, 38, 30, 0.85);
  --bg-card-border: rgba(34, 197, 94, 0.15);
  --bg-card-border-hover: rgba(52, 211, 153, 0.4);
  
  --primary: #10B981;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --primary-dark: #047857;
  --primary-deep: #0B4627;
  --accent-teal: #14B8A6;
  --accent-gold: #F59E0B;
  --accent-blue: #3B82F6;

  /* Text colors */
  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-subtle: #6B7280;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Glassmorphism */
  --glass-bg: rgba(12, 20, 16, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px 0 rgba(16, 185, 129, 0.05);
  --shadow-glow: 0 0 40px -10px rgba(16, 185, 129, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Background Glowing Orbs & Tech Grid */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  opacity: 0.45;
}

.bg-glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #0B4627 0%, rgba(16, 185, 129, 0) 70%);
  top: -100px;
  right: -50px;
}

.bg-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #064e3b 0%, rgba(20, 184, 166, 0) 70%);
  top: 40%;
  left: -150px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

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

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: rgba(7, 11, 9, 0.75);
  border-bottom: var(--glass-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 15px var(--primary-glow);
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

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

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

.mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 26, 21, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #FFFFFF;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-store:hover {
  background: rgba(22, 38, 30, 0.95);
  border-color: var(--primary);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
}

.store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #34D399;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.store-small {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.store-large {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pulse-effect {
  position: relative;
}

.pulse-effect::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  background: linear-gradient(135deg, #10B981, #059669);
  z-index: -1;
  opacity: 0;
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-emerald {
  color: var(--primary);
}

.link-emerald {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.link-emerald:hover {
  color: #34D399;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Platform availability notice */
.platform-notice-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}

.notice-tag svg {
  width: 14px;
  height: 14px;
}

.notice-success {
  background: rgba(16, 185, 129, 0.1);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.notice-info {
  background: rgba(245, 158, 11, 0.08);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HERO NATIVE DASHBOARD CARD & INTERACTIVE SHOWCASE
   (Pixel-perfect match to Guesbay Android Native Dashboard)
   ========================================================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.native-dashboard-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  background: #FFFFFF;
  border-radius: 26px;
  padding: 24px 22px 18px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.45), 0 0 45px rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #0F172A;
  user-select: none;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.native-dashboard-card:hover {
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.55), 0 0 55px rgba(16, 185, 129, 0.25);
}

/* Card Header */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dash-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dash-icon-circle:hover {
  transform: scale(1.08);
  background: #D1FAE5;
}

.dash-icon-circle svg {
  width: 22px;
  height: 22px;
}

.dash-header-text {
  display: flex;
  flex-direction: column;
}

.dash-header-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.dash-month-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.dash-month-row:hover {
  opacity: 0.8;
}

.dash-month-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.dash-filter-icon {
  width: 19px;
  height: 19px;
  color: #475569;
  stroke-width: 2.2;
}

/* Pill +144.0% */
.dash-trend-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #047857;
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.dash-trend-pill:hover {
  transform: translateY(-2px);
  background: #D1FAE5;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.dash-trend-pill svg {
  width: 16px;
  height: 16px;
}

/* Big KPIs Row */
.dash-big-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-kpi-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  border-radius: 16px;
  padding: 13px 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.dash-kpi-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.box-fat:hover {
  border-color: #A7F3D0;
}

.box-lucro:hover {
  border-color: #FDE68A;
}

.dash-kpi-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.kpi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-fat {
  background: #047857;
  box-shadow: 0 0 6px rgba(4, 120, 87, 0.4);
}

.dot-lucro {
  background: #F59E0B;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

.kpi-tag-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.box-fat .kpi-tag-label {
  color: #065F46;
}

.box-lucro .kpi-tag-label {
  color: #D97706;
}

.dash-kpi-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
}

.text-fat {
  color: #064E3B;
}

.text-lucro {
  color: #B45309;
}

/* Metric Pills Row */
.dash-metric-pills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.metric-pill-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.metric-pill-item:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
  transform: translateY(-2px);
}

.pill-title {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.pill-value {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
}

.text-emerald-dark {
  color: #059669;
}

/* Goal Row */
.dash-goal-container {
  margin-bottom: 14px;
  padding: 2px 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.dash-goal-container:hover {
  opacity: 0.85;
}

.dash-goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.dash-goal-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #334155;
}

.trophy-emoji {
  font-size: 1.05rem;
}

.dash-goal-percent {
  font-weight: 800;
  font-size: 0.82rem;
  color: #047857;
}

.dash-progress-track {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: 9999px;
  overflow: hidden;
}

.dash-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #059669 0%, #10B981 100%);
  border-radius: 9999px;
  transition: width 0.6s ease;
}

/* Selected Day Pill */
.dash-day-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EEF3F7;
  border: 1px solid #DBE4EE;
  border-radius: 12px;
  padding: 6px 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dash-day-pill:hover {
  background: #E2E8F0;
}

.day-circle-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #D1FAE5;
  color: #0F766E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  font-family: var(--font-heading);
}

.day-stats-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #334155;
}

.day-fat-info strong {
  color: #065F46;
  font-weight: 800;
}

.day-lucro-info strong {
  color: #B45309;
  font-weight: 800;
}

.day-pill-close {
  background: #CBD5E1;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.day-pill-close:hover {
  background: #94A3B8;
  color: #FFFFFF;
}

/* Daily Stacked Bar Chart */
.dash-chart-container {
  height: 95px;
  display: flex;
  align-items: flex-end;
  padding-top: 8px;
  border-top: 1px solid #F1F5F9;
  overflow: hidden;
}

.dash-bars-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 2.5px;
}

.dash-bar-col {
  flex: 1;
  min-width: 6px;
  max-width: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

.dash-bar-col:hover {
  transform: scaleY(1.08);
}

.dash-bar-col.active {
  outline: 2px solid #10B981;
  outline-offset: 2px;
  border-radius: 4px;
}

.bar-segment-top {
  background: #047857;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
}

.bar-segment-bottom {
  background: #F59E0B;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  width: 100%;
}

/* Interactive Hint Badge */
.dash-interactive-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px dashed rgba(16, 185, 129, 0.35);
  border-radius: 10px;
  padding: 7px 10px;
  margin-top: 12px;
  font-size: 0.74rem;
  color: #047857;
  line-height: 1.35;
}

.hint-hand {
  font-size: 1rem;
  animation: bounce 1.8s infinite;
}

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

/* ==========================================================================
   INTERACTIVE SIMULATION MODAL (POPUP)
   ========================================================================== */
.sim-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 7, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sim-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.sim-modal-card {
  background: #0F1713;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 22px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(16, 185, 129, 0.2);
  color: #F8FAFC;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.sim-modal-backdrop.open .sim-modal-card {
  transform: translateY(0) scale(1);
}

.sim-modal-header {
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-modal-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34D399;
}

.sim-modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.sim-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sim-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.4);
}

.sim-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #CBD5E1;
}

.sim-highlight-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.sim-big-stat {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #34D399;
  line-height: 1.1;
  margin-bottom: 4px;
}

.sim-big-stat.amber {
  color: #FBBF24;
}

.sim-stat-desc {
  font-size: 0.84rem;
  color: #94A3B8;
}

.sim-section-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #F1F5F9;
  margin: 1.25rem 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sim-product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.sim-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-product-name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.sim-product-tag {
  font-size: 0.72rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.sim-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.82rem;
}

.sim-calc-item {
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 10px;
  border-radius: 8px;
}

.sim-calc-label {
  color: #94A3B8;
  display: block;
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.sim-calc-val {
  font-weight: 700;
  color: #FFFFFF;
}

.sim-calc-val.green { color: #34D399; }
.sim-calc-val.amber { color: #FBBF24; }
.sim-calc-val.red { color: #F87171; }

.sim-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

.sim-table th {
  text-align: left;
  padding: 8px 10px;
  color: #94A3B8;
  font-size: 0.72rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #E2E8F0;
}

.sim-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.sim-tip-box {
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3B82F6;
  border-radius: 0 10px 10px 0;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #93C5FD;
  margin-top: 1rem;
}

.sim-modal-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   SECTION COMMON HEADERS
   ========================================================================== */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 1: FEATURES GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.icon-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}
.icon-emerald {
  background: rgba(5, 150, 105, 0.15);
  color: #10B981;
}
.icon-teal {
  background: rgba(20, 184, 166, 0.15);
  color: #2DD4BF;
}
.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-main);
}

.feature-list li.text-subtle-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  align-items: flex-start;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.feature-list li.text-subtle-note svg {
  color: #60A5FA;
  margin-top: 2px;
}

.feature-list li svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 2: SHARING & TEAMS
   ========================================================================== */
.sharing-box {
  background: linear-gradient(135deg, rgba(16, 26, 21, 0.9) 0%, rgba(6, 40, 25, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.sharing-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sharing-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sharing-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.step-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Code mockup */
.code-card {
  background: rgba(7, 11, 9, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.code-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.code-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.code-status {
  font-size: 0.72rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.code-display {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.code-letter {
  width: 42px;
  height: 52px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #34D399;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.code-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.08);
  padding: 0.5rem;
  border-radius: 6px;
}

.security-note svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   SECTION 3: DASHBOARDS
   ========================================================================== */
.dashboard-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.dash-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.dash-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--bg-card-border-hover);
  transform: translateY(-3px);
}

.dash-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.dash-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.dash-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 4: PRICING PLANS
   ========================================================================== */
.subscription-exclusive-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(6, 40, 25, 0.35) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.exclusive-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exclusive-icon svg {
  width: 26px;
  height: 26px;
}

.exclusive-content {
  flex: 1;
}

.exclusive-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #34D399;
  margin-bottom: 0.35rem;
}

.exclusive-text {
  font-size: 0.88rem;
  color: #E5E7EB;
  line-height: 1.55;
}

.plan-action-caption {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--bg-card-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(16, 32, 24, 0.95) 0%, rgba(10, 20, 15, 0.95) 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.35);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.plan-type {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  min-height: 42px;
  margin-bottom: 1.25rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 1.5rem;
}

.plan-price-centered {
  justify-content: center;
  text-align: center;
}

.plan-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.plan-price .price-val {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.plan-price .price-cents {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.plan-price .price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

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

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  line-height: 1.45;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.feat-allowed {
  color: #F9FAFB;
}

.plan-features li.feat-allowed svg {
  color: #10B981;
}

.plan-features li.feat-disabled {
  color: #9CA3AF;
  opacity: 0.45;
}

.plan-features li.feat-disabled svg {
  color: #EF4444;
  opacity: 0.75;
}

.pricing-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  max-width: 750px;
  margin: 0 auto;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

.pricing-footer-note svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 5: PLATFORMS
   ========================================================================== */
.platforms-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.platforms-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.platforms-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.platforms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.platform-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.plat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plat-icon svg {
  width: 22px;
  height: 22px;
}

.plat-android {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.plat-web {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
}

.plat-apple {
  background: rgba(156, 163, 175, 0.15);
  color: #9CA3AF;
}

.platform-row h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.platform-row p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.plat-disabled-row {
  opacity: 0.75;
  border-style: dashed;
}

.text-muted {
  color: var(--text-subtle);
}

.platform-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   SECTION 6: FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--bg-card-border-hover);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 7: FINAL CTA BANNER
   ========================================================================== */
.final-cta-section {
  padding: 4rem 0 6rem;
}

.final-cta-box {
  background: linear-gradient(135deg, #0B4627 0%, #062819 50%, #04180F 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 60px rgba(16, 185, 129, 0.2);
}

.final-cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.final-cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040705;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
}

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

.footer-brand .brand-logo {
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

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

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary);
}

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

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

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

/* Responsive queries */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  .sharing-box {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  
  /* Mobile menu active */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 11, 9, 0.98);
    backdrop-filter: var(--glass-blur);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1.25rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .final-cta-title {
    font-size: 1.8rem;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}
