/* VeraMind Inc — Zendesk-inspired */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
  --lime: #D1F470;
  --lime-hover: #c5e85f;
  --lime-dark: #98af53;
  --dark: #11110D;
  --dark-2: #1a1a16;
  --cream: #F5F5F2;
  --text: #11110D;
  --text-muted: #5c5c56;
  --white: #ffffff;
  --gray-50: #fafaf8;
  --gray-100: #f0f0ec;
  --gray-200: #e4e4de;
  --border: #d8d8d0;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wide: 1200px;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(17,17,13,0.08);
  --shadow-lg: 0 16px 48px rgba(17,17,13,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.vm-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }
.vm-wrap-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Announcement bar */
.vm-announce {
  background: var(--dark); color: rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 500; text-align: center; padding: 10px 24px;
}
.vm-announce a { color: var(--lime); font-weight: 700; margin-left: 8px; }
.vm-announce a:hover { text-decoration: underline; }

/* Header */
.vm-header {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  position: sticky; top: 0; z-index: 500;
}
.vm-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center; gap: 6px;
}
.vm-logo img { height: 28px; width: auto; }
.vm-nav { display: flex; align-items: center; margin-left: 20px; flex: 1; gap: 2px; }
.vm-nav-item { position: relative; }
.vm-nav-item > a, .vm-nav-item > span {
  display: block; padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: var(--text); cursor: pointer;
}
.vm-nav-item > a:hover, .vm-nav-item:hover > span { color: var(--lime-dark); }

.vm-mega {
  position: absolute; top: 100%; left: 0; min-width: 520px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 24px 28px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.18s; z-index: 200;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.vm-nav-item:hover .vm-mega { opacity: 1; visibility: visible; transform: none; }
.vm-mega-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 10px;
}
.vm-mega-col a {
  display: block; padding: 6px 0; font-size: 14px; font-weight: 500; color: var(--text);
}
.vm-mega-col a:hover { color: var(--lime-dark); }

.vm-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.18s; z-index: 200;
}
.vm-nav-item:hover .vm-dropdown { opacity: 1; visibility: visible; transform: none; }
.vm-dropdown a { display: block; padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--text); }
.vm-dropdown a:hover { background: var(--gray-50); color: var(--lime-dark); }

.vm-header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.vm-header-link { font-size: 14px; font-weight: 600; color: var(--text); padding: 8px 12px; }
.vm-header-link:hover { color: var(--lime-dark); }
.vm-menu-btn {
  display: none; background: none; border: none; font-size: 14px; font-weight: 700;
  cursor: pointer; color: var(--text); padding: 8px 12px;
}

.vm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  border-radius: var(--radius-pill); transition: all 0.15s; white-space: nowrap;
}
.vm-btn-lime { background: var(--lime); color: var(--dark) !important; padding: 11px 22px; }
.vm-btn-lime:hover { background: var(--lime-hover); }
.vm-btn-outline {
  background: transparent; color: var(--dark) !important;
  border: 1.5px solid var(--dark); padding: 10px 20px;
}
.vm-btn-outline:hover { background: var(--gray-50); }
.vm-btn-dark { background: var(--dark); color: var(--white) !important; padding: 12px 24px; }
.vm-btn-dark:hover { background: var(--dark-2); }
.vm-btn-lg { padding: 14px 28px; font-size: 15px; }

/* Drawer */
.vm-drawer { position: fixed; inset: 0; z-index: 900; pointer-events: none; }
.vm-drawer.open { pointer-events: auto; }
.vm-drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.45); opacity: 0; transition: opacity 0.25s; }
.vm-drawer.open .vm-drawer-bg { opacity: 1; }
.vm-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(380px, 92vw); height: 100%;
  background: var(--white); padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.28s;
}
.vm-drawer.open .vm-drawer-panel { transform: none; }
.vm-drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text); margin-bottom: 16px; }
.vm-drawer-group { margin-bottom: 24px; }
.vm-drawer-group h3 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 8px; }
.vm-drawer-group a { display: block; padding: 10px 0; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--gray-100); }

