/* ===== VEJAI DESIGN SYSTEM ===== */

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

:root {
  --v-primary: #4262FF;
  --v-primary-light: #6B85FF;
  --v-accent: #00D4FF;
  --v-accent-glow: rgba(0, 212, 255, 0.15);
  --v-dark: #0a0f1e;
  --v-dark-card: #111827;
  --v-dark-border: #1e293b;
  --v-surface: #f8fafc;
  --v-surface-alt: #f1f5f9;
  --v-white: #ffffff;
  --v-text: #1e293b;
  --v-text-secondary: #64748b;
  --v-text-muted: #94a3b8;
  --v-border: #e2e8f0;
  --v-font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --v-mono: 'JetBrains Mono', monospace;
  --v-radius: 12px;
  --v-radius-sm: 8px;
  --v-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --v-shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --v-transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--v-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--v-text);
  background: var(--v-white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.vejai-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}


/* --- Navigation --- */
.vejai-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v-border);
  transition: all var(--v-transition);
}

.vejai-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.vejai-nav-logo {
  display: flex;
  align-items: center;
}

.vejai-nav-logo-img {
  height: 54px;
  width: auto;
}

.vejai-nav-links {
  display: flex;
  gap: 32px;
}

.vejai-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--v-text-secondary);
  transition: color var(--v-transition);
}

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

.vejai-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--v-primary);
  color: var(--v-white) !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--v-radius-sm);
  transition: all var(--v-transition);
}

.vejai-nav-cta:hover {
  background: var(--v-primary-light);
  transform: translateY(-1px);
}

.vejai-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.vejai-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--v-text);
  border-radius: 1px;
  transition: all var(--v-transition);
}


/* --- Hero --- */
.vejai-hero {
  position: relative;
  padding: 160px 24px 120px;
  text-align: center;
  background: var(--v-white);
  overflow: hidden;
}

.vejai-hero-content {
  position: relative;
  z-index: 1;
}

.vejai-hero-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--v-text-muted);
  margin-bottom: 24px;
}

.vejai-hero-heading {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--v-text);
  margin-bottom: 24px;
}

.vejai-gradient-text {
  background: linear-gradient(135deg, var(--v-primary) 0%, var(--v-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vejai-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--v-text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.vejai-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.vejai-hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(66, 98, 255, 0.06) 0%, rgba(0, 212, 255, 0.03) 40%, transparent 70%);
  pointer-events: none;
}


/* --- Buttons --- */
.vejai-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-family: var(--v-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--v-radius-sm);
  transition: all var(--v-transition);
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.vejai-btn-primary {
  background: var(--v-primary);
  color: var(--v-white);
  box-shadow: 0 2px 8px rgba(66, 98, 255, 0.3);
}

.vejai-btn-primary:hover {
  background: var(--v-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(66, 98, 255, 0.4);
}

.vejai-btn-outline {
  background: transparent;
  color: var(--v-primary);
  border: 1.5px solid rgba(66, 98, 255, 0.3);
}

.vejai-btn-outline:hover {
  border-color: var(--v-primary);
  background: rgba(66, 98, 255, 0.04);
}

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

.vejai-btn-white {
  background: var(--v-white);
  color: var(--v-primary);
}

.vejai-btn-white:hover {
  background: var(--v-surface);
  transform: translateY(-1px);
}


/* --- Sections --- */
.vejai-section {
  padding: 100px 0;
}

.vejai-section-alt {
  background: var(--v-surface);
}

.vejai-section-dark {
  background: var(--v-dark);
  color: var(--v-white);
}

.vejai-section-video {
  position: relative;
  background: transparent;
  clip: rect(0, auto, auto, 0);
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.vejai-section-video .vejai-container {
  position: relative;
  z-index: 2;
}

.vejai-video-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.vejai-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.45);
  z-index: 1;
}

.vejai-video,
.vejai-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vejai-video-poster {
  z-index: 0;
  transition: opacity 0.8s ease;
}

.vejai-video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.vejai-section-cta {
  background: var(--v-dark);
  color: var(--v-white);
  padding: 100px 0 80px;
}

.vejai-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.vejai-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--v-primary);
  margin-bottom: 12px;
}

.vejai-section-dark .vejai-section-label {
  color: var(--v-accent);
}

.vejai-section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.vejai-section-sub {
  font-size: 1rem;
  color: var(--v-text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.vejai-section-dark .vejai-section-sub {
  color: rgba(255,255,255,0.55);
}


/* --- Grid --- */
.vejai-grid {
  display: grid;
  gap: 20px;
}

.vejai-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}


/* --- Cards --- */
.vejai-card {
  padding: 32px 28px;
  border-radius: var(--v-radius);
  transition: all var(--v-transition);
}

.vejai-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.vejai-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--v-text-secondary);
}

