/* ============================================================================
   FOREMAN AI � Landing Page v2 SUPER MODERN
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --v2-bg: #030712; /* Slate 950 overlay - nearly black */
  --v2-bg-alt: #080c17;
  --v2-card-bg: rgba(255, 255, 255, 0.02);
  --v2-card-border: rgba(255, 255, 255, 0.06);
  --v2-card-hover: rgba(255, 255, 255, 0.04);
  --v2-border: rgba(255, 255, 255, 0.08);
  --v2-accent: #f97316; /* Safety Orange */
  --v2-accent-secondary: #f59e0b; /* Amber */
  --v2-accent-purple: #fbbf24; /* Caution Yellow */
  --v2-text: #f8fafc;
  --v2-text-muted: #94a3b8;
  --v2-text-darker: #475569;
  --v2-radius: 12px;
  --v2-radius-lg: 20px;
  --v2-max-w: 1200px;
  --v2-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body.landing-v2-page {
  background-color: var(--v2-bg) !important;
  color: var(--v2-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(100vw 50vh at 50% 0%, rgba(249, 115, 22, 0.08) 0%, transparent 100%),
    radial-gradient(100vw 50vh at 80% 80%, rgba(251, 191, 36, 0.04) 0%, transparent 100%);
  background-attachment: fixed;
}

body.landing-v2-page .app-header {
  background: rgba(3, 7, 18, 0.6) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-card-border);
}

body.landing-v2-page h1, 
body.landing-v2-page h2, 
body.landing-v2-page h3, 
body.landing-v2-page h4 {
  font-family: var(--font-sans);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.v2-shell { width: 100%; overflow-x: hidden; position: relative; }
.v2-container { max-width: var(--v2-max-w); margin: 0 auto; padding: 0 24px; }

/* NAV */
.v2-nav { display: flex; gap: 1.5rem; align-items: center; }
.v2-nav .app-nav-link { font-size: 0.875rem; font-weight: 500; color: var(--v2-text-muted); transition: var(--v2-transition); }
.v2-nav .app-nav-link:hover { color: var(--v2-text); }
.v2-header-cta {
  background: var(--v2-text); color: #000; font-weight: 600; font-size: 0.875rem; 
  padding: 0.5rem 1rem; border-radius: 8px; transition: var(--v2-transition); text-decoration: none;
}
.v2-header-cta:hover { background: #e2e8f0; transform: translateY(-1px); box-shadow: 0 0 15px rgba(255,255,255,0.2); }

/* SECTIONS */
.v2-section { padding: 8rem 0; position: relative; }
.v2-section-label { 
  display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; 
  letter-spacing: 0.1em; color: var(--v2-accent); margin-bottom: 1rem; 
  background: rgba(249, 115, 22, 0.1); padding: 0.25rem 0.75rem; border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.v2-section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; line-height: 1.1; display: inline-block; }
.v2-section-subtitle { font-size: 1.25rem; color: var(--v2-text-muted); max-width: 700px; line-height: 1.6; font-weight: 400; }
.v2-section-header { margin-bottom: 4rem; }
.v2-section-header--center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* HERO */
.v2-hero { padding: 10rem 0 6rem; text-align: center; position: relative; }
.v2-hero-content { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.v2-hero-badge { 
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; 
  font-weight: 500; border: 1px solid var(--v2-border); padding: 0.35rem 0.85rem; 
  border-radius: 9999px; margin-bottom: 2rem; background: var(--v2-card-bg); backdrop-filter: blur(8px);
}
.v2-hero-badge-dot { width: 6px; height: 6px; background: var(--v2-accent); border-radius: 50%; box-shadow: 0 0 10px var(--v2-accent); animation: pulse 2s infinite; }
.v2-hero h1 { 
    font-size: clamp(3rem, 7vw, 5.5rem); 
    line-height: 1.05; 
    margin: 0 0 1.5rem; 
    letter-spacing: -0.04em; 
    color: #ffffff !important; 
}
.v2-gradient-text { 
  background: linear-gradient(to right, #f97316, #fbbf24, #f97316);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
  animation: shine 5s linear infinite; display: inline-block; min-width: 8ch;
}
.v2-hero-sub { font-size: clamp(1.125rem, 2vw, 1.5rem); color: var(--v2-text-muted); max-width: 800px; line-height: 1.5; margin: 0 0 3rem; }
.v2-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.v2-btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; text-decoration: none; border-radius: 8px; transition: var(--v2-transition); cursor: pointer; border: none; }
.v2-btn--large { padding: 0.875rem 2rem; font-size: 1.0625rem; }
.v2-btn--primary { background: linear-gradient(to right, var(--v2-accent), var(--v2-accent-secondary)); color: #fff; box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3); }
.v2-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5); filter: brightness(1.1); }
.v2-btn--secondary { background: var(--v2-card-bg); color: var(--v2-text); border: 1px solid var(--v2-card-border); backdrop-filter: blur(8px); }
.v2-btn--secondary:hover { background: var(--v2-card-hover); border-color: var(--v2-border); transform: translateY(-2px); }
.v2-hero-trust { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--v2-text-darker); }
.v2-hero-trust svg { color: var(--v2-text-muted); }
.v2-hero-alt-cta { font-size: 0.85rem; color: var(--v2-text-darker); margin-top: -0.25rem; }
.v2-hero-alt-cta a { color: var(--v2-accent); text-decoration: none; }
.v2-hero-alt-cta a:hover { text-decoration: underline; }

/* LOGOS */
.v2-logos { 
  padding: 2.5rem 0; 
  background: #fbbf24; 
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0,0,0,0.05) 40px, rgba(0,0,0,0.05) 80px); 
  border-top: 3px solid #b45309; 
  border-bottom: 3px solid #b45309; 
  overflow: hidden; 
  white-space: nowrap; 
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1); 
}
.v2-logos-label { 
  text-align: center; 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  letter-spacing: 0.2em; 
  color: #78350f; 
  margin-bottom: 1.5rem; 
  font-weight: 900; 
}
.v2-logos-track { 
  display: inline-flex; 
  gap: 4rem; 
  animation: scroll-left 40s linear infinite; 
}
.v2-logos-track span {
  position: relative;
}
.v2-logos-track span::after {
  content: '';
  color: #b45309;
  margin-left: 2rem;
  opacity: 0.5;
}
.v2-logos-track span:last-child::after {
  display: none;
}
.v2-logos-track span { 
  font-size: 1.35rem; 
  font-weight: 900; 
  color: #451a03; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  display: inline-flex; 
  align-items: center; 
}

