/* ==============================================================================
   CERTPASS - HIGH-END DESIGN SYSTEM & PRODUCT STYLING
   ============================================================================== */

:root {
  /* Color Palette Tokens */
  --bg-primary: #07090e;
  --bg-secondary: #0d121d;
  --bg-surface: #131b2c;
  --bg-surface-elevated: #1a243b;
  --bg-glass: rgba(19, 27, 44, 0.75);
  --bg-glass-card: rgba(25, 36, 58, 0.55);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(0, 242, 254, 0.35);

  /* Vibrant Accents */
  --primary-cyan: #00f2fe;
  --primary-blue: #4facfe;
  --accent-emerald: #00e676;
  --accent-emerald-glow: rgba(0, 230, 118, 0.25);
  --accent-purple: #9d4edd;
  --accent-rose: #ff4757;
  --accent-warning: #ffb703;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Gradients */
  --grad-cyan-blue: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-emerald-cyan: linear-gradient(135deg, #00e676 0%, #00f2fe 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(26, 36, 59, 0.8) 0%, rgba(13, 18, 29, 0.95) 100%);
  --grad-glow: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0,0,0,0) 70%);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 25px rgba(0, 242, 254, 0.35);
  --shadow-glow-emerald: 0 0 25px rgba(0, 230, 118, 0.3);

  /* Dimensions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0e1526 0%, #07090e 65%);
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

/* Ambient Glow Background Orbs */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 500px;
  height: 500px;
  top: 5%;
  left: -10%;
  background: rgba(0, 242, 254, 0.12);
}
.glow-2 {
  width: 600px;
  height: 600px;
  top: 20%;
  right: -10%;
  background: rgba(0, 230, 118, 0.1);
}
.glow-3 {
  width: 700px;
  height: 700px;
  top: 60%;
  left: 20%;
  background: rgba(157, 78, 221, 0.08);
}

/* Utility Containers */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Helper Classes */
.gradient-text {
  background: var(--grad-emerald-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-center { text-align: center; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-cyan { color: var(--primary-cyan) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-rose { color: var(--accent-rose) !important; }
.w-full { width: 100%; }
.mt-4 { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--grad-emerald-cyan);
  color: #07090e;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-emerald);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}
.btn-outline:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  background: rgba(0, 242, 254, 0.05);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block { width: 100%; }

.shadow-glow {
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.35);
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, rgba(0, 242, 254, 0.1) 0%, rgba(0, 230, 118, 0.1) 100%);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 50;
}
.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge-pulse {
  background: rgba(0, 230, 118, 0.2);
  color: var(--accent-emerald);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 230, 118, 0.3);
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulse-anim 1.5s infinite;
}
@keyframes pulse-anim {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}
.announcement-link {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.announcement-link:hover { text-decoration: underline; }

/* Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}
.brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fallback-logo-icon {
  font-size: 1.4rem;
  color: var(--accent-emerald);
}
.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.brand-tagline {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: #fff;
}
.highlight-link {
  color: var(--primary-cyan) !important;
  font-weight: 600;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-score {
  background: rgba(0, 230, 118, 0.2);
  color: var(--accent-emerald);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  transition: right 0.3s ease;
}
.mobile-menu-drawer.open { right: 0; }
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.close-drawer {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Section Common Headers */
.section-header {
  margin-bottom: 56px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary-cyan);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==============================================================================
   HERO SECTION
   ============================================================================== */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--accent-emerald);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-description code {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.95em;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}
.proof-card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.proof-info strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}
.proof-info span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Hero Visual / Mockup Card */
.hero-visual {
  position: relative;
}
.main-vault-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 242, 254, 0.08);
  overflow: hidden;
}
.card-glass-header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.window-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: monospace;
}
.status-pill {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-emerald);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-emerald {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 6px var(--accent-emerald);
}

.vault-hero-body {
  padding: 24px;
}
.vault-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.v-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 14px;
  border-radius: var(--radius-md);
}
.v-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.v-stat-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.v-stat-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.cert-hero-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cert-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}
.cert-hero-row.active-row {
  border-color: rgba(0, 230, 118, 0.4);
  background: rgba(0, 230, 118, 0.04);
}
.c-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.c-avatar.jur {
  background: rgba(157, 78, 221, 0.15);
  color: var(--accent-purple);
}
.c-avatar.warning {
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-warning);
}
.c-details {
  flex: 1;
}
.c-details strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}
.c-details span {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.c-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}
.badge-warning {
  background: rgba(255, 183, 3, 0.2);
  color: var(--accent-warning);
}
.c-action-btn {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.c-action-btn.renovar {
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-warning);
  border-color: rgba(255, 183, 3, 0.3);
}

