/* ==========================================================================
   CleverTabs Landing Page Styling Systems (Vanilla CSS)
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
  /* Colors - Light Theme (Default) */
  --accent-color: oklch(70% 0.186 63.85); /* Marigold Gold (Amber-500) */
  --accent-hover: oklch(65% 0.19 63.85);
  --accent-light: oklch(96% 0.025 68);
  --accent-light-hover: oklch(93% 0.04 68);
  --accent-text-light: oklch(45% 0.13 63);
  
  --bg-base: #f8fafc; /* Slate-50 */
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.8);
  --border-color: #e2e8f0; /* Slate-200 */
  --border-focus: var(--accent-color);
  
  --text-main: #0f172a; /* Slate-900 */
  --text-body: #334155; /* Slate-700 */
  --text-muted: #64748b; /* Slate-500 */
  --text-white: #ffffff;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colors - Dark Theme */
.dark {
  --bg-base: #020617; /* Slate-950 */
  --bg-card: #0f172a; /* Slate-900 */
  --bg-header: rgba(2, 6, 23, 0.8);
  --border-color: #1e293b; /* Slate-800 */
  
  --text-main: #f8fafc; /* Slate-50 */
  --text-body: #cbd5e1; /* Slate-300 */
  --text-muted: #64748b; /* Slate-500 */
  
  --accent-light: oklch(25% 0.08 68 / 0.4);
  --accent-light-hover: oklch(30% 0.1 68 / 0.6);
  --accent-text-light: oklch(75% 0.15 68);

  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* --- Base & Reset Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* --- Utility Layout Helpers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.gap-1 { gap: 4px; }
.gap-1.5 { gap: 6px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 24px; }
.pb-2 { padding-bottom: 8px; }

.border-b { border-bottom: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.pt-2 { padding-top: 8px; }

.text-center { text-align: center; }
.text-center-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 48px;
}
.text-accent { color: var(--accent-color); }
.text-xxs { font-size: 10px; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }

/* --- Button Styling --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-xs {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary {
  background-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  filter: brightness(0.95);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
}

.main-nav {
  display: none;
  gap: 28px;
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.main-nav a:hover {
  color: var(--accent-color);
}

/* GitHub Icon & Link Custom Styles */
.github-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.header-github-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-github-btn:hover .github-icon {
  transform: rotate(8deg) scale(1.15);
}

.footer-github-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-github-link:hover .github-icon {
  transform: scale(1.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Theme Toggle Switch Button --- */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background-color: var(--border-color);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.sun-icon { display: block; }
.moon-icon { display: none; }

.dark .sun-icon { display: none; }
.dark .moon-icon { display: block; }

/* --- Hero Section --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: 72px;
  overflow: hidden;
}

.badge-new {
  display: inline-flex;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-text-light);
  background-color: var(--accent-light);
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 52px;
  }
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-stats {
  justify-content: flex-start;
  gap: 24px;
}

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

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-color);
}

/* --- Hero Mock Browser Graphic --- */
.hero-graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mock-browser {
  width: 100%;
  max-width: 520px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform var(--transition-slow) ease-out;
}

.mock-browser:hover {
  transform: translateY(-8px) rotate(1deg);
}

.mock-header {
  height: 40px;
  background-color: var(--bg-base);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
}

.dot-red { background-color: #f87171; }
.dot-yellow { background-color: #fbbf24; }
.dot-green { background-color: #34d399; }

.mock-address {
  font-size: 11px;
  font-family: monospace;
  color: var(--text-muted);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 3px 24px;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sim-extension {
  padding: 16px;
  background-color: var(--bg-base);
  height: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-brand {
  font-weight: 700;
  font-size: 14px;
}

.sim-badge-workspace {
  font-size: 9px;
  font-weight: 700;
  background-color: var(--accent-light);
  color: var(--accent-text-light);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.sim-search-bar {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.sim-session-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  display: block;
}

.sim-card-meta {
  font-size: 10px;
  color: var(--text-muted);
}

.sim-card-tag {
  font-size: 8px;
  font-weight: 700;
  background-color: var(--accent-light);
  color: var(--accent-text-light);
  padding: 1px 4px;
  border-radius: 4px;
}

.sim-card-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
}

.sim-tab-item {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
}

.sim-favicon {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.sim-favicon.red { background-color: #ef4444; }
.sim-favicon.blue { background-color: #3b82f6; }
.sim-favicon.green { background-color: #10b981; }
.sim-favicon.yellow { background-color: #f59e0b; }

/* --- Features Section --- */
.features-section {
  padding: 80px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
}

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

.feature-card {
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent-text-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 22px;
  height: 22px;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 600;
}

.feature-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Interactive Demo Simulator Area --- */
.demo-section {
  padding: 80px 0;
}

.demo-instructions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-step {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.step-num {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  color: var(--text-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 750;
  flex-shrink: 0;
}

.playground-frame {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.playground-header {
  height: 38px;
  background-color: var(--bg-base);
  border-bottom: 1px solid var(--border-color);
  padding: 0 12px;
}

.browser-address-bar {
  font-size: 10px;
  color: var(--text-muted);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2px 12px;
  width: 240px;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-lock {
  width: 10px;
  height: 10px;
  color: #10b981;
}

.playground-dots {
  display: flex;
  gap: 4px;
}

.playground-dots span {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
}

.simulator-body {
  position: relative;
  background-color: var(--bg-base);
  height: 420px;
  overflow: hidden;
}

/* --- Actual simulated clever tabs popup --- */
.clevertabs-sim {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.sim-pop-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  gap: 6px;
}

.sim-logo-svg {
  width: 16px;
  height: 16px;
  color: var(--accent-color);
}

.sim-search-container {
  width: 160px;
}

.sim-search-input {
  width: 100%;
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
}

.sim-workspaces-tabs {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
  justify-content: flex-start;
  gap: 8px;
}

.sim-ws-tab {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.sim-ws-tab:hover {
  background-color: var(--border-color);
  color: var(--text-main);
}

.sim-ws-tab.active {
  background-color: var(--accent-light);
  color: var(--accent-text-light);
  border: 1px solid transparent;
}

/* Scroll area of simulator */
.sim-sessions-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 2px;
}

/* Custom Scrollbars */
.sim-sessions-list::-webkit-scrollbar {
  width: 4px;
}
.sim-sessions-list::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 2px;
}

/* Simulated Session Card */
.sim-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.sim-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.sim-card-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 1px;
}

.sim-card-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.sim-card-sub {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
}

.sim-card-header-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
}

.sim-card-header-badge.work {
  background-color: var(--accent-light);
  color: var(--accent-text-light);
}

.sim-card-header-badge.personal {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.sim-card-expand-btn {
  padding: 2px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
}

.sim-card-expand-btn svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
}

.sim-card.expanded .sim-card-expand-btn svg {
  transform: rotate(180deg);
}

.sim-card-body-detail {
  border-top: 1px solid var(--border-color);
  margin-top: 4px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-card-header-action {
  font-size: 9px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 4px;
}

.sim-card-tab-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sim-card-tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sim-card-tab-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-body);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
}

.sim-card-tab-label input[type="checkbox"] {
  width: 11px;
  height: 11px;
  cursor: pointer;
}

.sim-card-tab-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sim-card-tab-actions {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.sim-card-tab-btn {
  padding: 2px;
  border-radius: 3px;
  cursor: pointer;
  color: var(--text-muted);
}

.sim-card-tab-btn:hover {
  background-color: var(--border-color);
  color: var(--text-main);
}

.sim-card-tab-btn.delete:hover {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.sim-card-tab-btn svg {
  width: 11px;
  height: 11px;
}

.sim-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
}

/* Toast Message simulated */
.sim-toast {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0f172a;
  color: #ffffff;
  font-size: 9px;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: slideUp 0.3s ease-out;
}

.dark .sim-toast {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
}

/* Restore Overlay screen */
.sim-restore-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease-out;
}

.dark .sim-restore-overlay {
  background-color: rgba(2, 6, 23, 0.9);
}

.overlay-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 280px;
}

.overlay-success-icon {
  width: 36px;
  height: 36px;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  padding: 6px;
}

.overlay-card h3 {
  font-size: 13px;
  font-weight: 700;
}

.overlay-card p {
  font-size: 10px;
  color: var(--text-muted);
}

/* Capture Modal Overlay */
.sim-add-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 90;
}

.sim-modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 280px;
}

.sim-modal-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 140px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 6px;
  background-color: var(--bg-base);
}

.sim-modal-tab-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sim-modal-tab-row input {
  flex-shrink: 0;
}

/* Animations */
@keyframes slideUp {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

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

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- Privacy Highlight Section --- */
.privacy-section {
  padding: 80px 0;
  background-color: var(--bg-base);
}

.privacy-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.badge-privacy {
  display: inline-flex;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.privacy-shield {
  width: 14px;
  height: 14px;
}

.privacy-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.privacy-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.privacy-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.privacy-bullets li {
  justify-content: flex-start;
  align-items: flex-start;
}

.bullet-check {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.privacy-graphic {
  position: relative;
  height: 240px;
}

.shield-globe {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  border: 2px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinSlow 30s linear infinite;
}

.shield-core {
  width: 72px;
  height: 72px;
  background-color: var(--accent-light);
  color: var(--accent-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: counterSpin 30s linear infinite;
}

.large-shield {
  width: 36px;
  height: 36px;
}

.globe-line {
  position: absolute;
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-full);
}

.line-1 { width: 200px; height: 100px; }
.line-2 { width: 100px; height: 200px; }
.line-3 { width: 150px; height: 150px; }

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterSpin {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background-color: var(--bg-base);
  overflow: hidden;
  transition: all var(--transition-fast);
}

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

.faq-trigger {
  width: 100%;
  padding: 18px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  color: var(--text-main);
}

.faq-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-panel p {
  padding: 0 24px 18px 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Bottom CTA Section --- */
.cta-bottom-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--bg-card), var(--accent-light));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.cta-bottom-section h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.cta-bottom-section p {
  font-size: 16px;
  color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
  padding: 40px 0;
  background-color: var(--bg-base);
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
}

.copyright {
  font-size: 11px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--accent-color);
}