/* Hero */
.vm-hero { padding: 0; background: var(--dark); }
.vm-hero-card {
  width: 100%; margin: 0; border-radius: 0; overflow: hidden;
  position: relative; min-height: min(82vh, 720px); display: flex; align-items: center;
}
.vm-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-size: cover;
}
.vm-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,13,0.82) 0%, rgba(17,17,13,0.45) 45%, rgba(17,17,13,0.15) 100%);
}
.vm-hero-content {
  position: relative; z-index: 2; padding: 80px 48px; max-width: 1280px; margin: 0 auto; width: 100%;
}
.vm-hero-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(245,245,242,0.7); margin-bottom: 14px;
}
.vm-hero-content h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; line-height: 1.1;
  color: var(--cream); margin-bottom: 16px; max-width: 720px;
}
.vm-hero-content h1 em { font-style: normal; color: var(--lime); }
.vm-hero-lead { font-size: 17px; color: rgba(245,245,242,0.85); margin-bottom: 28px; line-height: 1.55; max-width: 520px; }
.vm-trial-form {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; max-width: 520px;
}
.vm-trial-form input {
  flex: 1; min-width: 200px; padding: 14px 18px; border: none; border-radius: var(--radius-pill);
  font-family: var(--font); font-size: 15px; background: rgba(255,255,255,0.95);
}
.vm-trial-note { font-size: 13px; color: rgba(245,245,242,0.6); margin-top: 12px; }
.vm-trial-note a { color: var(--lime); text-decoration: underline; }

/* Logo strip */
.vm-logos { padding: 40px 24px; background: var(--white); text-align: center; }
.vm-logos p { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.vm-logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; align-items: center; }
.vm-logo-row span { font-size: 15px; font-weight: 700; color: var(--gray-200); letter-spacing: 0.02em; }

/* Section */
.vm-section { padding: 72px 24px; }
.vm-section.full-bleed { padding-left: 0; padding-right: 0; }
.vm-section.gray { background: var(--gray-50); }
.vm-section.dark { background: var(--dark); color: var(--cream); }
.vm-section-head { margin-bottom: 40px; }
.vm-section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.vm-section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.vm-section-head p { font-size: 16px; color: var(--text-muted); line-height: 1.65; }
.vm-section.dark .vm-section-head p { color: rgba(245,245,242,0.7); }
.vm-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--lime-dark); margin-bottom: 10px;
}

/* Platform band — full-width large image */
.vm-section-platform { padding: 0; }
.vm-platform-band {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 0;
  overflow: hidden; background: var(--dark); min-height: min(70vh, 600px);
}
.vm-platform-band img { width: 100%; height: 100%; object-fit: cover; min-height: min(70vh, 600px); }
.vm-platform-body { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.vm-platform-body h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--cream); margin-bottom: 14px; line-height: 1.2; }
.vm-platform-body p { font-size: 16px; color: rgba(245,245,242,0.72); margin-bottom: 24px; line-height: 1.65; max-width: 420px; }