/* Dark cards (problem section) */
.vejai-card-dark {
  background: rgba(17, 24, 39, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vejai-card-dark:hover {
  border-color: rgba(66, 98, 255, 0.3);
  transform: translateY(-2px);
}

.vejai-card-dark h3 { color: var(--v-white); }
.vejai-card-dark p { color: rgba(255,255,255,0.55); }

.vejai-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(66, 98, 255, 0.12);
  color: var(--v-accent);
  margin-bottom: 18px;
}

/* Service cards */
.vejai-card-service {
  background: var(--v-white);
  border: 1px solid var(--v-border);
}

.vejai-card-service:hover {
  border-color: rgba(66, 98, 255, 0.3);
  box-shadow: var(--v-shadow-lg);
  transform: translateY(-3px);
}

.vejai-card-icon-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(66, 98, 255, 0.08);
  color: var(--v-primary);
  margin-bottom: 16px;
}

/* Engagement cards */
.vejai-card-engagement {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  padding: 32px 28px;
}

.vejai-card-engagement:hover {
  box-shadow: var(--v-shadow-lg);
}

.vejai-card-featured {
  border-top: 3px solid var(--v-primary);
}

.vejai-engagement-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v-primary);
  margin-bottom: 12px;
}

.vejai-engagement-desc {
  color: var(--v-text-secondary) !important;
  margin-bottom: 16px !important;
}

.vejai-card-engagement ul {
  list-style: none;
  padding: 0;
}

.vejai-card-engagement li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--v-text-secondary);
  padding: 4px 0 4px 16px;
  position: relative;
}

.vejai-card-engagement li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: var(--v-primary);
  border-radius: 50%;
}

.vejai-card-engagement li strong {
  color: var(--v-text);
}


/* --- PPC Stamp Badge --- */
.vejai-ppc-header {
  position: relative;
}

.vejai-ppc-stamp {
  position: absolute;
  top: -10px;
  right: -20px;
  transform: rotate(-8deg);
  padding: 10px 18px;
  border: 2px solid rgba(245, 158, 11, 0.6);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  color: rgba(245, 158, 11, 0.7);
  pointer-events: none;
  user-select: none;
}

/* --- PPC Light Theme --- */
.vejai-ppc-light {
  background: var(--v-surface);
  border-top: 1px solid var(--v-border);
  border-bottom: 1px solid var(--v-border);
}

.vejai-ppc-light .vejai-section-label {
  color: var(--v-primary);
}

.vejai-ppc-light .vejai-section-sub {
  color: var(--v-text-secondary);
}

.vejai-ppc-light .vejai-counter-label {
  color: var(--v-text-muted);
}

.vejai-ppc-light .vejai-ppc-stamp {
  color: rgba(160, 100, 0, 0.75);
  border-color: rgba(160, 100, 0, 0.4);
}

.vejai-ppc-light .vejai-card-icon {
  background: rgba(66, 98, 255, 0.08);
  color: var(--v-primary);
}

.vejai-ppc-light .vejai-chart-box {
  background: var(--v-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- PPC Dark Section Overrides --- */
.vejai-section-dark .vejai-chart-box {
  background: var(--v-dark-card);
  border-color: var(--v-dark-border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vejai-section-dark .vejai-chart-box canvas {
  display: block;
  max-width: 100%;
}

.vejai-section-dark .vejai-chart-title {
  color: var(--v-white);
}

.vejai-section-dark .vejai-chart-subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.vejai-section-dark .vejai-counter-label {
  color: rgba(255, 255, 255, 0.5);
}


/* --- Counters --- */
.vejai-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.vejai-counter-item {
  text-align: center;
  padding: 24px 16px;
}

.vejai-counter {
  font-family: var(--v-font);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--v-primary) 0%, var(--v-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.vejai-counter-label {
  font-size: 13px;
  color: var(--v-text-muted);
  font-weight: 500;
  display: block;
}


/* --- Charts --- */
.vejai-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.vejai-chart-box {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 28px;
}

.vejai-chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--v-text);
  text-align: center;
  margin-bottom: 4px;
}

.vejai-chart-subtitle {
  font-size: 12px;
  color: var(--v-text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.vejai-charts-2x2 {
  grid-template-columns: repeat(2, 1fr);
}


/* --- Toolkit --- */
.vejai-toolkit {
  text-align: center;
  padding-bottom: 48px;
}

.vejai-toolkit-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--v-text-muted);
  margin-bottom: 24px;
}

.vejai-toolkit-strip {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  padding: 16px 0;
}

.vejai-toolkit-strip::before,
.vejai-toolkit-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.vejai-toolkit-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--v-white), transparent);
}