/* STATS */
.v2-stats { padding: 4rem 0; }
.v2-stats-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 2rem; 
  border: 1px solid var(--v2-accent); 
  border-radius: var(--v2-radius-lg); 
  background: linear-gradient(135deg, rgba(249, 115, 22,0.05), rgba(251, 191, 36,0.05)); 
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.1);
  backdrop-filter: blur(12px); 
  padding: 3rem; 
  text-align: center; 
}
.v2-stat-value { 
  font-size: 2.5rem; 
  font-weight: 800; 
  color: var(--v2-text); 
  margin: 0 0 0.5rem; 
  letter-spacing: -0.04em; 
  background: linear-gradient(to right, var(--v2-accent), var(--v2-accent-purple)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}
.v2-stat-label { font-size: 0.875rem; font-weight: 500; color: var(--v2-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }

/* FEATURES (Modern Bento Grid) */

  /* BENTO GRID UPGRADES */
  .v2-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
  
  .v2-bento .v2-feature-card {
    grid-column: span 12; /* mobile default */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Desktop layout targeting specific cards for structural variety */
  @media (min-width: 768px) {
    .v2-bento .v2-feature-card:nth-child(1),
    .v2-bento .v2-feature-card:nth-child(2) { grid-column: span 6; }
    
    .v2-bento .v2-feature-card:nth-child(3),
    .v2-bento .v2-feature-card:nth-child(4),
    .v2-bento .v2-feature-card:nth-child(5) { grid-column: span 4; }
    
    .v2-bento .v2-feature-card:nth-child(6) { grid-column: span 8; min-height: 200px; }
    .v2-bento .v2-feature-card:nth-child(7) { grid-column: span 4; }
    
    .v2-bento .v2-feature-card:nth-child(8) { grid-column: span 12; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
    .v2-bento .v2-feature-card:nth-child(8) .v2-feature-icon { margin-bottom: 0; width: 64px; height: 64px; }
  }

  .v2-feature-icon svg { width: 24px; height: 24px; }

.v2-feature-card { 
  background: var(--v2-card-bg); border: 1px solid var(--v2-card-border); border-radius: var(--v2-radius-lg); 
  padding: 2.5rem 2rem; transition: var(--v2-transition); position: relative; overflow: hidden;
}
.v2-feature-card::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0 0, rgba(255,255,255,0.05), transparent 60%); opacity: 0; transition: var(--v2-transition);
}
.v2-feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.v2-feature-card:hover::before { opacity: 1; }
.v2-feature-icon { 
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; 
  background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); 
  border-radius: 12px; margin-bottom: 1.5rem; color: var(--v2-accent);
}
.v2-feature-card h3 { font-size: 1.25rem; font-weight: 600; margin: 0 0 0.75rem; color: var(--v2-text); }
.v2-feature-card p { font-size: 0.9375rem; color: var(--v2-text-muted); line-height: 1.6; margin: 0; }

/* HOW IT WORKS */
.v2-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; position: relative; }
.v2-step { background: var(--v2-card-bg); border: 1px solid var(--v2-card-border); border-radius: var(--v2-radius-lg); padding: 3rem 2rem; position: relative; }
.v2-step-number { 
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; 
  background: rgba(255,255,255,0.05); border: 1px solid var(--v2-border); border-radius: 50%;
  font-weight: 700; font-size: 1.2rem; color: var(--v2-text); margin-bottom: 1.5rem;
}
.v2-step h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.v2-step p { color: var(--v2-text-muted); line-height: 1.6; }