/* Tabs — large image panels */
.vm-section-tabs { padding: 72px 0; }
.vm-section-tabs .vm-wrap { padding: 0 24px; }
.vm-section-tabs .vm-section-head { padding: 0 24px; }
.vm-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; padding: 0 24px; }
.vm-tab {
  padding: 12px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  background: var(--white); border: 1px solid var(--border); color: var(--text); cursor: pointer;
  transition: all 0.15s;
}
.vm-tab.active, .vm-tab:hover { background: var(--dark); color: var(--lime); border-color: var(--dark); }
.vm-tab-panel { display: none; }
.vm-tab-panel.active { display: block; }
.vm-tab-content {
  display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 0; align-items: stretch;
  background: var(--white); overflow: hidden; min-height: min(65vh, 560px);
}
.vm-tab-content-img { position: relative; overflow: hidden; min-height: min(65vh, 560px); }
.vm-tab-content-img img { width: 100%; height: 100%; object-fit: cover; min-height: min(65vh, 560px); }
.vm-tab-content-text {
  padding: 56px 48px; display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.vm-tab-content-text h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
.vm-tab-content-text p { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 22px; }

/* Product cards — image-first large cards */
.vm-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vm-product {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.2s; display: block;
}
.vm-product:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--lime); }
.vm-product-img { aspect-ratio: 16/11; overflow: hidden; background: var(--gray-100); }
.vm-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.vm-product:hover .vm-product-img img { transform: scale(1.04); }
.vm-product-body { padding: 28px 26px 32px; }
.vm-product-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.vm-product h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.vm-product p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.vm-link { font-size: 14px; font-weight: 700; color: var(--dark); text-decoration: underline; text-underline-offset: 3px; }
.vm-link:hover { color: var(--lime-dark); }

/* Stats — image background band */
.vm-section-stats {
  position: relative; padding: 88px 24px; overflow: hidden;
}
.vm-stats-bg {
  position: absolute; inset: 0;
  background: url('../images/analytics.jpg') center/cover no-repeat;
}
.vm-stats-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(17,17,13,0.88);
}
.vm-section-stats .vm-wrap { position: relative; z-index: 2; }
.vm-section-stats .vm-section-head h2 { color: var(--cream); }
.vm-section-stats .vm-section-head p { color: rgba(245,245,242,0.7); }
.vm-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.vm-stat strong { display: block; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--lime); margin-bottom: 6px; }
.vm-stat span { font-size: 13px; font-weight: 600; color: rgba(245,245,242,0.65); line-height: 1.4; }

/* Testimonials — full-width image banner */
.vm-story-banner {
  position: relative; min-height: min(60vh, 520px);
  display: flex; align-items: center; justify-content: center; padding: 72px 24px;
}
.vm-story-bg {
  position: absolute; inset: 0;
  background: url('../images/team.jpg') center/cover no-repeat;
}
.vm-story-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(17,17,13,0.72);
}
.vm-story-inner { position: relative; z-index: 2; width: 100%; max-width: 800px; }
.vm-quote {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 44px 40px; text-align: center;
}
.vm-quote p { font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 600; line-height: 1.55; color: var(--cream); margin-bottom: 20px; }
.vm-quote cite { font-size: 14px; font-weight: 700; color: rgba(245,245,242,0.75); font-style: normal; }
.vm-story-link { text-align: center; margin-top: 24px; }
.vm-story-link .vm-link { color: var(--lime); }