.vejai-toolkit-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--v-white), transparent);
}

.vejai-toolkit-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: toolkit-scroll 25s linear infinite;
  width: max-content;
}

.vejai-toolkit-track img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.7;
  filter: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vejai-toolkit-strip:hover .vejai-toolkit-track {
  animation-play-state: paused;
}

.vejai-toolkit-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.15);
}

@keyframes toolkit-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Toolkit Tooltip --- */
.vejai-toolkit-track img {
  position: relative;
}

.vejai-tool-tip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  pointer-events: none;
}

.vejai-tool-tip svg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}

.vejai-tool-tip-path {
  fill: none;
  stroke: #64748b;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.vejai-tool-tip-text {
  position: absolute;
  text-align: left;
  padding: 10px 14px;
  overflow: hidden;
  box-sizing: border-box;
}

.vejai-tool-tip-name {
  font-family: var(--v-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--v-text);
  margin-bottom: 4px;
  white-space: nowrap;
}

.vejai-tool-tip-desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--v-text-secondary);
}

.vejai-tool-tip-cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  background: var(--v-primary);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: tip-blink 0.6s step-end infinite;
}

@keyframes tip-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* --- Is This You — Fit Cards --- */
.vejai-grid-fit {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vejai-fit-card {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--v-transition);
}

.vejai-fit-card:hover {
  border-color: rgba(66, 98, 255, 0.25);
  box-shadow: var(--v-shadow);
  transform: translateY(-2px);
}

.vejai-fit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(66, 98, 255, 0.08);
  color: var(--v-primary);
  margin-bottom: 16px;
}

.vejai-fit-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--v-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.vejai-fit-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--v-text-muted);
}

.vejai-reveal-word {
  color: var(--v-text-muted);
  transition: color 0.15s ease;
}

.vejai-fit-card:hover .vejai-reveal-word {
  color: var(--v-text);
}

.vejai-fit-card:not(:hover) .vejai-reveal-word {
  color: var(--v-text-muted);
  transition-delay: 0s !important;
  transition-duration: 0.3s;
}


/* --- FAQ Accordion --- */
.vejai-faq {
  max-width: 720px;
  margin: 0 auto;
}

.vejai-faq-item {
  border-bottom: 1px solid var(--v-border);
}

.vejai-faq-item:first-child {
  border-top: 1px solid var(--v-border);
}

.vejai-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--v-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--v-text);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  gap: 16px;
  transition: color var(--v-transition);
}

.vejai-faq-q:hover {
  color: var(--v-primary);
}

.vejai-faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--v-text-muted);
}

.vejai-faq-item.open .vejai-faq-icon {
  transform: rotate(45deg);
  color: var(--v-primary);
}

.vejai-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.vejai-faq-item.open .vejai-faq-a {
  max-height: 300px;
}

.vejai-faq-a p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--v-text-secondary);
  padding-bottom: 20px;
}


/* --- CTA Section --- */
.vejai-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.vejai-cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--v-white);
}

.vejai-cta-content > p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  font-size: 1rem;
}

.vejai-cta-btns {
  margin-bottom: 32px;
}

.vejai-cta-contact {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.vejai-cta-contact p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-bottom: 8px;
}

.vejai-cta-contact a {
  color: var(--v-accent);
  transition: color var(--v-transition);
}

.vejai-cta-contact a:hover {
  color: var(--v-white);
}

.vejai-linkedin-link {
  font-size: 14px;
  font-weight: 500;
}


/* --- Footer --- */
.vejai-footer {
  background: var(--v-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

.vejai-footer-inner {
  text-align: center;
}

.vejai-footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
}

.vejai-footer-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.vejai-footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-bottom: 12px;
}

.vejai-footer-about {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 16px;
}

.vejai-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.vejai-footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: color var(--v-transition);
}

.vejai-footer-links a:hover {
  color: var(--v-white);
}

.vejai-footer-legal {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}


/* ===== FLOATING ASSESSMENT BUTTON ===== */
#vejai-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

#vejai-fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--v-primary);
  color: var(--v-white);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--v-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(66, 98, 255, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
}

#vejai-fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(66, 98, 255, 0.5);
}

.vejai-fab-icon {
  font-size: 18px;
  line-height: 1;
}


/* ===== ASSESSMENT MODAL ===== */
#vejai-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#vejai-modal-overlay.active {
  display: flex;
}

.vejai-modal {
  background: var(--v-white);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 520px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: vejai-modal-in 0.3s ease;
}

@keyframes vejai-modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.vejai-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--v-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--v-transition);
}

.vejai-modal-close:hover {
  color: var(--v-text);
}

.vejai-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}

.vejai-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--v-border);
  transition: all 0.3s;
}