/* TABS */
.v2-tabs { background: var(--v2-card-bg); border: 1px solid var(--v2-card-border); border-radius: var(--v2-radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.v2-tab-nav { display: flex; overflow-x: auto; background: rgba(0,0,0,0.2); border-bottom: 1px solid var(--v2-card-border); padding: 0 1rem; }
.v2-tab-btn { background: none; border: none; padding: 1.25rem 1.5rem; color: var(--v2-text-muted); font-weight: 600; font-size: 0.9375rem; cursor: pointer; position: relative; transition: var(--v2-transition); white-space: nowrap; }
.v2-tab-btn:hover { color: var(--v2-text); }
.v2-tab-btn.is-active { color: var(--v2-accent); }
.v2-tab-btn.is-active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--v2-accent); box-shadow: 0 -2px 10px var(--v2-accent); }
.v2-tab-panel { display: none; padding: 3rem; gap: 3rem; grid-template-columns: 1fr 1fr; align-items: center; }
.v2-tab-panel.is-active { display: grid; animation: fadeIn 0.4s ease; }
.v2-tab-copy h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.v2-tab-copy p { color: var(--v2-text-muted); font-size: 1.125rem; line-height: 1.6; margin-bottom: 1.5rem; }
.v2-tab-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.v2-tab-features li { display: flex; align-items: center; gap: 0.75rem; color: var(--v2-text); font-weight: 500; }
.v2-tab-features li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--v2-accent); border-radius: 50%; box-shadow: 0 0 8px var(--v2-accent); }
.v2-tab-preview { background: #000; border: 1px solid var(--v2-card-border); border-radius: 8px; padding: 1.5rem; font-family: monospace; font-size: 0.9rem; color: #a1a1aa; box-shadow: inset 0 2px 20px rgba(0,0,0,0.5); }
.v2-tab-preview-label { font-size: 0.75rem; text-transform: uppercase; color: #52525b; margin: 0 0 1rem; letter-spacing: 0.1em; }
.v2-preview-row { display: flex; justify-content: space-between; border-bottom: 1px solid #27272a; padding: 0.75rem 0; }
.v2-preview-row:last-child { border: none; padding-bottom: 0; }
.v2-preview-value--danger { color: #ef4444; }
.v2-preview-value--warn { color: #f59e0b; }
.v2-preview-value--safe { color: #10b981; }

/* USE CASES */
.v2-usecases { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.v2-usecase-card { background: var(--v2-card-bg); border: 1px solid var(--v2-card-border); border-radius: var(--v2-radius-lg); padding: 2.5rem; position: relative; overflow: hidden; transition: var(--v2-transition); }
.v2-usecase-card:hover { border-color: var(--v2-border); transform: translateY(-4px); }
.v2-usecase-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.v2-usecase-card h3 { font-size: 1.5rem; margin: 0; }
.v2-usecase-card-icon { color: var(--v2-accent-secondary); }
.v2-usecase-card p { color: var(--v2-text-muted); line-height: 1.6; margin: 0; }

/* TESTIMONIALS */
.v2-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.v2-quote-card { background: var(--v2-card-bg); border: 1px solid var(--v2-card-border); border-radius: var(--v2-radius-lg); padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.v2-quote-card::before { content: '\"'; position: absolute; top: 1rem; right: 1.5rem; font-size: 6rem; color: rgba(255,255,255,0.03); font-family: serif; line-height: 1; }
.v2-quote-text { font-size: 1.125rem; line-height: 1.6; color: var(--v2-text); margin: 0 0 2rem; position: relative; z-index: 1; }
.v2-quote-author { display: flex; align-items: center; gap: 1rem; }
.v2-quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--v2-border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--v2-text); font-size: 1.2rem; }
.v2-quote-meta { display: flex; flex-direction: column; }
.v2-quote-name { font-weight: 600; font-size: 1rem; }
.v2-quote-role { font-size: 0.875rem; color: var(--v2-text-muted); }

/* PRICING */
.v2-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; align-items: stretch; margin-top: 2rem; }
.v2-pricing-card { background: var(--v2-card-bg); border: 1px solid var(--v2-card-border); border-radius: var(--v2-radius-lg); padding: 2.5rem; display: flex; flex-direction: column; position: relative; }
.v2-pricing-card--popular { border-color: var(--v2-accent); box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1); transform: scale(1.02); z-index: 2; background: rgba(15, 23, 42, 0.8); }
.v2-pricing-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--v2-accent); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 999px; box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
.v2-pricing-name { font-size: 1.25rem; font-weight: 600; margin: 0 0 0.5rem; }
.v2-pricing-price { font-size: 3rem; font-weight: 800; margin: 0 0 0.5rem; letter-spacing: -0.04em; }
.v2-pricing-period { font-size: 1rem; color: var(--v2-text-muted); font-weight: 500; }
.v2-pricing-desc { color: var(--v2-text-muted); font-size: 0.9375rem; margin: 0 0 2rem; line-height: 1.5; }
.v2-pricing-features { list-style: none; padding: 0; margin: 0 0 2rem; flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; font-size: 0.9375rem; color: var(--v2-text); }
.v2-pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; }
.v2-pricing-features svg { color: var(--v2-accent); flex-shrink: 0; margin-top: 2px; }
.v2-pricing-card .v2-btn { width: 100%; border-radius: 8px; }

/* FAQ */
.v2-faq { max-width: 800px; margin: 0 auto; }
.v2-faq-item { border-bottom: 1px solid var(--v2-card-border); }
.v2-faq-question { width: 100%; background: none; border: none; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; color: var(--v2-text); font-size: 1.125rem; font-weight: 600; text-align: left; cursor: pointer; font-family: inherit; }
.v2-faq-icon { color: var(--v2-text-muted); transition: transform var(--v2-transition); }
.v2-faq-question[aria-expanded="true"] .v2-faq-icon { transform: rotate(180deg); color: var(--v2-accent); }
.v2-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.v2-faq-question[aria-expanded="true"] + .v2-faq-answer { grid-template-rows: 1fr; }
.v2-faq-answer-inner { overflow: hidden; padding-bottom: 1.5rem; color: var(--v2-text-muted); line-height: 1.6; padding-right: 2rem; }

/* BOTTOM CTA */
.v2-bottom-cta { padding: 8rem 0; text-align: center; }
.v2-bottom-box { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1)); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--v2-radius-xl); padding: 5rem 2rem; position: relative; overflow: hidden; }
.v2-bottom-box h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 1rem; }
.v2-bottom-box p { font-size: 1.25rem; color: var(--v2-text-muted); margin: 0 auto 2.5rem; max-width: 600px; line-height: 1.6; }