.vault-live-audit {
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 6px var(--accent-emerald);
}
.audit-msg { color: var(--text-muted); }
.audit-msg strong { color: #fff; }

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(19, 27, 44, 0.85);
  border: 1px solid var(--border-glass-hover);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.floating-badge strong { display: block; font-size: 0.85rem; color: #fff; }
.floating-badge span { font-size: 0.72rem; color: var(--text-muted); }
.badge-top-right {
  top: -20px;
  right: -20px;
}
.badge-bottom-left {
  bottom: -20px;
  left: -20px;
}
.floating-anim-1 { animation: float-1 4s ease-in-out infinite; }
.floating-anim-2 { animation: float-2 4.5s ease-in-out infinite; }
@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==============================================================================
   INTEGRATIONS LOGO CLOUD
   ============================================================================== */
.integrations-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(13, 18, 29, 0.4);
}
.integrations-title {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.integrations-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.int-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}
.int-item i { color: var(--primary-cyan); }

/* ==============================================================================
   INTERACTIVE SIMULATOR SECTION
   ============================================================================== */
.simulator-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.04) 0%, transparent 60%);
}
.simulator-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
}

/* Simulated Browser */
.sim-browser {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.sim-browser-topbar {
  background: #090d15;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-glass);
}
.sim-browser-buttons {
  display: flex;
  gap: 6px;
}
.sim-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sim-btn.red { background: #ff5f56; }
.sim-btn.yellow { background: #ffbd2e; }
.sim-btn.green { background: #27c93f; }
.sim-url-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim-browser-ext-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}
.sim-browser-ext-icon:hover { transform: scale(1.05); }
.ext-icon-img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.ext-badge-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-emerald);
}

/* Simulated Page Canvas */
.sim-page-content {
  padding: 32px;
  min-height: 420px;
  background: #0d131f;
}
.sim-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
}
.portal-badge {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portal-user {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.portal-auth-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.portal-auth-box h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.portal-auth-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.btn-portal-sign {
  background: var(--grad-emerald-cyan);
  color: #07090e;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
  transition: var(--transition-smooth);
}
.btn-portal-sign:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

.portal-log-terminal {
  margin-top: 24px;
  background: #06090e;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  text-align: left;
  overflow: hidden;
}
.terminal-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: monospace;
}
.terminal-body {
  padding: 12px;
  font-family: monospace;
  font-size: 0.78rem;
  max-height: 120px;
  overflow-y: auto;
}
.term-line { margin-bottom: 4px; }
.term-line.info { color: var(--text-muted); }
.term-line.success { color: var(--accent-emerald); }
.term-line.hash { color: var(--primary-cyan); word-break: break-all; }

/* The Simulated Extension Popup */
.sim-extension-popup {
  position: absolute;
  top: 56px;
  right: 20px;
  width: 320px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: flex;
  flex-direction: column;
  animation: slide-popup 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slide-popup {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.popup-header {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
}
.popup-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
.popup-user-badge {
  font-size: 0.7rem;
  color: var(--accent-emerald);
  background: rgba(0, 230, 118, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
}
.popup-search-box {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup-search-box i { color: var(--text-dim); font-size: 0.8rem; }
.popup-search-box input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.8rem;
  width: 100%;
  outline: none;
}
.popup-cert-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popup-cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}
.popup-cert-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.popup-cert-item.active {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.4);
}
.cert-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.15);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.cert-item-icon.jur {
  background: rgba(157, 78, 221, 0.2);
  color: var(--accent-purple);
}
.cert-item-info {
  flex: 1;
}
.cert-item-info strong {
  display: block;
  font-size: 0.75rem;
  color: #fff;
}
.cert-item-info span {
  font-size: 0.65rem;
  color: var(--text-dim);
}
.cert-select-indicator {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.popup-cert-item.active .cert-select-indicator {
  color: var(--primary-cyan);
}
.popup-footer {
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-glass);
}
.popup-vault-status {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* Simulator Control Panel */
.sim-controls-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.panel-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.panel-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.target-portal-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.btn-portal-select {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}
.btn-portal-select:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-portal-select.active {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--primary-cyan);
}
.btn-portal-select i {
  font-size: 1.3rem;
  color: var(--primary-cyan);
}
.btn-portal-select strong {
  display: block;
  font-size: 0.9rem;
}
.btn-portal-select span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.sim-steps-wrapper h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.step-card {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}
.step-card.highlight {
  border-color: var(--accent-emerald);
  background: rgba(0, 230, 118, 0.08);
}
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.step-card.highlight .step-num {
  background: var(--accent-emerald);
  color: #07090e;
}
.step-txt strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}
.step-txt span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==============================================================================
   SOLUTIONS (CONTABILIDADE VS JURÍDICO)
   ============================================================================== */
