/*
Theme Name: PulchatX
Theme URI: http://pulchatx.com
Author: Mariner Advanced Multimedia LTDA
Author URI: http://pulchatx.com
Description: Tema profissional para a plataforma PulchatX — pesquisas musicais, análise de audiência e dashboards.
Version: 1.0.0
License: Proprietary
Text Domain: pulchatx
*/

/* =============================
   GOOGLE FONTS
   ============================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Fira+Code:wght@400;500;600&display=swap');

/* =============================
   CSS CUSTOM PROPERTIES
   ============================= */
:root {
  /* Colors */
  --bg-primary: #060d08;
  --bg-secondary: #0b1610;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --color-purple: #16a34a;
  --color-purple-light: #22c55e;
  --color-cyan: #128c7e;
  --color-cyan-light: #34d399;
  --color-magenta: #15803d;
  --color-magenta-light: #4ade80;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #060d08 0%, #0d1f10 50%, #060d08 100%);
  --gradient-purple-cyan: linear-gradient(135deg, var(--color-purple) 0%, var(--color-cyan) 100%);
  --gradient-purple-magenta: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 100%);
  --gradient-text: linear-gradient(90deg, var(--color-purple-light) 0%, var(--color-cyan) 50%, var(--color-magenta-light) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', 'Courier New', monospace;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-max: 1200px;
  --container-padding: 0 1.5rem;

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  --shadow-glow-purple: 0 0 40px rgba(34, 197, 94, 0.3);
  --shadow-glow-cyan: 0 0 40px rgba(18, 140, 126, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* =============================
   RESET & BASE
   ============================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =============================
   UTILITIES
   ============================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-purple-light);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gradient-purple-cyan);
  color: #fff;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.5);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--text-primary);
}

.btn-outline-purple {
  background: transparent;
  color: var(--color-purple-light);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.btn-outline-purple:hover {
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-purple-light);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* =============================
   GLASS CARD
   ============================= */
.glass-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-4px);
}

/* =============================
   HEADER / NAVIGATION
   ============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-purple-magenta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* =============================
   HERO SECTION
   ============================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 8rem 0 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-glow-2 {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18, 140, 126, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-glow-3 {
  position: absolute;
  bottom: 10%;
  left: 40%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-purple-light);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================
   WAVEFORM SVG DECORATION
   ============================= */
.waveform-decoration {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
}

.waveform-decoration .bar {
  width: 4px;
  background: var(--gradient-purple-cyan);
  border-radius: 2px;
  animation: waveform-pulse 1.2s ease-in-out infinite;
}

.waveform-decoration .bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.waveform-decoration .bar:nth-child(2) { height: 45%; animation-delay: 0.1s; }
.waveform-decoration .bar:nth-child(3) { height: 70%; animation-delay: 0.2s; }
.waveform-decoration .bar:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.waveform-decoration .bar:nth-child(5) { height: 80%; animation-delay: 0.4s; }
.waveform-decoration .bar:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.waveform-decoration .bar:nth-child(7) { height: 90%; animation-delay: 0.6s; }
.waveform-decoration .bar:nth-child(8) { height: 65%; animation-delay: 0.7s; }
.waveform-decoration .bar:nth-child(9) { height: 40%; animation-delay: 0.8s; }
.waveform-decoration .bar:nth-child(10) { height: 75%; animation-delay: 0.9s; }
.waveform-decoration .bar:nth-child(11) { height: 50%; animation-delay: 1.0s; }
.waveform-decoration .bar:nth-child(12) { height: 30%; animation-delay: 1.1s; }

@keyframes waveform-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .waveform-decoration .bar { animation: none; }
}

/* =============================
   ABOUT SECTION
   ============================= */
.about-section {
  padding: var(--section-padding);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-purple-cyan);
}

.about-chart-mock {
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 1rem 0;
}

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: all var(--transition-base);
}