.vejai-progress-dot.active {
  background: var(--v-primary);
  transform: scale(1.15);
}

.vejai-progress-dot.done {
  background: var(--v-accent);
}

.vejai-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v-text);
  margin-bottom: 4px;
  text-align: center;
}

.vejai-step-subtitle {
  font-size: 0.85rem;
  color: var(--v-text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.vejai-step-option {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin: 6px 0;
  background: var(--v-surface);
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--v-font);
  font-size: 14px;
  color: var(--v-text);
  cursor: pointer;
  text-align: left;
  transition: all var(--v-transition);
  line-height: 1.4;
}

.vejai-step-option:hover {
  border-color: rgba(66, 98, 255, 0.3);
  background: rgba(66, 98, 255, 0.04);
}

.vejai-step-option.selected {
  border-color: var(--v-primary);
  background: rgba(66, 98, 255, 0.06);
  font-weight: 500;
}

.vejai-other-input {
  display: none;
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  border: 2px solid var(--v-border);
  border-radius: 10px;
  font-family: var(--v-font);
  font-size: 14px;
  color: var(--v-text);
  outline: none;
  transition: border-color var(--v-transition);
  box-sizing: border-box;
  background: var(--v-white);
}

.vejai-other-input:focus {
  border-color: var(--v-primary);
}

.vejai-other-input.show {
  display: block;
}

.vejai-step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}

.vejai-btn-back {
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--v-border);
  border-radius: 10px;
  font-family: var(--v-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--v-text-secondary);
  cursor: pointer;
  transition: all var(--v-transition);
}

.vejai-btn-back:hover {
  border-color: var(--v-text-muted);
  color: var(--v-text);
}

.vejai-btn-next {
  padding: 10px 28px;
  background: var(--v-primary);
  border: none;
  border-radius: 10px;
  font-family: var(--v-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--v-white);
  cursor: pointer;
  transition: all var(--v-transition);
  flex: 1;
  max-width: 180px;
}

.vejai-btn-next:hover {
  background: var(--v-primary-light);
}

.vejai-btn-next:disabled {
  background: var(--v-border);
  cursor: not-allowed;
}

/* Result screen */
.vejai-result {
  text-align: center;
  animation: vejai-modal-in 0.4s ease;
}

.vejai-result-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.vejai-result-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v-text);
  margin-bottom: 8px;
}

.vejai-result-engagement {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.vejai-result-description {
  font-size: 14px;
  color: var(--v-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.vejai-result-cta {
  display: inline-block;
  padding: 12px 32px;
  background: var(--v-primary);
  color: var(--v-white);
  border: none;
  border-radius: 10px;
  font-family: var(--v-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--v-transition);
  margin-bottom: 14px;
}

.vejai-result-cta:hover {
  background: var(--v-primary-light);
  transform: translateY(-1px);
}

.vejai-calendly-container {
  margin-top: 16px;
  min-height: 900px;
  border-radius: 12px;
  overflow: hidden;
}

.vejai-modal:has(.vejai-calendly-container[style*="display: block"]),
.vejai-modal:has(.vejai-calendly-container[style*="display:block"]) {
  max-height: 95vh;
  max-width: 620px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .vejai-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vejai-grid-fit {
    grid-template-columns: repeat(2, 1fr);
  }

  .vejai-counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .vejai-charts,
  .vejai-charts-2x2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vejai-ppc-stamp {
    position: static;
    transform: rotate(-4deg);
    display: inline-block;
    margin-top: 16px;
    font-size: 10px;
  }

  .vejai-nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--v-white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid var(--v-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .vejai-nav-links.open {
    display: flex;
  }

  .vejai-nav-links a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--v-surface);
  }

  .vejai-nav-cta {
    display: none;
  }

  .vejai-nav-toggle {
    display: flex;
  }

  .vejai-hero {
    padding: 120px 16px 80px;
  }

  .vejai-section {
    padding: 64px 0;
  }

  .vejai-grid-3 {
    grid-template-columns: 1fr;
  }

  .vejai-grid-fit {
    grid-template-columns: 1fr;
  }

  .vejai-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  #vejai-fab-btn {
    padding: 14px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .vejai-fab-text {
    display: none;
  }

  .vejai-fab-icon {
    font-size: 22px;
  }

  .vejai-modal {
    padding: 28px 20px;
    width: 96%;
    max-height: 92vh;
    border-radius: 16px;
  }

  .vejai-calendly-container {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .vejai-hero-heading {
    font-size: 2rem;
  }

  .vejai-counter {
    font-size: 2rem;
  }

  .vejai-modal {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .vejai-step-option {
    padding: 12px 14px;
    font-size: 13px;
  }

  .vejai-btn-next {
    max-width: none;
  }
}