/* FOOTER */
.v2-footer { background: #010409; padding: 5rem 0 2rem; border-top: 1px solid var(--v2-card-border); }
.v2-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.v2-footer-brand p { color: var(--v2-text-muted); margin: 1rem 0; line-height: 1.6; max-width: 300px; font-size: 0.9375rem; }
.v2-footer h4 { font-size: 0.9375rem; font-weight: 600; color: var(--v2-text); margin: 0 0 1.5rem; }
.v2-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.v2-footer a { color: var(--v2-text-muted); text-decoration: none; font-size: 0.875rem; transition: var(--v2-transition); }
.v2-footer a:hover { color: var(--v2-text); }
.v2-footer-bottom { border-top: 1px solid var(--v2-card-border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: var(--v2-text-darker); font-size: 0.875rem; }

/* ANIMATIONS */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); } 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); } }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 2rem)); } }
@keyframes shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Marketing Drawer / Toggle (base styles for landing_v2) ─────────────── */
.marketing-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--v2-text);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: all 0.2s ease;
}
.marketing-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}
.marketing-menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.marketing-menu-toggle-icon::before,
.marketing-menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.marketing-menu-toggle-icon::before { top: -6px; }
.marketing-menu-toggle-icon::after  { top:  6px; }

/* Drawer — hidden by default */
.marketing-drawer {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2000;
}
.marketing-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.marketing-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 85vw);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98) 0%, rgba(7, 11, 20, 0.99) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.marketing-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}
.marketing-drawer-title {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.marketing-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketing-drawer-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}
.marketing-drawer-nav {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem 0;
}
.marketing-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.marketing-drawer-link:hover,
.marketing-drawer-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  outline: none;
}
.marketing-drawer-actions {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.marketing-drawer-actions .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.marketing-drawer-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 250, 252, 0.95);
}
.marketing-drawer-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.marketing-drawer-actions .btn-primary {
  background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-accent-secondary) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}
