/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F8FAF9;
  --primary: #1b3d33;
  --accent: #3a846e;
  --accent-hover: #2b6051;
  --accent-light: #e8f5f0;
  --text: #1b3d33;
  --text-secondary: #2b6051;
  --text-tertiary: #6b8f82;
  --border: #d4ddd9;
  --border-light: #eef3f1;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --card-shadow-lg: 0 20px 50px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent any horizontal overflow */
html, body { max-width: 100vw; }

::selection {
  background: var(--accent);
  color: #fff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Noto Sans', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(58,132,110,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58,132,110,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  font-family: 'Noto Sans', sans-serif;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--text-secondary);
  background: var(--bg-alt);
  transform: translateY(-1px);
}

/* Hero section — light background with dark text */
.hero-section h1 { color: var(--primary); }
.hero-section p { color: var(--text-secondary); }
.hero-section .section-label { background: var(--accent-light); color: var(--accent); }

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 38px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  color: var(--primary);
  touch-action: manipulation;
  transition: background 0.2s ease;
}
.mobile-toggle:active {
  background: var(--bg-alt);
}

@media (max-width: 768px) {
  .nav-desktop { display: none !important; }
  .mobile-toggle { display: grid !important; }
}

/* Mobile menu overlay — full-screen frosted glass */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 32px 40px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  touch-action: manipulation;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--accent); }
.mobile-menu a.btn-primary {
  font-size: 17px;
  min-height: 56px;
  width: 100%;
  max-width: 320px;
  margin-top: 16px;
  border-radius: 12px;
  padding: 16px 32px;
}
.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--primary);
  touch-action: manipulation;
  transition: background 0.2s ease;
}
.mobile-close:active { background: var(--border); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  [data-reveal] {
    transform: translateY(16px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

/* ============================================
   SECTION LABEL
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-light);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   PRODUCT MOCKUP
   ============================================ */
.mockup {
  background: #0F172A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.mockup-body {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
  position: relative;
}

/* Simulated dashboard elements */
.mock-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  gap: 18px;
}
.mock-sidebar-dot {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.mock-sidebar-dot.active {
  background: rgba(58,132,110,0.3);
}
.mock-content {
  position: absolute;
  left: 56px;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}
.mock-topbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.mock-topbar-item {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}
.mock-kanban {
  display: flex;
  gap: 12px;
  height: calc(100% - 40px);
}
.mock-column {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-column-title {
  height: 8px;
  width: 60%;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.mock-card-item {
  height: 42px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.04);
}
.mock-card-item.accent {
  border-color: rgba(58,132,110,0.3);
  background: rgba(58,132,110,0.08);
}

/* ============================================
   FEATURE SECTION (alternating layout)
   ============================================ */
.feature-section {
  padding: 100px 0;
}
.feature-section:nth-child(even) {
  background: var(--bg-alt);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .feature-visual {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}
.feature-grid.reverse .feature-text {
  order: 1;
}
.feature-grid.reverse .feature-visual {
  order: 2;
}
@media (min-width: 768px) {
  .feature-grid.reverse .feature-text {
    order: 2;
  }
  .feature-grid.reverse .feature-visual {
    order: 1;
  }
}

.feature-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.feature-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.feature-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Feature visual placeholder */
.feature-visual-placeholder {
  background: var(--primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
  min-height: 340px;
  position: relative;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--bg-alt);
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============================================
   TRUST LOGOS
   ============================================ */
.trust-section {
  padding: 64px 0;
  text-align: center;
}
.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.trust-logo {
  font-size: 18px;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--card-shadow-hover);
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ============================================
   FORM
   ============================================ */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--card-shadow-lg);
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}
.form-input::placeholder {
  color: var(--text-tertiary);
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,132,110,0.12);
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg);
}
.faq-item:hover {
  border-color: #CBD5E1;
}
.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans', sans-serif;
}
.faq-trigger span {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: #3a846e;
  padding: 100px 0;
  text-align: center;
  color: white;
}
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.8) !important; }
.cta-section .btn-primary { background: white; color: #3a846e; }
.cta-section .btn-primary:hover { background: #F0FDFA; }
.cta-section .btn-ghost { border-color: rgba(255,255,255,0.4); color: white; }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ============================================
   PRICING + SIGNUP GRID
   ============================================ */
.pricing-signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================
   BOOK A DEMO SECTION
   ============================================ */
.book-demo-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.book-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book-demo-info h2 span { color: var(--accent); }
.book-demo-benefits {
  list-style: none;
  margin-bottom: 32px;
}
.book-demo-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
}
.book-demo-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-demo-check svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
}
.book-demo-trust {
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.book-demo-trust svg { color: var(--accent); flex-shrink: 0; }

.book-demo-calendar {
  background: white;
  border-radius: 16px;
  box-shadow: var(--card-shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.book-demo-calendar-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border-light);
}
.book-demo-calendar-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.book-demo-calendar-header p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}
.book-demo-calendar-body {
  min-height: 560px;
}
.book-demo-calendar-body iframe {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1b3d33;
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.04em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}
.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   DARK SECTION THEME (disabled — using light alternating)
   ============================================ */

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .feature-grid.reverse .feature-text { order: 1; }
  .feature-grid.reverse .feature-visual { order: 2; }
  .hero-grid { grid-template-columns: 1fr !important; text-align: center; }
  .hero-ctas { justify-content: center !important; }
  .hero-visual { margin-top: 24px; }
}

/* ============================================
   ANIMATED MOCKUP SYSTEM
   ============================================ */

