/* ============================================================
   NUESTRA VOZ — Design System
   Plataforma para Operadores Terapéuticos · Uruguay
   Fundada por Cecilia Mahia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --primary:        hsl(265, 55%, 45%);
  --primary-light:  hsl(265, 60%, 62%);
  --primary-dark:   hsl(265, 60%, 30%);
  --accent:         hsl(340, 68%, 55%);
  --accent-light:   hsl(340, 72%, 68%);
  --gold:           hsl(42, 88%, 58%);
  --gold-light:     hsl(42, 95%, 72%);
  --teal:           hsl(175, 65%, 42%);

  --dark:           hsl(240, 22%, 7%);
  --dark-2:         hsl(240, 18%, 10%);
  --surface:        hsl(240, 16%, 13%);
  --surface-2:      hsl(240, 14%, 18%);
  --surface-3:      hsl(240, 12%, 22%);
  --border:         hsl(240, 15%, 25%);
  --border-light:   hsl(240, 15%, 32%);

  --text-primary:   hsl(240, 20%, 95%);
  --text-secondary: hsl(240, 10%, 68%);
  --text-muted:     hsl(240, 8%, 48%);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section { padding: 100px 0; }

/* Fade-in observer */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Glass */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107,63,160,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(107,63,160,0.6); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, hsl(30,90%,58%) 100%);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(218,165,32,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(218,165,32,0.55); }

.btn-outline {
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover { border-color: var(--primary-light); background: rgba(107,63,160,0.1); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(14,13,26,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(107,63,160,0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text .tagline-small { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(107,63,160,0.3) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 70%, rgba(224,85,128,0.2) 0%, transparent 70%),
              linear-gradient(180deg, var(--dark) 0%, transparent 30%, transparent 70%, var(--dark) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107,63,160,0.2);
  border: 1px solid rgba(107,63,160,0.4);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px;
  background: rgba(107,63,160,0.2);
  right: -100px; top: 10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px;
  background: rgba(224,85,128,0.15);
  right: 100px; bottom: 10%;
  animation-delay: -4s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ── Value Section ── */
.value-section { background: var(--dark-2); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, linear-gradient(90deg, var(--primary), var(--accent)));
  opacity: 0;
  transition: var(--transition);
}
.value-card:hover::before { opacity: 1; }
.value-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--text-secondary); line-height: 1.7; }

/* ── Publish Section ── */
.publish-section { background: var(--dark); }
.publish-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.channel-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  user-select: none;
}
.channel-chip:hover { transform: translateY(-4px) scale(1.05); background: var(--surface-2); }
.channel-chip.active {
  border-color: var(--chip-color, var(--primary-light));
  background: rgba(107,63,160,0.1);
}
.channel-chip i { font-size: 1.6rem; }
.channel-chip span { font-size: 0.68rem; font-weight: 600; color: var(--text-secondary); text-align: center; }
.channel-check {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--chip-color, var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.channel-chip.active .channel-check { opacity: 1; }

/* Mega publish button */
.mega-publish-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(107,63,160,0.5);
  transition: var(--transition-bounce);
}
.mega-publish-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(107,63,160,0.7); }
.mega-publish-btn:active { transform: scale(0.97); }
.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-15deg);
  transition: 0.6s;
}
.mega-publish-btn:hover .btn-shine { left: 150%; }

/* Publish panel */
.publish-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.publish-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(107,63,160,0.25) 0%, transparent 70%);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.panel-title { font-size: 0.95rem; font-weight: 600; }
.panel-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(107,63,160,0.25);
  color: var(--primary-light);
  border-radius: var(--radius-full);
  border: 1px solid rgba(107,63,160,0.3);
}
.publish-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.publish-item:last-child { border-bottom: none; }
.publish-item-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.publish-item-info { flex: 1; }
.publish-item-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; }
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}
.status-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.status-dot.pending::before { background: var(--gold); }