.marketing-drawer-actions .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
  filter: brightness(1.1);
}

/* Show drawer when toggled */
body.marketing-drawer-open .marketing-drawer {
  opacity: 1;
  pointer-events: auto;
}
body.marketing-drawer-open .marketing-drawer-panel {
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .v2-footer-grid { grid-template-columns: 1fr 1fr; }
  .v2-tab-panel { grid-template-columns: 1fr; gap: 2rem; }
  .v2-pricing-card--popular { transform: none; }
}
@media (max-width: 768px) {
  .v2-nav { display: none; }
  .v2-header-cta { display: none; }
  .v2-section { padding: 5rem 0; }
  .v2-hero { padding: 6rem 0 4rem; }
  .marketing-menu-toggle { display: flex; }
}



/* --- 3D MAGNETIC BENTO CARDS & SPOTLIGHT --- */
.v2-bento {
    perspective: 1200px;
}

.v2-feature-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.15s ease, border-color 0.15s;
    will-change: transform;
}

/* The glowing spotlight effect that tracks the mouse */
.v2-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(249, 115, 22, 0.12), /* Safety Orange glow */
        transparent 40%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.v2-feature-card:hover {
    z-index: 10;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8), 0 0 20px rgba(249, 115, 22, 0.15);
    border-color: var(--v2-accent);
}

.v2-feature-card:hover::before {
    opacity: 1;
}

/* Make the content "float" slightly above the card background */
.v2-feature-card > * {
    position: relative;
    z-index: 2;
    transform: translateZ(30px); /* Pushes the text and icon OUT towards the user */
    transition: transform 0.3s ease;
}


/* Added to make all requested text elements white */
.v2-section-title,
.v2-step h3,
.v2-usecase-card-header h3,
.v2-logos-track span {
    color: #ffffff !important;
}