/* --- Shared Mockup Container --- */
.premium-mockup {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-mockup:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.premium-mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.premium-mockup-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.premium-mockup-bar .dot-red { background: #EF4444; }
.premium-mockup-bar .dot-yellow { background: #F59E0B; }
.premium-mockup-bar .dot-green { background: #22C55E; }
.premium-mockup-bar .bar-title {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* --- Keyframe Animations --- */
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* cardSlide removed — replaced by JS kanban animation */
@keyframes fadeInRow {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes typingDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}
@keyframes messageReveal {
  from { opacity: 0; transform: translateY(10px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 200px; }
}
@keyframes columnCountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes subtleGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,132,110,0); }
  50% { box-shadow: 0 0 12px 2px rgba(58,132,110,0.15); }
}

/* --- Hero Dashboard Mockup --- */
.hero-dash { display: flex; height: 420px; max-height: 420px; position: relative; overflow: hidden; }
.hero-dash-sidebar {
  width: 52px;
  background: #0F172A;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  gap: 14px;
  flex-shrink: 0;
}
.hero-dash-sidebar .nav-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
}
.hero-dash-sidebar .nav-icon.active { background: rgba(58,132,110,0.25); }
.hero-dash-sidebar .nav-icon .icon-inner {
  width: 14px; height: 14px; border-radius: 3px; background: rgba(255,255,255,0.2);
}
.hero-dash-sidebar .nav-icon.active .icon-inner { background: #3a846e; }
.hero-dash-main { flex: 1; padding: 16px 18px; background: #F8FAFC; overflow: hidden; }

/* Stats row */
.hero-stats-row { display: flex; gap: 10px; margin-bottom: 14px; }
.hero-stat-card {
  flex: 1; background: #fff; border-radius: 8px; padding: 10px 12px;
  border: 1px solid #E2E8F0;
  animation: countUp 0.6s ease both;
}
.hero-stat-card:nth-child(1) { animation-delay: 0.2s; }
.hero-stat-card:nth-child(2) { animation-delay: 0.4s; }
.hero-stat-card:nth-child(3) { animation-delay: 0.6s; }
.hero-stat-card:nth-child(4) { animation-delay: 0.8s; }
.hero-stat-label { font-size: 9px; color: #94A3B8; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-stat-value { font-size: 18px; font-weight: 800; color: #1b3d33; letter-spacing: -0.03em; margin-top: 2px; }
.hero-stat-change { font-size: 9px; font-weight: 600; color: #22C55E; margin-top: 1px; }

/* Kanban */
.hero-kanban { display: flex; gap: 10px; flex: 1; position: relative; overflow: visible; }
.hero-kanban-col {
  flex: 1; background: #fff; border-radius: 8px; padding: 8px;
  border: 1px solid #E2E8F0; display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.hero-kanban-col-header {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 6px; border-radius: 4px; display: flex; align-items: center; justify-content: space-between;
}
.hero-kanban-card {
  background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px; padding: 7px 8px;
  animation: float 3s ease-in-out infinite;
  min-height: 52px; box-sizing: border-box;
}
.hero-kanban-card:nth-child(2) { animation-delay: 0.3s; }
.hero-kanban-card:nth-child(3) { animation-delay: 0.6s; }
.hero-kanban-card:nth-child(4) { animation-delay: 0.9s; }
.hero-kanban-card:nth-child(5) { animation-delay: 1.2s; }
.hero-kanban-card .card-name { font-size: 9px; font-weight: 600; color: #1b3d33; }
.hero-kanban-card .card-role { font-size: 8px; color: #94A3B8; margin-top: 1px; }
.hero-kanban-card .card-badge {
  display: inline-block; font-size: 7px; font-weight: 600; padding: 1px 5px;
  border-radius: 3px; margin-top: 3px;
}
.hero-kanban-card.dragging {
  border-color: #3a846e;
  background: rgba(58,132,110,0.04);
  position: relative;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

/* --- Vault Mockup --- */
.vault-body { padding: 18px; background: #F8FAFC; }
.vault-search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 8px;
  padding: 9px 14px; margin-bottom: 12px; position: relative;
}
.vault-search-text { font-size: 12px; color: #1b3d33; font-weight: 500; white-space: nowrap; }
.vault-cursor {
  display: inline-block; width: 1px; height: 14px; background: #3a846e;
  animation: blink 1s step-end infinite; margin-left: 2px; vertical-align: middle;
}
.vault-chips { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; min-height: 28px; }

/* Table */
.vault-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.vault-table th {
  font-size: 9px; font-weight: 600; color: #94A3B8; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 6px 8px; text-align: left;
  border-bottom: 1px solid #E2E8F0;
}
.vault-table td { padding: 8px; font-size: 10px; color: #1b3d33; border-bottom: 1px solid #F1F5F9; }
.vault-table thead tr { opacity: 1; }
.vault-avatar {
  width: 24px; height: 24px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 9px; font-weight: 700;
  color: #fff; margin-right: 6px; vertical-align: middle; flex-shrink: 0;
}
.vault-stars { color: #F59E0B; font-size: 9px; letter-spacing: 1px; }

/* --- Pipeline Mockup --- */
.pipeline-body { padding: 14px; background: #F8FAFC; min-height: 400px; }
.pipeline-kanban { display: flex; gap: 8px; height: 380px; }
.pipeline-col {
  flex: 1; background: #fff; border-radius: 8px; padding: 8px;
  border: 1px solid #E2E8F0; display: flex; flex-direction: column; gap: 6px;
  overflow: visible;
}
.pipeline-col-header {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 7px; display: flex; align-items: center; justify-content: space-between;
  border-top: 3px solid; border-radius: 4px 4px 0 0; margin: -8px -8px 4px -8px;
  padding-top: 10px;
}
.pipeline-col-header .col-count {
  background: rgba(0,0,0,0.06); border-radius: 10px; padding: 1px 6px;
  font-size: 9px; font-weight: 700;
}
.pipeline-card {
  background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px; padding: 8px;
  animation: float 3.5s ease-in-out infinite;
  min-height: 52px; box-sizing: border-box;
}
.pipeline-card:nth-child(odd) { animation-delay: 0.4s; }
.pipeline-card .p-name { font-size: 9.5px; font-weight: 600; color: #1b3d33; }
.pipeline-card .p-company { font-size: 8px; color: #94A3B8; margin-top: 1px; }
.pipeline-card .p-badge {
  display: inline-block; font-size: 7.5px; font-weight: 600; padding: 1px 6px;
  border-radius: 3px; margin-top: 4px;
}
.pipeline-card.dragging {
  border-color: #8B5CF6;
  background: rgba(139,92,246,0.04);
  z-index: 10; position: relative;
  animation: float 3.5s ease-in-out infinite;
}
.pipeline-col-header .col-count.pulse { animation: columnCountPulse 7s ease-in-out infinite; }

/* --- AI Copilot Mockup --- */
.ai-body { padding: 0; display: flex; flex-direction: column; height: 420px; }
.ai-header {
  background: #0F172A; padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.ai-header-icon {
  width: 28px; height: 28px; border-radius: 8px; background: rgba(58,132,110,0.25);
  display: grid; place-items: center;
}
.ai-header-dot { width: 12px; height: 12px; border-radius: 3px; background: #3a846e; }
.ai-header-title { font-size: 13px; font-weight: 700; color: #fff; }
.ai-header-status { font-size: 10px; color: rgba(255,255,255,0.4); }

.ai-messages { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #F8FAFC; overflow: hidden; }
.ai-msg {
  max-width: 82%; border-radius: 12px; padding: 10px 14px; font-size: 11px; line-height: 1.6;
}
.ai-msg.user {
  align-self: flex-end; background: #3a846e; color: #fff;
  border-bottom-right-radius: 4px;
}
.ai-msg.bot {
  align-self: flex-start; background: #fff; color: #1b3d33;
  border: 1px solid #E2E8F0; border-bottom-left-radius: 4px;
}
.ai-typing { display: flex; gap: 4px; padding: 4px 0; }
.ai-typing .t-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #94A3B8;
  animation: typingDot 1.4s ease-in-out infinite;
}
.ai-typing .t-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing .t-dot:nth-child(3) { animation-delay: 0.4s; }
.ai-result-card {
  background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px;
  padding: 8px 10px; margin-top: 8px;
}
.ai-result-row {
  display: flex; align-items: center; gap: 8px; padding: 5px 0;
  border-bottom: 1px solid #F1F5F9;
}
.ai-result-row:last-child { border-bottom: none; }
.ai-input-bar {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  background: #fff; border-top: 1px solid #E2E8F0;
}
.ai-input-field {
  flex: 1; font-size: 11px; color: #94A3B8; padding: 8px 12px;
  background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px;
}
.ai-send-btn {
  width: 32px; height: 32px; border-radius: 8px; background: #3a846e;
  display: grid; place-items: center; flex-shrink: 0;
}
.ai-send-arrow { width: 0; height: 0; border-left: 5px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent; margin-left: 2px; }
.ai-msg.bot.reveal {
  animation: messageReveal 0.8s ease both;
  animation-delay: 2s;
}
.ai-msg.bot .ai-typing-wrapper {
  animation: messageReveal 0.5s ease both reverse;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

/* --- Kanban drag z-index override --- */
.hero-kanban-card.dragging, .pipeline-card.dragging {
  z-index: 10 !important;
  position: relative;
  opacity: 1 !important;
  background: #fff !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}
/* Kanban drop bounce */
@keyframes dropBounce {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes chipAppear {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Feature Mini Mockups --- */
.feature-mini-mock {
  margin-top: 16px;
  height: 120px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* 1. PF & Bayut — synced agent profile cards */
.mini-pf-bayut { gap: 0; padding: 10px 14px; position: relative; }
.mini-pf-bayut-card {
  flex: 1; background: #fff; border-radius: 8px; padding: 10px 12px;
  border: 1px solid #E2E8F0; display: flex; flex-direction: column; gap: 4px;
  position: relative; z-index: 1;
}
.mini-pf-bayut-card:first-child { margin-right: -1px; border-radius: 8px 0 0 8px; }
.mini-pf-bayut-card:last-child { border-radius: 0 8px 8px 0; }
.mini-pf-bayut-card .source-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 8px; font-weight: 700; letter-spacing: 0.04em;
  padding: 2px 6px; border-radius: 4px; width: fit-content;
}
.mini-pf-bayut-card .source-badge.pf { background: #E0F2FE; color: #0284C7; }
.mini-pf-bayut-card .source-badge.bayut { background: #FEF3C7; color: #D97706; }
.mini-pf-bayut-card .agent-name { font-size: 9px; font-weight: 700; color: #1b3d33; }
.mini-pf-bayut-card .agent-stats { display: flex; gap: 8px; margin-top: 2px; }
.mini-pf-bayut-card .agent-stat { font-size: 8px; color: #64748B; }
.mini-pf-bayut-card .agent-stat strong { color: #1b3d33; font-weight: 700; }
.mini-pf-bayut-card .agent-stat strong[data-count] { display: inline-block; min-width: 12px; }
.mini-pf-sync {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 22px; height: 22px; border-radius: 50%; background: #3a846e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(58,132,110,0.35);
  animation: syncPulse 2.5s ease-in-out infinite;
}
.mini-pf-sync svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2; }
@keyframes syncPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(58,132,110,0.35); transform: translate(-50%, -50%) scale(1); }
  50% { box-shadow: 0 0 16px 4px rgba(58,132,110,0.3); transform: translate(-50%, -50%) scale(1.1); }
}

/* 2. Agent Performance — mini bar chart */
.mini-bar-chart { gap: 8px; align-items: flex-end !important; padding: 0 24px; }
.mini-bar-chart .bar {
  width: 22px; border-radius: 4px 4px 0 0; background: var(--accent);
  box-shadow: 0 2px 6px rgba(58,132,110,0.2);
  animation: barGrow 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}
.mini-bar-chart .bar:nth-child(1) { animation-delay: 0s; }
.mini-bar-chart .bar:nth-child(2) { animation-delay: 0.3s; }
.mini-bar-chart .bar:nth-child(3) { animation-delay: 0.6s; }
.mini-bar-chart .bar:nth-child(4) { animation-delay: 0.9s; }
@keyframes barGrow {
  0% { height: 24px; }
  50% { height: 72px; }
  100% { height: 40px; }
}

/* 3. Advanced Search — filter chips + count */
.mini-search-filters { flex-direction: column; gap: 8px; }
.mini-search-chips { display: flex; gap: 6px; }
.mini-search-chips .chip {
  padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: 700;
  background: #3a846e; color: #fff; opacity: 0;
  box-shadow: 0 2px 6px rgba(58,132,110,0.25);
  animation: chipFadeIn 4s ease-in-out infinite;
}
.mini-search-chips .chip:nth-child(1) { animation-delay: 0s; }
.mini-search-chips .chip:nth-child(2) { animation-delay: 0.6s; }
.mini-search-chips .chip:nth-child(3) { animation-delay: 1.2s; }
.mini-search-count { font-size: 10px; color: #64748B; font-weight: 600; animation: countFlicker 4s ease-in-out infinite 1.8s; }
@keyframes chipFadeIn {
  0%, 10% { opacity: 0; transform: translateY(4px); }
  20%, 80% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes countFlicker {
  0%, 30% { opacity: 0; }
  40%, 80% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

/* 4. Smart Pipeline — mini kanban with card slide */
.mini-pipeline { gap: 4px; padding: 8px 12px; align-items: stretch !important; }
.mini-pipeline-col {
  flex: 1; background: #fff; border-radius: 4px; border: 1px solid #E2E8F0;
  padding: 4px; display: flex; flex-direction: column; gap: 3px; position: relative; overflow: visible;
}
.mini-pipeline-col-top {
  height: 3px; border-radius: 2px 2px 0 0; margin: -4px -4px 3px -4px;
}
.mini-pipeline-col-label {
  font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: #94A3B8; padding: 0 2px; margin-bottom: 1px;
}
.mini-pipeline-card {
  height: 10px; border-radius: 3px; background: #F1F5F9; border: 1px solid #E2E8F0;
}
.mini-pipeline-card.moving {
  background: rgba(58,132,110,0.12); border-color: #3a846e;
  animation: miniCardSlide 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: 10; position: relative;
}
@keyframes miniCardSlide {
  0% { transform: translateX(0) translateY(0); opacity: 1; }
  12% { transform: translateX(0) translateY(-30px) scale(1.05); opacity: 1; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
  35% { transform: translateX(calc(100% + 8px)) translateY(-30px) scale(1.05); opacity: 1; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
  50% { transform: translateX(calc(100% + 8px)) translateY(-24px) scale(1); opacity: 1; }
  60% { transform: translateX(calc(100% + 8px)) translateY(-24px) scale(1); opacity: 1; }
  70% { transform: translateX(calc(100% + 8px)) translateY(-24px) scale(1); opacity: 0; }
  71% { transform: translateX(0) translateY(0) scale(1); opacity: 0; }
  85% { transform: translateX(0) translateY(0) scale(1); opacity: 1; }
  100% { transform: translateX(0) translateY(0) scale(1); opacity: 1; }
}

/* 5. CV Parsing — lines appearing */
.mini-cv-parse { flex-direction: column; gap: 6px; padding: 12px 20px; align-items: flex-start !important; width: 100%; }
.mini-cv-parse .line {
  height: 7px; border-radius: 3px; background: #E2E8F0; opacity: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  animation: lineAppear 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mini-cv-parse .line:nth-child(1) { width: 70%; animation-delay: 0s; }
.mini-cv-parse .line:nth-child(2) { width: 55%; animation-delay: 0.4s; }
.mini-cv-parse .line:nth-child(3) { width: 80%; animation-delay: 0.8s; }
.mini-cv-parse .line:nth-child(4) { width: 40%; animation-delay: 1.2s; }
.mini-cv-parse .line:nth-child(5) { width: 65%; animation-delay: 1.6s; }
@keyframes lineAppear {
  0%, 10% { opacity: 0; transform: translateX(-8px); }
  20%, 70% { opacity: 1; transform: translateX(0); background: var(--accent-light); }
  80%, 100% { opacity: 0; transform: translateX(0); }
}

/* 6. Maildrop — large envelope slides in, opens with 3D flap, CV slides out, slides right, checkmark bounce */
.mini-maildrop { position: relative; width: 100%; height: 140px; justify-content: center !important; overflow: hidden; perspective: 400px; }
.mini-maildrop .envelope-wrap {
  position: absolute; left: 8%; top: 50%; transform: translateY(-50%);
  width: 64px; height: 44px;
  animation: mdEnvSlide2 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mini-maildrop .envelope-body {
  width: 64px; height: 44px; background: #94A3B8; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
}
.mini-maildrop .envelope-body .cv-label {
  font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.08em;
}
.mini-maildrop .env-flap {
  position: absolute; top: 0; left: 0; width: 64px; height: 22px;
  background: #7C8BA0; border-radius: 2px 2px 0 0;
  transform-origin: top center; z-index: 3;
  animation: mdFlapOpen2 8s ease-in-out infinite;
}
.mini-maildrop .cv-doc {
  position: absolute; left: 8%; top: 50%; transform: translateY(-50%);
  width: 48px; height: 58px; background: #fff; border: 2px solid #E2E8F0; border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; padding-top: 6px;
  opacity: 0; z-index: 4;
  animation: mdCvOut2 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mini-maildrop .cv-doc .cv-title { font-size: 7px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.mini-maildrop .cv-doc .cv-line { width: 32px; height: 3px; background: #E2E8F0; border-radius: 2px; margin-bottom: 3px; }
.mini-maildrop .cv-doc .cv-line:nth-child(3) { width: 26px; }
.mini-maildrop .cv-doc .cv-line:nth-child(4) { width: 30px; }
.mini-maildrop .md-check-circle {
  position: absolute; right: 16%; top: 50%; transform: translateY(-50%) scale(0);
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; z-index: 5;
  animation: mdCheckBounce2 8s ease-in-out infinite;
}
.mini-maildrop .md-check-circle .check-mark { font-size: 20px; color: #fff; font-weight: 700; }
.mini-maildrop .md-added-text {
  position: absolute; right: 8%; top: calc(50% + 30px); transform: translateX(0);
  font-size: 11px; font-weight: 700; color: var(--accent); opacity: 0; white-space: nowrap;
  animation: mdTextFade2 8s ease-in-out infinite;
}
@keyframes mdEnvSlide2 {
  0% { transform: translateY(-50%) translateX(-80px); opacity: 0; }
  10%, 35% { transform: translateY(-50%) translateX(0); opacity: 1; }
  50%, 60% { transform: translateY(-50%) translateX(100px); opacity: 0.6; }
  65%, 100% { transform: translateY(-50%) translateX(100px); opacity: 0; }
}
@keyframes mdFlapOpen2 {
  0%, 12% { transform: rotateX(0deg); }
  20%, 40% { transform: rotateX(-180deg); }
  50%, 100% { transform: rotateX(-180deg); }
}
@keyframes mdCvOut2 {
  0%, 25% { opacity: 0; transform: translateY(-50%) translateX(0); }
  35% { opacity: 1; transform: translateY(calc(-50% - 40px)) translateX(0); }
  45%, 55% { opacity: 1; transform: translateY(calc(-50% - 40px)) translateX(100px); }
  60%, 100% { opacity: 0; transform: translateY(calc(-50% - 40px)) translateX(100px); }
}
@keyframes mdCheckBounce2 {
  0%, 58% { opacity: 0; transform: translateY(-50%) scale(0); }
  65% { opacity: 1; transform: translateY(-50%) scale(1.2); }
  70%, 82% { opacity: 1; transform: translateY(-50%) scale(1); }
  90%, 100% { opacity: 0; transform: translateY(-50%) scale(1); }
}
@keyframes mdTextFade2 {
  0%, 68% { opacity: 0; transform: translateY(4px); }
  74%, 82% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(0); }
}

/* 7. Branded Career Pages — shimmer hero + sliding job cards */
.mini-career-page { flex-direction: column; gap: 0; padding: 0; width: 100%; }
.mini-career-bar { width: 100%; height: 18px; background: #E2E8F0; display: flex; align-items: center; padding: 0 8px; gap: 3px; }
.mini-career-bar .dot { width: 5px; height: 5px; border-radius: 50%; background: #CBD5E1; }
.mini-career-hero {
  width: 100%; height: 28px; background: linear-gradient(90deg, #3a846e, #2b6051, #3a846e);
  background-size: 200% 100%; animation: careerShimmer 3s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
.mini-career-hero-text { height: 6px; width: 60px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.mini-career-content { flex: 1; width: 100%; padding: 6px 10px; display: flex; flex-direction: column; gap: 4px; }
.mini-career-job {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 6px; background: #fff; border: 1px solid #E2E8F0; border-radius: 4px;
  opacity: 0; animation: jobSlideIn 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mini-career-job:nth-child(1) { animation-delay: 0.3s; }
.mini-career-job:nth-child(2) { animation-delay: 0.7s; }
.mini-career-job:nth-child(3) { animation-delay: 1.1s; }
.mini-career-job-info .job-title { font-size: 7px; font-weight: 700; color: #1b3d33; }
.mini-career-job-info .job-loc { font-size: 6px; color: #94A3B8; }
.mini-career-apply {
  font-size: 6px; font-weight: 700; color: #fff; background: #3a846e; border-radius: 3px;
  padding: 2px 6px; white-space: nowrap;
}
.mini-career-job:nth-child(1) .mini-career-apply {
  animation: applyPulse 2s ease-in-out infinite;
}
@keyframes careerShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes jobSlideIn {
  0%, 5% { opacity: 0; transform: translateX(20px); }
  15%, 70% { opacity: 1; transform: translateX(0); }
  85%, 100% { opacity: 0; transform: translateX(0); }
}
@keyframes applyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,132,110,0.4); }
  50% { box-shadow: 0 0 8px 3px rgba(58,132,110,0.25); }
}
@keyframes careerCardSlideIn {
  0%, 5% { opacity: 0; transform: translateX(30px); }
  15%, 75% { opacity: 1; transform: translateX(0); }
  90%, 100% { opacity: 0.6; transform: translateX(0); }
}

/* 8. XML Job Feed — code lines */
.mini-xml { flex-direction: column; gap: 4px; padding: 10px 16px; align-items: flex-start !important; width: 100%; font-family: monospace; }
.mini-xml .code-line {
  font-size: 9px; color: #64748B; opacity: 0; white-space: nowrap;
  animation: codeFade 4s ease-in-out infinite;
}
.mini-xml .code-line:nth-child(1) { animation-delay: 0s; }
.mini-xml .code-line:nth-child(2) { animation-delay: 0.4s; }
.mini-xml .code-line:nth-child(3) { animation-delay: 0.8s; }
.mini-xml .code-line:nth-child(4) { animation-delay: 1.2s; }
.mini-xml .code-line:nth-child(5) { animation-delay: 1.6s; }
.mini-xml .bracket { color: #3a846e; font-weight: 700; }
.mini-xml .tag { color: #8B5CF6; }
.mini-xml .val { color: #1b3d33; }
@keyframes codeFade {
  0%, 5% { opacity: 0; transform: translateX(-6px); }
  15%, 80% { opacity: 1; transform: translateX(0); }
  90%, 100% { opacity: 0; }
}

/* 9. Chrome Extension — popup sliding */
.mini-chrome-ext { position: relative; width: 100%; }
.mini-chrome-tab {
  position: absolute; top: 8px; right: 16px; width: 80px; background: #fff;
  border: 1px solid #E2E8F0; border-radius: 6px; padding: 6px 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12); opacity: 0;
  animation: popupSlide 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mini-chrome-tab .popup-line { height: 5px; border-radius: 3px; background: #E2E8F0; margin-bottom: 4px; }
.mini-chrome-tab .popup-line:last-child { margin-bottom: 0; width: 60%; }
.mini-chrome-tab .popup-btn { height: 12px; width: 100%; border-radius: 3px; background: #3a846e; margin-top: 4px; }
.mini-chrome-icon { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); font-size: 24px; color: #94A3B8; }
@keyframes popupSlide {
  0%, 15% { opacity: 0; transform: translateY(-8px); }
  25%, 75% { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; transform: translateY(4px); }
}

/* 10. AI Copilot — chat bubble */
.mini-ai-chat { flex-direction: column; gap: 6px; padding: 10px 20px; align-items: flex-start !important; width: 100%; }
.mini-ai-bubble {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 10px 10px 10px 4px;
  padding: 8px 12px; opacity: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  animation: bubbleReveal 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.mini-ai-dots { display: flex; gap: 3px; }
.mini-ai-dots .d {
  width: 5px; height: 5px; border-radius: 50%; background: #94A3B8;
  animation: typingDot 1.4s ease-in-out infinite;
}
.mini-ai-dots .d:nth-child(2) { animation-delay: 0.2s; }
.mini-ai-dots .d:nth-child(3) { animation-delay: 0.4s; }
.mini-ai-reply {
  background: #3a846e; border-radius: 10px 10px 4px 10px;
  padding: 8px 12px; font-size: 9px; color: #fff; font-weight: 600;
  align-self: flex-end; opacity: 0;
  box-shadow: 0 2px 8px rgba(58,132,110,0.25);
  animation: bubbleReveal 4s cubic-bezier(0.16, 1, 0.3, 1) infinite 2s;
}
@keyframes bubbleReveal {
  0%, 10% { opacity: 0; transform: translateY(6px); }
  25%, 70% { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; }
}

/* 11. Automated Workflows — connected nodes with pulse */
.mini-workflow { gap: 0; padding: 0 20px; position: relative; }
.mini-workflow .node {
  width: 16px; height: 16px; border-radius: 50%; background: #E2E8F0; border: 2px solid #CBD5E1;
  position: relative; z-index: 1; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mini-workflow .node.active { background: var(--accent-light); border-color: var(--accent); box-shadow: 0 0 8px rgba(58,132,110,0.2); }
.mini-workflow .connector {
  width: 40px; height: 2px; background: #E2E8F0; position: relative;
}
.mini-workflow .connector .pulse {
  position: absolute; top: -3px; left: 0; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  animation: pulseTravelLine 3s ease-in-out infinite;
}
.mini-workflow .connector:nth-child(4) .pulse { animation-delay: 1s; }
.mini-workflow .connector:nth-child(6) .pulse { animation-delay: 2s; }
@keyframes pulseTravelLine {
  0% { left: 0; opacity: 1; }
  100% { left: 100%; opacity: 0.3; }
}

/* 12. Smart CV Parsing — doc with highlights */
.mini-cv-doc { position: relative; width: 100%; padding: 10px 24px; flex-direction: column; }
.mini-cv-doc .doc-outline {
  width: 70px; background: #fff; border: 1px solid #E2E8F0; border-radius: 4px;
  padding: 8px; display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mini-cv-doc .doc-outline .hl {
  height: 5px; border-radius: 2px; background: #E2E8F0; opacity: 0;
  animation: highlightScan 3.5s ease-in-out infinite;
}
.mini-cv-doc .doc-outline .hl:nth-child(1) { width: 100%; animation-delay: 0s; }
.mini-cv-doc .doc-outline .hl:nth-child(2) { width: 80%; animation-delay: 0.5s; }
.mini-cv-doc .doc-outline .hl:nth-child(3) { width: 90%; animation-delay: 1.0s; }
.mini-cv-doc .doc-outline .hl:nth-child(4) { width: 60%; animation-delay: 1.5s; }
.mini-cv-doc .doc-outline .hl:nth-child(5) { width: 75%; animation-delay: 2.0s; }
.mini-cv-doc .doc-outline .hl:nth-child(6) { width: 50%; animation-delay: 2.5s; }
@keyframes highlightScan {
  0%, 10% { opacity: 0.3; background: #E2E8F0; }
  30%, 50% { opacity: 1; background: var(--accent-light); }
  70%, 100% { opacity: 0.3; background: #E2E8F0; }
}

/* 11. Onboarding Checklists — items check off one by one */
.mini-onboard-checklist { flex-direction: column; gap: 5px; padding: 10px 14px; width: 100%; }
.mini-onboard-checklist .ob-item {
  display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 600; color: #334155;
}
.mini-onboard-checklist .ob-check {
  width: 16px; height: 16px; border-radius: 4px; border: 2px solid #CBD5E1;
  display: flex; align-items: center; justify-content: center; font-size: 9px; color: transparent;
  transition: all 0.3s ease;
}
.mini-onboard-checklist .ob-item.checked .ob-check {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.mini-onboard-checklist .ob-item:nth-child(1) { animation: obCheck 6s ease-in-out infinite; }
.mini-onboard-checklist .ob-item:nth-child(2) { animation: obCheck 6s ease-in-out infinite 1s; }
.mini-onboard-checklist .ob-item:nth-child(3) { animation: obCheck 6s ease-in-out infinite 2s; }
.mini-onboard-checklist .ob-item:nth-child(4) { animation: obCheck 6s ease-in-out infinite 3s; }
@keyframes obCheck {
  0%, 15% { opacity: 0.5; }
  25%, 85% { opacity: 1; }
  95%, 100% { opacity: 0.5; }
}

/* 12. Document Collection — docs stacking then signature */
.mini-doc-collect { position: relative; width: 100%; height: 80px; overflow: hidden; }
.mini-doc-collect .doc-stack {
  position: absolute; left: 12%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 3px;
}
.mini-doc-collect .doc-item {
  width: 36px; height: 26px; background: #fff; border: 1.5px solid #E2E8F0; border-radius: 3px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  opacity: 0; animation: docStackIn 5s ease-in-out infinite;
}
.mini-doc-collect .doc-item:nth-child(1) { animation-delay: 0s; }
.mini-doc-collect .doc-item:nth-child(2) { animation-delay: 0.4s; }
.mini-doc-collect .doc-item:nth-child(3) { animation-delay: 0.8s; }
.mini-doc-collect .sig-line {
  position: absolute; right: 15%; top: 55%; width: 0; height: 2px; background: var(--accent);
  border-radius: 2px; animation: sigDraw 5s ease-in-out infinite 1.5s;
}
@keyframes docStackIn {
  0% { opacity: 0; transform: translateY(10px); }
  20%, 80% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}
@keyframes sigDraw {
  0%, 10% { width: 0; opacity: 0; }
  30% { opacity: 1; }
  50%, 75% { width: 60px; opacity: 1; }
  90%, 100% { width: 60px; opacity: 0; }
}

/* 13. Welcome Portal — mini browser with welcome message */
.mini-welcome-portal { flex-direction: column; gap: 0; padding: 0; width: 100%; }
.mini-welcome-bar { width: 100%; height: 14px; background: #E2E8F0; display: flex; align-items: center; padding: 0 6px; gap: 3px; border-radius: 4px 4px 0 0; }
.mini-welcome-bar .dot { width: 4px; height: 4px; border-radius: 50%; background: #CBD5E1; }
.mini-welcome-content {
  width: 100%; padding: 8px 12px; background: #F8FAFC; border: 1px solid #E2E8F0;
  border-top: none; border-radius: 0 0 4px 4px; text-align: center;
}
.mini-welcome-avatar {
  width: 24px; height: 24px; border-radius: 50%; background: var(--accent);
  margin: 0 auto 4px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 700;
  opacity: 0; animation: welcomeAppear 4s ease-in-out infinite;
}
.mini-welcome-msg {
  font-size: 8px; font-weight: 700; color: var(--primary);
  opacity: 0; animation: welcomeAppear 4s ease-in-out infinite 0.5s;
}
.mini-welcome-sub {
  font-size: 6px; color: var(--text-secondary); margin-top: 2px;
  opacity: 0; animation: welcomeAppear 4s ease-in-out infinite 1s;
}
@keyframes welcomeAppear {
  0%, 10% { opacity: 0; transform: translateY(6px); }
  25%, 75% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(0); }
}

/* Onboarding big mockup */
.onboard-body { padding: 20px; }
.onboard-progress-wrap { margin-bottom: 16px; }
.onboard-progress-label { font-size: 11px; font-weight: 700; color: var(--primary); margin-bottom: 6px; display: flex; justify-content: space-between; }
.onboard-progress-bar { height: 8px; background: #E2E8F0; border-radius: 4px; overflow: hidden; }
.onboard-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--accent), #2b6051);
  border-radius: 4px; width: 0%;
  animation: obProgressFill 5s ease-in-out infinite;
}
@keyframes obProgressFill {
  0%, 5% { width: 0%; }
  40%, 70% { width: 75%; }
  90%, 100% { width: 75%; }
}
.onboard-progress-pct {
  animation: obPctCount 5s ease-in-out infinite;
}
@keyframes obPctCount {
  0%, 5% { }
  40%, 100% { }
}
.onboard-hire-card {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--bg-alt); border-radius: 8px; margin-bottom: 14px;
}
.onboard-hire-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: #8B5CF6;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; font-weight: 700;
}
.onboard-hire-name { font-size: 12px; font-weight: 700; color: var(--primary); }
.onboard-hire-role { font-size: 10px; color: var(--text-secondary); }
.onboard-badges { display: flex; gap: 8px; margin-top: 4px; }
.onboard-badge {
  font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
}
.onboard-badge.docs { background: rgba(59,130,246,0.08); color: #3B82F6; }
.onboard-badge.training { background: rgba(245,158,11,0.08); color: #F59E0B; }
.onboard-checklist { display: flex; flex-direction: column; gap: 8px; }
.onboard-checklist-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 6px;
  font-size: 11px; font-weight: 500; color: var(--text);
  opacity: 0; animation: obItemCheck 5s ease-in-out infinite;
}
.onboard-checklist-item:nth-child(1) { animation-delay: 0.5s; }
.onboard-checklist-item:nth-child(2) { animation-delay: 1.2s; }
.onboard-checklist-item:nth-child(3) { animation-delay: 1.9s; }
.onboard-checklist-item:nth-child(4) { animation-delay: 2.6s; }
.onboard-check-box {
  width: 18px; height: 18px; border-radius: 4px; border: 2px solid #CBD5E1;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
  color: transparent; flex-shrink: 0; transition: all 0.3s;
}
.onboard-checklist-item.done .onboard-check-box {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
@keyframes obItemCheck {
  0%, 5% { opacity: 0; transform: translateX(-10px); }
  15%, 85% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; }
}

/* ============================================
   SECTION E: CLICK-TO-CALL (TWILIO)
   ============================================ */
/* Mini mockup: phone ring */
.mini-phone-ring { position: relative; width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; }
.mini-phone-ring .phone-icon {
  width: 36px; height: 36px; border-radius: 50%; background: #22C55E;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  animation: phoneShake 2s ease-in-out infinite;
}
.mini-phone-ring .phone-icon svg { width: 18px; height: 18px; fill: #fff; }
.mini-phone-ring .ring-circle {
  position: absolute; border-radius: 50%; border: 2px solid rgba(34,197,94,0.4);
  animation: ringPulse 2s ease-out infinite;
}
.mini-phone-ring .ring-circle:nth-child(2) { width: 52px; height: 52px; animation-delay: 0s; }
.mini-phone-ring .ring-circle:nth-child(3) { width: 68px; height: 68px; animation-delay: 0.4s; }
.mini-phone-ring .ring-circle:nth-child(4) { width: 84px; height: 84px; animation-delay: 0.8s; }
.mini-phone-ring .call-timer {
  position: absolute; bottom: 4px; font-size: 11px; font-weight: 700; color: #22C55E;
  font-variant-numeric: tabular-nums;
}
@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes phoneShake {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(12deg); }
  10% { transform: rotate(-12deg); }
  15% { transform: rotate(8deg); }
  20% { transform: rotate(-8deg); }
  25% { transform: rotate(0deg); }
}

/* Mini mockup: globe connections */
.mini-globe-connect { position: relative; width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; gap: 32px; }
.mini-globe-connect .flag-node {
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; background: rgba(255,255,255,0.05); border: 1px solid #E2E8F0;
}
.mini-globe-connect .globe-icon { font-size: 28px; animation: globeSpin 6s linear infinite; }
.mini-globe-connect .conn-dot {
  position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  animation: connFly 2.5s ease-in-out infinite;
}
.mini-globe-connect .conn-dot:nth-child(5) { animation-delay: 0s; }
.mini-globe-connect .conn-dot:nth-child(6) { animation-delay: 1.2s; }
@keyframes globeSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes connFly {
  0%, 100% { opacity: 0; transform: translateX(0); }
  20% { opacity: 1; }
  50% { opacity: 1; transform: translateX(20px); }
  80% { opacity: 0; transform: translateX(40px); }
}

/* Mini mockup: audio waveform */
.mini-waveform { display: flex; align-items: center; gap: 3px; height: 80px; padding: 0 24px; justify-content: center; }
.mini-waveform .wave-bar {
  width: 4px; border-radius: 2px; background: var(--accent);
  animation: waveAnim 1.2s ease-in-out infinite;
}
.mini-waveform .wave-bar:nth-child(1) { animation-delay: 0s; }
.mini-waveform .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.mini-waveform .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.mini-waveform .wave-bar:nth-child(4) { animation-delay: 0.3s; }
.mini-waveform .wave-bar:nth-child(5) { animation-delay: 0.4s; }
.mini-waveform .wave-bar:nth-child(6) { animation-delay: 0.5s; }
.mini-waveform .wave-bar:nth-child(7) { animation-delay: 0.6s; }
.mini-waveform .wave-bar:nth-child(8) { animation-delay: 0.7s; }
.mini-waveform .rec-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #EF4444; margin-left: 12px;
  animation: recPulse 1.5s ease-in-out infinite;
}
.mini-waveform .rec-label { font-size: 9px; font-weight: 700; color: #EF4444; margin-left: 4px; }
@keyframes waveAnim {
  0%, 100% { height: 10px; }
  50% { height: 36px; }
}
@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Big mockup: Call UI */
.call-body { padding: 24px; }
.call-profile {
  display: flex; align-items: center; gap: 14px; padding-bottom: 18px;
  border-bottom: 1px solid #E2E8F0; margin-bottom: 18px;
}
.call-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #3B82F6;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
}
.call-name { font-size: 14px; font-weight: 700; color: var(--primary); }
.call-company { font-size: 11px; color: var(--text-secondary); }
.call-btn-start {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 10px; background: #22C55E; color: #fff;
  font-size: 14px; font-weight: 700; border: none; margin-bottom: 20px;
  animation: callBtnPulse 3s ease-in-out infinite;
}
@keyframes callBtnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
.call-active {
  background: #F8FAFC; border-radius: 12px; padding: 20px; text-align: center;
  border: 1px solid #E2E8F0;
}
.call-timer-big {
  font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums; margin-bottom: 12px;
  animation: timerCount 60s steps(1) infinite;
}
.call-wave-row { display: flex; align-items: center; justify-content: center; gap: 3px; margin-bottom: 16px; height: 32px; }
.call-wave-row .cw-bar {
  width: 4px; border-radius: 2px; background: var(--accent);
  animation: waveAnim 1.2s ease-in-out infinite;
}
.call-wave-row .cw-bar:nth-child(1) { animation-delay: 0s; }
.call-wave-row .cw-bar:nth-child(2) { animation-delay: 0.15s; }
.call-wave-row .cw-bar:nth-child(3) { animation-delay: 0.3s; }
.call-wave-row .cw-bar:nth-child(4) { animation-delay: 0.45s; }
.call-wave-row .cw-bar:nth-child(5) { animation-delay: 0.6s; }
.call-wave-row .cw-bar:nth-child(6) { animation-delay: 0.75s; }
.call-wave-row .cw-bar:nth-child(7) { animation-delay: 0.9s; }
.call-wave-row .cw-bar:nth-child(8) { animation-delay: 1.05s; }
.call-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 12px; }
.call-action-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 8px;
  font-size: 12px; font-weight: 600; border: 1px solid #E2E8F0; background: #fff; color: var(--text);
}
.call-action-btn.end { background: #EF4444; color: #fff; border-color: #EF4444; }
.call-rec-indicator {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: 11px; font-weight: 600; color: #EF4444;
}
.call-rec-indicator .rec-dot-big {
  width: 8px; height: 8px; border-radius: 50%; background: #EF4444;
  animation: recPulse 1.5s ease-in-out infinite;
}

/* ============================================
   SECTION F: OUTREACH AUTOMATION
   ============================================ */
/* Mini mockup: WhatsApp chat bubble */
.mini-wa-chat { flex-direction: column; gap: 6px; padding: 10px 16px; width: 100%; align-items: flex-start !important; }
.mini-wa-bubble {
  background: #DCF8C6; padding: 8px 12px; border-radius: 8px 8px 8px 0; font-size: 9px;
  color: #1B3A2D; max-width: 85%; opacity: 0;
  animation: waAppear 3s ease-in-out infinite;
}
.mini-wa-status {
  font-size: 8px; font-weight: 700; color: #25D366; opacity: 0;
  animation: waAppear 3s ease-in-out infinite 1s;
}
@keyframes waAppear {
  0%, 10% { opacity: 0; transform: translateY(6px); }
  25%, 75% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; }
}

/* Mini mockup: LinkedIn connect */
.mini-li-connect { flex-direction: column; gap: 8px; padding: 10px 16px; width: 100%; }
.mini-li-card {
  display: flex; align-items: center; gap: 8px; background: #F3F6FB; padding: 8px 10px;
  border-radius: 8px; border: 1px solid #D6E4F0;
}
.mini-li-avatar {
  width: 24px; height: 24px; border-radius: 50%; background: #0A66C2;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
}
.mini-li-info { flex: 1; }
.mini-li-info .li-name { font-size: 9px; font-weight: 700; color: #1b3d33; }
.mini-li-info .li-title { font-size: 7px; color: #64748B; }
.mini-li-btn {
  padding: 4px 10px; border-radius: 14px; font-size: 8px; font-weight: 700;
  border: 1px solid #0A66C2; color: #0A66C2; background: transparent;
  animation: liConnect 4s ease-in-out infinite;
}
@keyframes liConnect {
  0%, 30% { background: transparent; color: #0A66C2; border-color: #0A66C2; }
  50%, 80% { background: #0A66C2; color: #fff; border-color: #0A66C2; }
  100% { background: transparent; color: #0A66C2; }
}

/* Mini mockup: Email sequence */
.mini-email-seq { display: flex; align-items: center; gap: 6px; padding: 10px 16px; }
.mini-email-seq .env-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.mini-email-seq .env-icon {
  width: 28px; height: 28px; border-radius: 6px; background: #E2E8F0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  opacity: 0; animation: seqLight 4s ease-in-out infinite;
}
.mini-email-seq .env-step:nth-child(1) .env-icon { animation-delay: 0s; }
.mini-email-seq .env-step:nth-child(3) .env-icon { animation-delay: 0.8s; }
.mini-email-seq .env-step:nth-child(5) .env-icon { animation-delay: 1.6s; }
.mini-email-seq .seq-arrow {
  font-size: 12px; color: #94A3B8; margin-top: -10px;
}
.mini-email-seq .reply-badge {
  font-size: 7px; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  background: rgba(34,197,94,0.1); color: #22C55E; opacity: 0;
  animation: seqLight 4s ease-in-out infinite 2.4s;
}
@keyframes seqLight {
  0%, 10% { opacity: 0; transform: scale(0.85); }
  25%, 75% { opacity: 1; transform: scale(1); background: var(--accent-light); }
  90%, 100% { opacity: 0; transform: scale(0.85); }
}

/* Big mockup: Outreach dashboard */
.outreach-body { padding: 24px; }
.outreach-header {
  font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid #E2E8F0;
}
.outreach-header span { font-size: 11px; font-weight: 500; color: var(--text-secondary); display: block; margin-top: 2px; }
.outreach-channel {
  display: flex; align-items: center; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
}
.outreach-channel:last-child { border-bottom: none; }
.outreach-ch-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.outreach-ch-icon.wa { background: rgba(37,211,102,0.1); }
.outreach-ch-icon.li { background: rgba(10,102,194,0.1); }
.outreach-ch-icon.em { background: rgba(58,132,110,0.1); }
.outreach-ch-info { flex: 1; }
.outreach-ch-stats {
  font-size: 10px; color: var(--text-secondary); display: flex; gap: 6px; flex-wrap: wrap;
}
.outreach-ch-stats strong { color: var(--primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.outreach-progress {
  height: 6px; background: #E2E8F0; border-radius: 3px; margin-top: 6px; overflow: hidden;
}
.outreach-progress-fill {
  height: 100%; border-radius: 3px; width: 0%;
  transition: width 1.5s ease-out;
}
.outreach-progress-fill.wa-fill { background: #25D366; }
.outreach-progress-fill.li-fill { background: #0A66C2; }
.outreach-progress-fill.em-fill { background: var(--accent); }

/* --- Chrome Extension popup animation --- */
@keyframes chromeExtDrop {
  0%, 15% { opacity: 0; transform: translateY(-8px); }
  25%, 55% { opacity: 1; transform: translateY(0); }
  60%, 70% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes chromeExtConfirm {
  0%, 45% { background: #3a846e; }
  55%, 70% { background: #22C55E; }
  80%, 100% { background: #3a846e; }
}

/* --- CV Parsing doc-to-profile animation --- */
@keyframes cvDocAppear {
  0%, 5% { opacity: 0; transform: translateX(-10px); }
  15%, 85% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; }
}
@keyframes cvFlowPulse {
  0%, 10% { opacity: 0; }
  20%, 60% { opacity: 1; }
  70%, 100% { opacity: 0; }
}
@keyframes cvProfileFill {
  0%, 5% { opacity: 0; transform: translateY(4px); }
  15%, 75% { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; }
}

/* --- Responsive for animated mockups (base mobile) --- */
@media (max-width: 767px) {
  .feature-visual {
    position: static !important;
    align-self: auto !important;
  }
  .premium-mockup { max-width: 100%; }
  .hero-stats-row { flex-wrap: wrap; }
  .hero-stat-card { min-width: calc(50% - 6px); }
  .hero-kanban { flex-wrap: nowrap; overflow-x: auto; }
  .hero-kanban-col { min-width: 100px; }
  .pipeline-kanban { overflow-x: auto; }
  .pipeline-col { min-width: 100px; }
  .vault-table { font-size: 9px; }
  .hero-dash-sidebar { width: 40px; }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE OVERRIDES
   Ultra-premium mobile-first optimization
   ============================================ */

/* --- LAPTOP (max 1024px) --- */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 36px;
  }
  .feature-section {
    padding: 80px 0;
  }
  .feature-text h2 {
    font-size: clamp(24px, 3vw, 36px);
  }
  .feature-visual .premium-mockup {
    max-width: 100% !important;
  }
  .hero-dash {
    height: 360px;
    max-height: 360px;
  }
  .pipeline-body {
    min-height: auto;
  }
  .pipeline-kanban {
    height: auto;
    min-height: 320px;
  }
}

/* --- TABLET (max 768px) --- */
@media (max-width: 768px) {
  /* Container breathing room */
  .container {
    padding: 0 20px;
  }

  /* Legacy split hero only — not full-viewport .hero */
  section:first-of-type:not(.hero) {
    padding: 110px 0 56px !important;
  }

  section.hero {
    padding: 0 !important;
  }

  /* Section padding — generous but not wasteful */
  .feature-section {
    padding: 56px 0;
  }
  .cta-section {
    padding: 56px 0;
  }
  .book-demo-section {
    padding: 56px 0;
  }
  .pricing-signup-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .book-demo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .book-demo-calendar-body {
    min-height: 480px;
  }
  .book-demo-calendar-body iframe {
    height: 480px !important;
  }
  #pricing,
  #signup,
  #faq {
    padding: 56px 0 !important;
  }
  .stats-bar {
    padding: 36px 0;
  }
  .trust-section {
    padding: 40px 0;
  }

  /* Feature grids stack — on mobile, show mockup between header and cards */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    display: flex !important;
    flex-direction: column;
  }
  .feature-text {
    display: contents;
  }
  .feature-text > .section-label,
  .feature-text > h2,
  .feature-text > p {
    order: 1;
  }
  .feature-visual {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .feature-visual .premium-mockup {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
  .feature-text > .feature-cards-stack {
    order: 3;
    width: 100%;
  }
  .feature-cards-stack .feature-card {
    width: 100% !important;
  }
  .feature-grid.reverse .feature-text,
  .feature-grid.reverse .feature-visual {
    order: unset !important;
  }
  .feature-grid.reverse .feature-text {
    display: contents;
  }
  .feature-grid.reverse .feature-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .feature-grid.reverse .feature-text > .section-label,
  .feature-grid.reverse .feature-text > h2,
  .feature-grid.reverse .feature-text > p {
    order: 1;
  }
  .feature-grid.reverse .feature-visual {
    order: 2 !important;
  }
  .feature-grid.reverse .feature-text > .feature-cards-stack {
    order: 3;
  }

  /* Disable sticky on mockups */
  .feature-visual {
    position: static !important;
    align-self: auto !important;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 32px !important;
  }
  .hero-ctas {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    height: 54px;
    font-size: 16px !important;
    border-radius: 12px;
  }
  .hero-visual {
    margin-top: 16px;
  }

  /* Hero H1 — impactful mobile typography */
  h1 {
    font-size: 40px !important;
    letter-spacing: -0.04em !important;
    line-height: 1.05 !important;
  }

  /* Hero subtitle */
  .hero-grid p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  /* Trial text centered */
  .hero-grid [data-reveal]:last-child p {
    text-align: center;
    font-size: 13px !important;
  }

  /* Hero dashboard mockup */
  .hero-dash {
    height: 340px;
    max-height: 340px;
  }
  .hero-stat-value {
    font-size: 15px;
  }
  .hero-stat-label {
    font-size: 8px;
  }
  .hero-stat-change {
    font-size: 8px;
  }
  .hero-kanban-card .card-name {
    font-size: 8px;
  }
  .hero-kanban-card .card-role {
    font-size: 7px;
  }
  .hero-kanban-card .card-badge {
    font-size: 6px;
  }
  .hero-kanban-col-header {
    font-size: 8px;
  }

  /* Pipeline mockup */
  .pipeline-body {
    padding: 10px;
    min-height: auto;
  }
  .pipeline-kanban {
    height: auto;
    min-height: 300px;
    gap: 6px;
  }
  .pipeline-col {
    min-width: 80px;
    padding: 6px;
  }
  .pipeline-col-header {
    font-size: 8px;
    padding: 4px 5px;
    padding-top: 8px;
  }
  .pipeline-card {
    padding: 6px;
    min-height: 44px;
  }
  .pipeline-card .p-name {
    font-size: 8px;
  }
  .pipeline-card .p-company {
    font-size: 7px;
  }
  .pipeline-card .p-badge {
    font-size: 6px;
  }

  /* Vault mockup — hide Phone column on tablet+ mobile */
  .vault-body {
    padding: 12px;
  }
  .vault-search {
    padding: 7px 10px;
  }
  .vault-table th:nth-child(3),
  .vault-table td:nth-child(3) {
    display: none;
  }
  .vault-table th {
    font-size: 8px;
    padding: 4px 6px;
  }
  .vault-table td {
    font-size: 9px;
    padding: 6px;
  }
  .vault-avatar {
    width: 20px;
    height: 20px;
    font-size: 7px;
  }

  /* AI mockup */
  .ai-body {
    height: 360px;
  }
  .ai-msg {
    font-size: 10px;
    padding: 8px 10px;
  }

  /* Call mockup */
  .call-body {
    padding: 16px;
  }
  .call-timer-big {
    font-size: 22px;
  }
  .call-actions {
    gap: 8px;
  }
  .call-action-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  /* Onboard mockup */
  .onboard-body {
    padding: 14px;
  }
  .onboard-checklist-item {
    font-size: 10px;
    padding: 6px 10px;
  }

  /* Outreach mockup */
  .outreach-body {
    padding: 16px;
  }
  .outreach-header {
    font-size: 12px;
  }
  .outreach-channel {
    padding: 10px 0;
  }

  /* Feature cards — generous padding */
  .feature-card {
    padding: 24px;
  }
  .feature-card:hover {
    transform: none;
  }
  .feature-card h4 {
    font-size: 16px;
    font-weight: 700;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Feature text */
  .feature-text h2 {
    font-size: 30px !important;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
  }
  .feature-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .feature-cards-stack {
    gap: 16px;
  }

  /* Feature mini mockups */
  .feature-mini-mock {
    height: auto !important;
    min-height: 100px;
    border-radius: 8px;
  }

  /* Section labels */
  .section-label {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Stats — 2x2 grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-value {
    font-size: 28px;
    font-weight: 800;
  }
  .stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* Pricing */
  .pricing-card {
    padding: 32px 24px;
    margin: 0 -4px;
  }

  /* Form */
  .form-card {
    padding: 28px 20px;
  }
  .form-input {
    height: 48px;
    font-size: 16px;
    padding: 12px 16px;
  }
  .form-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  #signup-form button[type="submit"] {
    height: 54px;
    font-size: 16px !important;
    border-radius: 10px;
  }

  /* FAQ tap targets — 52px minimum */
  .faq-trigger {
    padding: 16px 20px;
    min-height: 52px;
  }
  .faq-trigger span {
    font-size: 14px;
    padding-right: 12px;
  }
  .faq-body {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  /* CTA section */
  .cta-section {
    padding: 48px 0;
  }
  .cta-section h2 {
    font-size: 28px !important;
    margin-bottom: 12px;
  }
  .cta-section p {
    font-size: 15px !important;
    margin-bottom: 28px !important;
  }
  .cta-section .btn-primary,
  .cta-section .btn-ghost {
    width: 100%;
    max-width: 100%;
    height: 54px;
    font-size: 16px !important;
    justify-content: center;
    border-radius: 12px;
  }
  .cta-section [data-reveal]:last-child p {
    font-size: 13px !important;
  }

  /* Trust logos — wrap nicely */
  .trust-logos {
    gap: 16px 24px;
  }
  .trust-logo {
    font-size: 14px;
  }
  .trust-label {
    font-size: 12px;
    margin-bottom: 20px;
  }

  /* Footer — vertical stack */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-links a {
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-social {
    gap: 24px;
  }
  .footer-social a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-divider {
    margin: 24px 0;
  }
  .footer-copyright {
    text-align: left;
  }


  /* Career page mockup */
  #career-cycle-mockup {
    min-height: 420px !important;
  }

  /* Mockup general */
  .mockup-body {
    padding: 24px;
    min-height: 260px;
  }
  .premium-mockup {
    max-width: 100% !important;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .premium-mockup:hover {
    transform: none;
  }

  /* Prevent horizontal scroll from any mockup */
  .premium-mockup,
  .feature-mini-mock,
  .feature-visual-placeholder {
    max-width: 100%;
    overflow: hidden;
  }

  /* Interactive elements — proper touch handling */
  a, button, .btn-primary, .btn-ghost, .faq-trigger {
    touch-action: manipulation;
  }
}

/* --- MOBILE (max 480px) --- */
@media (max-width: 480px) {
  /* Container padding — 20px breathing room */
  .container {
    padding: 0 20px;
  }

  /* Section padding */
  .feature-section {
    padding: 48px 0;
  }
  .cta-section {
    padding: 48px 0;
  }
  #pricing,
  #signup,
  #faq {
    padding: 48px 0 !important;
  }
  .stats-bar {
    padding: 32px 0;
  }
  .trust-section {
    padding: 32px 0;
  }

  /* Hero — bold, impactful */
  section:first-of-type {
    padding: 100px 0 48px !important;
  }
  h1 {
    font-size: 38px !important;
    letter-spacing: -0.04em !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
  }
  .hero-grid p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  .hero-ctas {
    gap: 10px !important;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    max-width: 100%;
    height: 54px;
    font-size: 16px !important;
    border-radius: 12px;
    padding: 0 24px !important;
  }
  .section-label {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Hero dashboard — proportional scale */
  .hero-dash {
    height: 280px;
    max-height: 280px;
  }
  .hero-dash-sidebar {
    width: 36px;
  }
  .hero-dash-sidebar .nav-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
  }
  .hero-dash-sidebar .nav-icon .icon-inner {
    width: 12px;
    height: 12px;
  }
  .hero-dash-main {
    padding: 10px 12px;
  }
  .hero-stats-row {
    gap: 6px;
    margin-bottom: 10px;
  }
  .hero-stat-card {
    padding: 6px 8px;
  }
  .hero-stat-value {
    font-size: 13px;
  }
  .hero-stat-label {
    font-size: 7px;
  }
  .hero-stat-change {
    font-size: 7px;
  }
  .hero-kanban {
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hero-kanban-col {
    min-width: 80px;
    padding: 5px;
    gap: 4px;
  }
  .hero-kanban-col-header {
    font-size: 7px;
    padding: 3px 4px;
  }
  .hero-kanban-card {
    padding: 5px 6px;
    min-height: 40px;
    border-radius: 4px;
  }
  .hero-kanban-card .card-name {
    font-size: 7px;
  }
  .hero-kanban-card .card-role {
    font-size: 6px;
  }
  .hero-kanban-card .card-badge {
    font-size: 5px;
    padding: 1px 4px;
  }

  /* Pipeline mockup — scrollable */
  .pipeline-kanban {
    min-height: 240px;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pipeline-col {
    min-width: 64px;
    padding: 4px;
    gap: 4px;
  }
  .pipeline-col-header {
    font-size: 7px;
    padding: 3px 4px;
    padding-top: 7px;
  }
  .pipeline-col-header .col-count {
    font-size: 7px;
  }
  .pipeline-card {
    padding: 4px 5px;
    min-height: 36px;
    border-radius: 4px;
  }
  .pipeline-card .p-name {
    font-size: 7px;
  }
  .pipeline-card .p-company {
    font-size: 6px;
  }
  .pipeline-card .p-badge {
    font-size: 5px;
    padding: 1px 4px;
  }

  /* Vault mockup */
  .vault-body {
    padding: 10px;
  }
  .vault-search {
    padding: 6px 8px;
    margin-bottom: 8px;
  }
  .vault-search-text {
    font-size: 10px;
  }
  .vault-chips {
    margin-bottom: 8px;
  }
  .vault-table th {
    font-size: 7px;
    padding: 3px 4px;
  }
  .vault-table td {
    font-size: 8px;
    padding: 5px 4px;
  }
  .vault-avatar {
    width: 18px;
    height: 18px;
    font-size: 6px;
    margin-right: 4px;
  }
  .vault-stars {
    font-size: 7px;
  }

  /* AI mockup */
  .ai-body {
    height: 300px;
  }
  .ai-header {
    padding: 10px 12px;
  }
  .ai-header-title {
    font-size: 11px;
  }
  .ai-header-status {
    font-size: 9px;
  }
  .ai-messages {
    padding: 10px;
    gap: 8px;
  }
  .ai-msg {
    font-size: 9px;
    padding: 6px 8px;
    max-width: 88%;
  }
  .ai-result-card {
    padding: 6px 8px;
  }
  .ai-input-bar {
    padding: 8px 10px;
  }
  .ai-input-field {
    font-size: 9px;
    padding: 6px 8px;
  }
  .ai-send-btn {
    width: 28px;
    height: 28px;
  }

  /* Call mockup */
  .call-body {
    padding: 14px;
  }
  .call-avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .call-name {
    font-size: 13px;
  }
  .call-company {
    font-size: 10px;
  }
  .call-btn-start {
    font-size: 13px;
    padding: 10px;
  }
  .call-timer-big {
    font-size: 20px;
  }
  .call-wave-row {
    height: 24px;
  }
  .call-action-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
  .call-rec-indicator {
    font-size: 10px;
  }

  /* Onboard mockup */
  .onboard-body {
    padding: 12px;
  }
  .onboard-progress-label {
    font-size: 10px;
  }
  .onboard-hire-card {
    padding: 10px;
    gap: 8px;
  }
  .onboard-hire-avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .onboard-hire-name {
    font-size: 11px;
  }
  .onboard-hire-role {
    font-size: 9px;
  }
  .onboard-badge {
    font-size: 8px;
  }
  .onboard-checklist-item {
    font-size: 9px;
    padding: 6px 8px;
    gap: 8px;
  }
  .onboard-check-box {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  /* Outreach mockup */
  .outreach-body {
    padding: 12px;
  }
  .outreach-header {
    font-size: 11px;
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
  .outreach-header span {
    font-size: 9px;
  }
  .outreach-channel {
    padding: 8px 0;
    gap: 8px;
  }
  .outreach-ch-icon {
    width: 28px;
    height: 28px;
  }
  .outreach-ch-stats {
    font-size: 9px;
  }

  /* Career page mockup */
  #career-cycle-mockup {
    min-height: 380px !important;
  }

  /* Feature cards */
  .feature-card {
    padding: 24px;
    border-radius: 14px;
  }
  .feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
  }
  .feature-cards-stack {
    gap: 16px;
  }

  /* Feature text — premium headings */
  .feature-text h2 {
    font-size: 28px !important;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .feature-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  /* Stats — 2x2 centered grid */
  .stats-grid {
    gap: 24px 16px;
    padding: 8px 0;
  }
  .stat-value {
    font-size: 28px;
    font-weight: 800;
  }
  .stat-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
  }

  /* Pricing — full width with margin */
  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-card [style*="font-size:52px"] {
    font-size: 36px !important;
  }
  .check-item {
    font-size: 14px;
    gap: 10px;
  }
  .check-list {
    gap: 12px;
  }
  .pricing-card .btn-primary {
    height: 54px;
    font-size: 16px !important;
    border-radius: 10px;
  }

  /* Signup form — iOS zoom prevention */
  .form-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .form-input {
    height: 48px;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .form-label {
    font-size: 13px;
    font-weight: 700;
  }
  #signup-form {
    gap: 16px;
  }
  #signup-form button[type="submit"] {
    height: 54px;
    font-size: 16px !important;
    border-radius: 10px;
  }

  /* FAQ */
  .faq-trigger {
    padding: 16px 20px;
    min-height: 52px;
  }
  .faq-trigger span {
    font-size: 14px;
    padding-right: 12px;
    line-height: 1.4;
  }
  .faq-body {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.7;
  }
  .faq-item {
    border-radius: 14px;
  }

  /* CTA section — full width buttons */
  .cta-section h2 {
    font-size: 28px !important;
    line-height: 1.1;
  }
  .cta-section p {
    font-size: 15px !important;
  }
  .cta-section .btn-primary,
  .cta-section .btn-ghost {
    width: 100%;
    max-width: 100%;
    height: 54px;
    font-size: 16px !important;
    justify-content: center;
    border-radius: 12px;
  }

  /* Trust logos — 2 rows wrapping */
  .trust-logos {
    gap: 12px 20px;
  }
  .trust-logo {
    font-size: 13px;
  }
  .trust-label {
    font-size: 12px;
  }

  /* Buttons global */
  .nav-ctas .btn-primary,
  .nav-ctas .btn-ghost {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Premium mockup bar text */
  .premium-mockup-bar .bar-title {
    font-size: 9px;
  }

  /* Mini mockup scale */
  .mini-pf-bayut {
    padding: 8px 10px;
  }
  .mini-pf-bayut-card .agent-name {
    font-size: 8px;
  }
  .mini-pf-bayut-card .agent-stat {
    font-size: 7px;
  }
  .mini-pf-sync {
    width: 18px;
    height: 18px;
  }
  .mini-pf-sync svg {
    width: 10px;
    height: 10px;
  }

  /* Prevent horizontal scroll */
  .premium-mockup,
  .feature-mini-mock,
  .feature-visual-placeholder {
    max-width: 100%;
    overflow: hidden;
  }
}

/* --- Small Mobile (max 375px — iPhone SE, etc.) --- */
@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }
  h1 {
    font-size: 34px !important;
  }
  .hero-dash {
    height: 260px;
    max-height: 260px;
  }
  .hero-stat-value {
    font-size: 12px;
  }
  .hero-stat-label,
  .hero-stat-change {
    font-size: 6px;
  }
  .feature-text h2 {
    font-size: 26px !important;
  }
  .stat-value {
    font-size: 24px;
  }
  .cta-section h2 {
    font-size: 26px !important;
  }
  .ai-body {
    height: 270px;
  }
  .pipeline-kanban {
    min-height: 210px;
  }
  .pricing-card [style*="font-size:52px"] {
    font-size: 32px !important;
  }
  #career-cycle-mockup {
    min-height: 360px !important;
  }
  /* Slightly smaller cards */
  .feature-card {
    padding: 20px;
  }
  .feature-card h4 {
    font-size: 15px;
  }
  .feature-card p {
    font-size: 13px;
  }
}

/* --- Extra small phones (max 360px) --- */
@media (max-width: 360px) {
  h1 {
    font-size: 30px !important;
  }
  .hero-dash {
    height: 240px;
    max-height: 240px;
  }
  .hero-stat-value {
    font-size: 11px;
  }
  .stat-value {
    font-size: 22px;
  }
  .feature-text h2 {
    font-size: 24px !important;
  }
  .ai-body {
    height: 260px;
  }
  .pipeline-kanban {
    min-height: 200px;
  }
  #career-cycle-mockup {
    min-height: 340px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM REDESIGN — RAIM-inspired patterns, Brokerr brand
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #0D0D0D;
  --ink-light: #1A1A1A;
  --cream: #FAF8F5;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1120px;
  --radius-pill: 50px;
  --radius-lg: 20px;
  --shadow-premium: 0 24px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
}

body {
  font-family: var(--font-body);
  color: var(--ink-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--primary);
  letter-spacing: -0.03em;
  font-weight: 600;
}

h1 em, h2 em, .showcase-heading em {
  font-style: italic;
  font-weight: 500;
}

.container {
  max-width: var(--container);
  padding: 0 clamp(20px, 4vw, 40px);
}

.section-eyebrow,
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── Buttons (pill, premium) ── */
.btn-primary,
.btn-ghost,
.btn-ghost-light {
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  box-shadow: 0 4px 20px rgba(58,132,110,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58,132,110,0.38);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 16px;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 40px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* ── Navigation (premium, always visible) ── */
.nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  opacity: 1;
  transition: background 0.4s ease,
              border-color 0.4s ease,
              backdrop-filter 0.4s ease,
              box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
  box-shadow: none;
}

.nav:not(.scrolled) .nav-links a,
.nav:not(.scrolled) .mobile-toggle {
  color: rgba(255,255,255,0.82);
}

.nav:not(.scrolled) .nav-links a:hover {
  color: #fff;
}

.nav:not(.scrolled) .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}

.nav:not(.scrolled) .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

.nav:not(.scrolled) .mobile-toggle {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.nav:not(.scrolled) .nav-logo-light { opacity: 1; }
.nav:not(.scrolled) .nav-logo-dark { opacity: 0; }

.nav-inner { height: 68px; }

.nav-logo { position: relative; }
.nav-logo img { height: 28px; transition: opacity 0.3s ease; }
.nav-logo-dark { position: absolute; inset: 0 auto auto 0; opacity: 0; }
.nav.scrolled .nav-logo-light { opacity: 0; }
.nav.scrolled .nav-logo-dark { opacity: 1; }

.nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.nav.past-hero .btn-primary {
  background: var(--accent);
}

.mobile-menu-link,
.mobile-menu a {
  font-family: var(--font-display);
}

/* ── Hero (full-viewport premium) ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero--academy .hero-bg img {
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.55) 34%, rgba(13,13,13,0.12) 58%, transparent 75%),
    linear-gradient(180deg, rgba(13,13,13,0.4) 0%, transparent 20%, transparent 78%, rgba(13,13,13,0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(100px, 14vh, 140px) 0 clamp(64px, 8vh, 96px);
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-content {
  text-align: left;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
}

.hero-content h1 {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 500;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hero-product {
  width: 100%;
  max-width: 980px;
  transition: transform 0.1s ease;
}

.hero-mockup {
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-positive { color: var(--accent) !important; }

.hero-col-applied { color: #3B82F6; background: rgba(59,130,246,0.08); }
.hero-col-screening { color: #F59E0B; background: rgba(245,158,11,0.08); }
.hero-col-interview { color: #8B5CF6; background: rgba(139,92,246,0.08); }
.hero-col-hired { color: #22C55E; background: rgba(34,197,94,0.08); }

.badge-blue { background: rgba(59,130,246,0.12); color: #3B82F6; }
.badge-green { background: rgba(58,132,110,0.12); color: var(--accent); }
.badge-amber { background: rgba(245,158,11,0.12); color: #F59E0B; }
.badge-purple { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.badge-success { background: rgba(34,197,94,0.12); color: #22C55E; }

.hero-kanban-glow { animation: subtleGlow 2.5s ease-in-out infinite; }

/* Hide legacy hero */
.hero-section { display: none !important; }

/* ── Trust bar ── */
.trust-section {
  background: var(--cream);
  border-top: none;
  border-bottom: none;
  padding: 48px 0;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.trust-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.75;
}

/* ── Platform showcase ── */
.platform-showcase {
  padding: clamp(80px, 10vh, 128px) 0 clamp(64px, 8vh, 96px);
  background: var(--bg);
}

.platform-showcase .container {
  text-align: center;
  margin-bottom: 48px;
}

.showcase-heading {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 16px;
}

.showcase-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.showcase-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.showcase-card figcaption {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.showcase-card--wide {
  grid-column: span 2;
}

.showcase-card--wide img {
  aspect-ratio: 21 / 9;
}

/* ── Feature sections ── */
.feature-section {
  padding: clamp(80px, 10vh, 120px) 0;
}

.feature-text h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}

.feature-text > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.feature-card {
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.premium-mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--ink);
  padding: 72px 0;
}

.stats-bar .stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: #fff;
}

.stats-bar .stat-label {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ── Pricing + form ── */
#pricing {
  padding: clamp(80px, 10vh, 120px) 0 !important;
  background: var(--cream) !important;
}

#pricing > .container > div:first-child h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
}

.pricing-card,
.form-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

.form-input {
  border-radius: 12px;
}

/* ── FAQ ── */
#faq {
  padding: clamp(80px, 10vh, 120px) 0 !important;
}

#faq h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: #fff;
}

/* ── CTA + footer ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2922 100%);
  padding: clamp(80px, 12vh, 128px) 0;
}

.cta-section h2 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 500;
}

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 40px 0;
}

/* ── Reveal animation (RAIM easing) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-bg img {
    object-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.55) 45%, rgba(13,13,13,0.35) 100%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-bottom: 48px;
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost-light {
    width: 100%;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card--wide {
    grid-column: span 1;
  }

  .nav-logo img { height: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   MOCK-PRO + BLUEPRINT PAGE
   ═══════════════════════════════════════════════════════════ */

.mock-pro {
  max-width: 580px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27, 61, 51, 0.08);
  box-shadow:
    0 2px 4px rgba(27, 61, 51, 0.04),
    0 24px 64px rgba(27, 61, 51, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.mock-pro:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(27, 61, 51, 0.06),
    0 32px 72px rgba(27, 61, 51, 0.14);
}

.mock-pro-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #1b3d33 0%, #152f28 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-pro-chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-pro-chrome .dot-red { background: #ff605c; }
.mock-pro-chrome .dot-yellow { background: #ffbd44; }
.mock-pro-chrome .dot-green { background: #00ca4e; }

.mock-pro-title {
  flex: 1;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

.academy-mockup.mock-pro {
  max-width: 100%;
}

.academy-mockup.mock-pro img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.academy-visual {
  position: relative;
}

.academy-visual--landscape {
  align-self: center;
}

/* Module 1: frame matches image landscape ratio — no crop */
.academy-landscape--native {
  width: 100%;
  aspect-ratio: 1024 / 819;
}

.academy-landscape--native picture {
  display: block;
  width: 100%;
}

.academy-landscape--native img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .academy-module--paired-image .feature-grid {
    align-items: center;
  }

  .academy-module--paired-image .feature-visual {
    position: relative;
    top: auto;
    align-self: center;
  }
}

.academy-landscape {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(27, 61, 51, 0.08);
  box-shadow:
    0 2px 4px rgba(27, 61, 51, 0.04),
    0 20px 48px rgba(27, 61, 51, 0.1);
  background: #0f2922;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.academy-landscape:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(27, 61, 51, 0.06),
    0 28px 56px rgba(27, 61, 51, 0.14);
}

.academy-landscape picture,
.academy-landscape img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.academy-landscape--native picture,
.academy-landscape--native img {
  aspect-ratio: 1024 / 819;
  object-fit: unset;
}

.academy-landscape--square {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.academy-landscape--square picture,
.academy-landscape--square img {
  aspect-ratio: 1 / 1;
  object-fit: unset;
}

.academy-landscape .academy-module-badge {
  top: 16px;
  right: 16px;
}

.academy-module-badge {
  position: absolute;
  top: -12px;
  right: -8px;
  z-index: 2;
  background: linear-gradient(135deg, #1b3d33 0%, #2b6051 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(27, 61, 51, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav:not(.scrolled) .nav-links a.active {
  color: #fff;
}

.hero--academy .hero-overlay {
  background:
    linear-gradient(90deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.62) 38%, rgba(13,13,13,0.2) 62%, transparent 80%),
    linear-gradient(180deg, rgba(13,13,13,0.45) 0%, transparent 22%, transparent 78%, rgba(13,13,13,0.3) 100%);
}

.academy-intro {
  padding: clamp(72px, 9vh, 108px) 0 clamp(24px, 4vh, 40px);
  text-align: center;
  background: var(--bg);
}

.academy-intro h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.academy-intro p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.academy-modules .academy-module {
  padding: clamp(64px, 8vh, 96px) 0;
}

.academy-modules .academy-module--alt {
  background: var(--cream);
}

.academy-modules .feature-text h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.academy-modules .feature-text > p {
  margin-bottom: 28px;
}

.academy-lesson-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.academy-lesson-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  transition: background 0.2s ease;
}

.academy-lesson-list li:hover {
  background: rgba(58, 132, 110, 0.06);
}

.academy-lesson-list .lesson-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.academy-lesson-list .lesson-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
}

.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.site-footer.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 48px 0;
}

.site-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.site-footer .footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: #fff;
}

.site-footer .footer-social {
  display: flex;
  gap: 16px;
}

.site-footer .footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.site-footer .footer-social a:hover {
  color: #fff;
}

.site-footer .footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}

.site-footer .footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 32px 40px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
}

.mobile-menu a.btn-primary {
  font-size: 17px;
  max-width: 320px;
  margin-top: 16px;
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-desktop { display: none !important; }
  .mobile-toggle { display: grid !important; }

  .academy-module-badge {
    top: -8px;
    right: -4px;
    font-size: 11px;
    padding: 5px 12px;
  }

  .academy-landscape .academy-module-badge {
    top: 12px;
    right: 12px;
  }

  .mock-pro {
    border-radius: 16px;
  }

  .hero--academy .hero-bg img {
    object-position: center 40%;
  }

  /* Blueprint modules — image beside copy, stacked on mobile */
  .academy-modules .feature-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .academy-modules .feature-text {
    display: block !important;
  }

  .academy-modules .feature-visual {
    order: 2;
    position: static !important;
    width: 100%;
    max-width: min(100%, 420px);
    margin: 0 auto;
  }

  .academy-modules .academy-module {
    padding: 48px 0;
  }

  .academy-intro {
    padding: 56px 0 28px;
  }

  .academy-intro h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero-content h1 {
    font-size: clamp(34px, 9vw, 44px) !important;
    line-height: 1.08 !important;
  }

  .hero-content p {
    font-size: 16px !important;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .trust-section {
    padding: 36px 0;
  }

  .trust-logos {
    gap: 20px 24px;
  }

  .trust-logo {
    font-size: 15px;
  }

  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .site-footer .footer-links {
    justify-content: center;
    gap: 16px 20px;
  }

  .site-footer .footer-social {
    justify-content: center;
  }

  .cta-section h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .nav:not(.scrolled) .mobile-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
  }

  .btn-primary,
  .btn-ghost,
  .btn-ghost-light {
    min-height: 48px;
  }
}