.chart-bar-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.cb-1 { height: 60%; background: linear-gradient(to top, #16a34a, #22c55e); }
.cb-2 { height: 85%; background: linear-gradient(to top, #16a34a, #34d399); }
.cb-3 { height: 45%; background: linear-gradient(to top, #15803d, #4ade80); }
.cb-4 { height: 90%; background: linear-gradient(to top, #128c7e, #34d399); }
.cb-5 { height: 70%; background: linear-gradient(to top, #16a34a, #22c55e); }
.cb-6 { height: 55%; background: linear-gradient(to top, #15803d, #16a34a); }
.cb-7 { height: 80%; background: linear-gradient(to top, #128c7e, #16a34a); }

/* =============================
   TARGET AUDIENCE (PARA QUEM)
   ============================= */
.target-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.target-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.target-card {
  padding: 1.75rem;
  cursor: default;
}

.target-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.target-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.target-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================
   FEATURES / RESOURCES
   ============================= */
.features-section {
  padding: var(--section-padding);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.feature-card {
  padding: 2rem;
  cursor: default;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================
   DASHBOARD / ANALYTICS SECTION
   ============================= */
.dashboard-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.dashboard-section::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(18, 140, 126, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.dashboard-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: var(--glass-border);
  transition: all var(--transition-base);
}

.highlight-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(34, 197, 94, 0.25);
}

.highlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.highlight-text-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.highlight-text-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.dashboard-mock {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.dashboard-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-purple-cyan);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot-red { background: #ef4444; }
.mock-dot-yellow { background: #f59e0b; }
.mock-dot-green { background: #22c55e; }

.mock-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
  font-family: var(--font-mono);
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mock-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.mock-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mock-metric-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

/* =============================
   HOW IT WORKS
   ============================= */
.how-section {
  padding: var(--section-padding);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-mono);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
    var(--gradient-purple-cyan) border-box;
  color: var(--color-purple-light);
}

.step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================
   WHATSAPP SECTION
   ============================= */
.whatsapp-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.whatsapp-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: var(--glass-border);
  position: relative;
  overflow: hidden;
}

.whatsapp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #128c7e);
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.whatsapp-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.whatsapp-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.compliance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.compliance-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.compliance-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =============================
   CONTACT SECTION
   ============================= */
.contact-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info {
  padding-top: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-detail-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.contact-form-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: var(--glass-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--color-purple);
  background: rgba(34, 197, 94, 0.06);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-purple-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* =============================
   LEGAL PAGE TEMPLATE
   ============================= */
.legal-page {
  min-height: 100vh;
  padding-top: 6rem;
}

.legal-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.06), transparent);
  pointer-events: none;
}

.legal-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
}

.legal-hero-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  position: relative;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-purple-light);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--color-purple-light);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-info-box {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-info-box p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.legal-warning-box {
  background: rgba(21, 128, 61, 0.07);
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-contact-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.legal-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-purple-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============================
   DATA DELETION PAGE
   ============================= */
.deletion-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.deletion-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
}

.deletion-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-purple-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.deletion-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.deletion-step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================
   ICON BACKGROUNDS (color helpers)
   ============================= */
.icon-bg-purple { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.2); }
.icon-bg-cyan { background: rgba(18, 140, 126, 0.12); border: 1px solid rgba(18, 140, 126, 0.2); }
.icon-bg-magenta { background: rgba(21, 128, 61, 0.12); border: 1px solid rgba(21, 128, 61, 0.2); }
.icon-bg-green { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.2); }
.icon-bg-amber { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.2); }
.icon-bg-rose { background: rgba(244, 63, 94, 0.12); border: 1px solid rgba(244, 63, 94, 0.2); }

.text-purple { color: var(--color-purple-light); }
.text-cyan { color: var(--color-cyan-light); }
.text-magenta { color: var(--color-magenta-light); }
.text-green { color: #4ade80; }
.text-amber { color: #fbbf24; }
.text-rose { color: #fb7185; }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-container::before {
    display: none;
  }

  .step-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
  }

  .step-number {
    margin-bottom: 0;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    padding: 2rem;
  }

  .whatsapp-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .header-inner {
    padding: 1rem 1.25rem;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 15, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    z-index: 99;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .header-cta .btn:not(.btn-primary) {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-section {
    padding: 7rem 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mock-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .legal-contact-card {
    flex-direction: column;
    text-align: center;
  }
}