/* ── Dashboard ── */
.dashboard-section { background: var(--dark-2); }
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 60px;
  box-shadow: var(--shadow-lg);
}
.dashboard-topbar {
  background: var(--surface-2);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.db-dots { display: flex; gap: 6px; }
.db-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dashboard-body { display: grid; grid-template-columns: 220px 1fr; min-height: 460px; }
.dashboard-sidebar { background: var(--dark-2); border-right: 1px solid var(--border); padding: 20px 12px; }
.sidebar-menu { list-style: none; }
.sidebar-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 3px;
}
.sidebar-menu li:hover, .sidebar-menu li.active {
  background: rgba(107,63,160,0.15);
  color: var(--primary-light);
}
.sidebar-menu li i { width: 16px; text-align: center; }
.dashboard-main { padding: 24px; }
.db-section-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.db-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.db-stat-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.db-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.db-stat-lbl { font-size: 0.72rem; color: var(--text-muted); }
.config-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.config-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.config-card:hover { border-color: var(--border-light); background: var(--surface-3); }
.config-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.config-card-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.toggle {
  width: 34px; height: 18px;
  background: var(--primary);
  border-radius: 9px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.toggle::after {
  content: '';
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle.off { background: var(--border-light); }
.toggle.off::after { right: auto; left: 2px; }
.config-card-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.config-card-detail { font-size: 0.73rem; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-section { background: var(--dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: rgba(107,63,160,0.6);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(107,63,160,0.08) 100%);
  box-shadow: 0 0 60px rgba(107,63,160,0.2);
}
.plan-card.featured:hover { box-shadow: 0 0 80px rgba(107,63,160,0.35); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
}
.plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}
.plan-price { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 4px; }
.plan-currency { font-size: 1.4rem; font-weight: 700; color: var(--text-secondary); margin-top: 8px; }
.plan-amount { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--text-primary); line-height: 1; }
.plan-period { font-size: 0.85rem; color: var(--text-muted); align-self: flex-end; padding-bottom: 8px; }
.plan-uyu { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.plan-features li i { color: var(--teal); font-size: 0.82rem; flex-shrink: 0; }
.plan-features li.disabled { opacity: 0.38; }
.plan-features li.disabled i { color: var(--text-muted); }
.plan-card .btn { width: 100%; justify-content: center; }
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.payment-logos span { font-size: 0.8rem; color: var(--text-muted); }

/* ── About ── */
.about-section { background: var(--dark-2); }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-image-frame {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid rgba(107,63,160,0.4);
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.about-badge-float {
  position: absolute;
  bottom: 28px; right: -24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .val { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge-float .lbl { font-size: 0.75rem; color: var(--text-muted); }
.about-content .section-subtitle { margin-bottom: 20px; }
.credentials { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.cred-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(107,63,160,0.25), rgba(224,85,128,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--primary-light);
  flex-shrink: 0;
}
.cred-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; }
.cred-sub { font-size: 0.76rem; color: var(--text-muted); }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Testimonials ── */
.testimonials-section { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-role { font-size: 0.76rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, hsl(300,40%,22%) 50%, hsl(340,50%,25%) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(224,85,128,0.1) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; margin: 14px 0 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-links a:hover { background: rgba(107,63,160,0.2); border-color: var(--primary-light); color: var(--primary-light); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-secondary); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--text-secondary); }
.contact-item i { color: var(--primary-light); width: 14px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); }
.uy-badge { display: flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-bounce);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-size: 1.3rem; font-weight: 700; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--surface-3); color: var(--text-primary); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(107,63,160,0.15); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--transition-bounce);
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.1rem; color: var(--teal); }
.toast-text { font-size: 0.88rem; }
.toast-text strong { display: block; font-weight: 600; }
.toast-text span { color: var(--text-muted); font-size: 0.8rem; }

/* ── Publish animation overlay ── */
.publish-animation {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  flex-direction: column;
  gap: 20px;
}
.publish-animation.active { opacity: 1; visibility: visible; }
.publish-anim-inner { text-align: center; }
.publish-anim-inner h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.publish-anim-inner p { color: var(--text-secondary); }
.channel-orbit {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-top: 32px;
}
.orbit-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.orbit-chip i { font-size: 1.4rem; }
.orbit-chip.sent {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: var(--teal);
  color: var(--teal);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .publish-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .about-wrapper { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-sidebar { display: none; }
  .dashboard-body { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-2);
    padding: 100px 32px 40px;
    z-index: 999; gap: 6px;
  }
  .nav-links.mobile-open a { font-size: 1.15rem; padding: 12px 16px; }
  .hero-stats { gap: 20px; }
  .channel-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .db-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-badge-float { right: 8px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .about-badge-float { display: none; }
  .modal-box { padding: 24px; }
}

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-bounce);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-size: 1.3rem; font-weight: 700; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--surface-3); color: var(--text-primary); }

/* ── Form ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(107,63,160,0.15); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ── Payment Options (register step 2) ── */
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}
.payment-option:hover {
  border-color: var(--primary-light);
  background: var(--surface-3);
  transform: translateX(4px);
}
.payment-option-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.payment-option-info { flex: 1; }
.payment-option-name { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.payment-option-detail { font-size: 0.76rem; color: var(--text-muted); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--transition-bounce);
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.1rem; color: var(--teal); }
.toast-text { font-size: 0.88rem; }
.toast-text strong { display: block; font-weight: 600; }
.toast-text span { color: var(--text-muted); font-size: 0.8rem; }

/* ── Publish animation overlay ── */
.publish-animation {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  flex-direction: column;
  gap: 20px;
}
.publish-animation.active { opacity: 1; visibility: visible; }
.publish-anim-inner { text-align: center; }
.publish-anim-inner h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.publish-anim-inner p { color: var(--text-secondary); }
.channel-orbit {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-top: 32px;
}
.orbit-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.orbit-chip i { font-size: 1.4rem; }
.orbit-chip.sent {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: var(--teal);
  color: var(--teal);
}