/* Resource cards — taller large images */
.vm-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vm-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.2s;
}
.vm-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.vm-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.35s; }
.vm-card:hover img { transform: scale(1.03); }
.vm-card-body { padding: 24px 26px 30px; }
.vm-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lime-dark); margin-bottom: 8px; }
.vm-card-body h3 { font-size: 18px; font-weight: 800; line-height: 1.35; margin-bottom: 10px; }
.vm-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* CTA band — full-width image background */
.vm-section-cta { padding: 0; }
.vm-cta-band {
  position: relative; overflow: hidden; min-height: min(50vh, 440px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
}
.vm-cta-bg {
  position: absolute; inset: 0;
  background: url('../images/meeting.jpg') center/cover no-repeat;
}
.vm-cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(17,17,13,0.82);
}
.vm-cta-inner {
  position: relative; z-index: 2; padding: 72px 48px; max-width: 720px;
}
.vm-cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.vm-cta-band p { font-size: 17px; color: rgba(245,245,242,0.78); margin-bottom: 28px; line-height: 1.6; }
.vm-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* FAQ */
.vm-faq { max-width: 760px; margin: 0 auto; }
.vm-faq-item { border-bottom: 1px solid var(--border); }
.vm-faq-q {
  width: 100%; text-align: left; padding: 20px 0; background: none; border: none;
  font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.vm-faq-q::after { content: '+'; font-size: 20px; color: var(--text-muted); }
.vm-faq-item.open .vm-faq-q::after { content: '−'; }
.vm-faq-a { display: none; padding: 0 0 20px; font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.vm-faq-item.open .vm-faq-a { display: block; }

/* Footer */
.vm-footer { background: var(--dark); color: rgba(245,245,242,0.65); padding: 56px 24px 32px; }
.vm-footer-grid {
  max-width: var(--wide); margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 32px;
}
.vm-footer-brand img { height: 28px; margin-bottom: 14px; }
.vm-footer-brand p { font-size: 14px; line-height: 1.6; max-width: 260px; }
.vm-footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--cream); margin-bottom: 14px;
}
.vm-footer-col a { display: block; font-size: 14px; padding: 5px 0; color: rgba(245,245,242,0.55); }
.vm-footer-col a:hover { color: var(--lime); }
.vm-footer-bottom {
  max-width: var(--wide); margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: rgba(245,245,242,0.4);
}
.vm-footer-bottom a { color: rgba(245,245,242,0.5); }
.vm-footer-bottom a:hover { color: var(--lime); }

/* Inner pages */
.vm-page-hero {
  background: var(--gray-50); padding: 56px 24px; border-bottom: 1px solid var(--gray-100);
}
.vm-page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.vm-page-hero p { font-size: 16px; color: var(--text-muted); max-width: 640px; }
.vm-breadcrumb { font-size: 13px; font-weight: 600; color: var(--lime-dark); margin-bottom: 12px; }
.vm-content { padding: 48px 24px 72px; }
.vm-content p { color: var(--text-muted); line-height: 1.75; max-width: 720px; margin-bottom: 16px; }
.vm-content img.hero-img { width: 100%; max-width: 860px; border-radius: var(--radius-lg); margin-bottom: 28px; }
.vm-notice {
  display: inline-block; margin-top: 16px; padding: 10px 16px;
  background: var(--gray-50); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.vm-form { max-width: 520px; }
.vm-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.vm-form input, .vm-form textarea, .vm-form select {
  width: 100%; padding: 12px 14px; margin-bottom: 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 15px;
}
.vm-form textarea { min-height: 120px; resize: vertical; }
.vm-form-thanks { display: none; margin-top: 12px; font-size: 14px; color: var(--lime-dark); font-weight: 600; }
.vm-form.sent .vm-form-thanks { display: block; }

/* Pricing */
.vm-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.vm-price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.vm-price-card.featured { border-color: var(--lime); box-shadow: var(--shadow-lg); }
.vm-price-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.vm-price-card .price { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.vm-price-card .price span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.vm-price-card ul { margin: 20px 0; }
.vm-price-card li { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--gray-100); }

@media (max-width: 1024px) {
  .vm-product-grid, .vm-card-grid, .vm-stats, .vm-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-platform-band, .vm-tab-content { grid-template-columns: 1fr; }
  .vm-platform-band img, .vm-tab-content-img, .vm-tab-content-img img { min-height: 360px; }
  .vm-tab-content-text { border-left: none; border-top: 1px solid var(--border); padding: 40px 32px; }
  .vm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vm-nav { display: none; }
  .vm-menu-btn { display: block; }
  .vm-header-link.hide-mobile { display: none; }
  .vm-hero-card { min-height: min(75vh, 560px); }
  .vm-hero-content { padding: 48px 24px; }
  .vm-platform-body { padding: 40px 28px; }
  .vm-tab-content-text { padding: 32px 24px; }
  .vm-product-grid, .vm-card-grid, .vm-stats, .vm-pricing-grid, .vm-footer-grid { grid-template-columns: 1fr; }
  .vm-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .vm-cta-inner { padding: 56px 24px; }
}