.solutions-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-glass);
}
.tab-pill-group {
  display: inline-flex;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  padding: 6px;
  border-radius: 40px;
  margin-top: 24px;
}
.tab-pill {
  padding: 12px 24px;
  border-radius: 30px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.tab-pill.active {
  background: var(--grad-emerald-cyan);
  color: #07090e;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
}

.market-tab-content {
  margin-top: 64px;
}
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.align-center { align-items: center; }

.solution-badge {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.solution-heading {
  font-size: 2.2rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
.solution-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.solution-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sol-feat-item {
  display: flex;
  gap: 16px;
}
.sol-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.sol-feat-icon.jur {
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary-cyan);
}
.sol-feat-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.sol-feat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Solution Graphic Mockups */
.graphic-card-mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.mockup-header {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-client-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.mock-tag {
  font-size: 0.65rem;
  color: var(--accent-emerald);
  font-weight: 700;
  text-transform: uppercase;
}
.mock-client-item strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin: 2px 0;
}
.mock-badge-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.mock-blocked-item {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255, 71, 87, 0.08);
  border: 1px dashed rgba(255, 71, 87, 0.4);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--accent-rose);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Juridico Mockup rows */
.simul-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.user-badge-tag {
  font-weight: 700;
  color: var(--primary-cyan);
}
.status-active-pill {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-emerald);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}
.simul-summary-footer {
  margin-top: 16px;
  padding: 12px;
  background: rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--accent-emerald);
}

/* ==============================================================================
   BENTO GRID FEATURES
   ============================================================================== */
.features-section {
  padding: 100px 0;
  background: #090d15;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.bento-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}
.bento-large {
  grid-column: span 2;
}
.bento-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.bento-code-snippet {
  margin-top: 24px;
  background: #06080e;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--primary-cyan);
}
.bento-audit-preview {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--accent-emerald);
}

/* ==============================================================================
   INTERACTIVE CALCULATOR
   ============================================================================== */
.calculator-section {
  padding: 80px 0;
}
.calc-box-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.calc-header { margin-bottom: 40px; }
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.calc-slider-group {
  margin-bottom: 32px;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.slider-value {
  color: var(--primary-cyan);
  font-size: 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}
.custom-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
  cursor: pointer;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.res-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: var(--radius-md);
}
.res-item.full-w { grid-column: span 2; }
.res-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.res-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}
.res-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==============================================================================
   PRICING SECTION
   ============================================================================== */
.pricing-section {
  padding: 100px 0;
  background: #090d15;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}
.featured-plan {
  background: linear-gradient(180deg, rgba(26, 36, 59, 0.9) 0%, rgba(13, 18, 29, 0.95) 100%);
  border-color: rgba(0, 230, 118, 0.5);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.15);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-emerald-cyan);
  color: #07090e;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
}
.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 8px 0 24px;
  min-height: 40px;
}
.plan-price {
  margin-bottom: 32px;
}
.currency { font-size: 1.2rem; color: var(--text-muted); vertical-align: top; }
.amount { font-size: 2.8rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.period { font-size: 0.9rem; color: var(--text-dim); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==============================================================================
   FAQ ACCORDION
   ============================================================================== */
.faq-section {
  padding: 100px 0;
}
.faq-container { max-width: 860px; }
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 250px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ==============================================================================
   FINAL CTA BANNER
   ============================================================================== */
.cta-banner-section {
  padding: 60px 0 100px;
}
.cta-banner-card {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(0, 230, 118, 0.15) 100%);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow-cyan);
}
.cta-banner-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.cta-banner-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================================================================
   FOOTER
   ============================================================================== */
.main-footer {
  background: #04060a;
  border-top: 1px solid var(--border-glass);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--primary-cyan);
  color: #07090e;
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--primary-cyan); }
.footer-col span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-col code {
  color: var(--accent-emerald);
  background: rgba(0, 230, 118, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ==============================================================================
   SCORECARD MODAL (AUDIT REVIEW)
   ============================================================================== */
.scorecard-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.scorecard-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.scorecard-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.scorecard-modal-backdrop.open .scorecard-modal-box {
  transform: scale(1);
}
.sc-header {
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-title h3 { font-size: 1.15rem; }
.sc-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}
.sc-body {
  padding: 28px;
}
.sc-hero-score {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.sc-score-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-emerald-cyan);
  color: #07090e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: var(--shadow-glow-emerald);
}
.sc-number { font-size: 1.8rem; line-height: 1; }
.sc-scale { font-size: 0.75rem; font-weight: 700; }
.sc-verdict h4 {
  font-size: 1rem;
  color: var(--accent-emerald);
  margin-bottom: 4px;
}
.sc-verdict p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sc-criteria-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sc-crit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}
.sc-crit-label strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}
.sc-crit-label span {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.badge-grade {
  background: rgba(0, 242, 254, 0.15);
  color: var(--primary-cyan);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
}
.sc-footer {
  padding: 16px 28px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-glass);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .simulator-layout { grid-template-columns: 1fr; }
  .grid-2-cols { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .featured-plan { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions .btn-primary { display: none; }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2.4rem; }
  .hero-proof-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
