/* ===== VeMPS IMAGE LOGO ===== */
.logo-img {
  display: block;
  height: 40px;
  width: auto;
}
/* White rendering of the black logo for dark backgrounds */
.logo-img--light {
  filter: brightness(0) invert(1);
}
/* Sidebar logo — small */
.mock-sidebar-logo .logo-img { height: 22px; }
/* Footer logo */
.footer-logo { height: 30px; }
@keyframes cyclone-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Watermark */
.hero-watermark {
  position: absolute;
  top: 60px;
  right: -60px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  animation: cyclone-spin 40s linear infinite;
  transform-origin: center center;
}
.hero-watermark svg { width: 100%; height: 100%; }
.hero-content, .hero > .container { position: relative; z-index: 1; }
/* Mock sidebar logo */
.mock-sidebar-logo {
  display: flex;
  align-items: center;
  padding: 12px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
  color: #fff;
}
.mock-sidebar-logo .logo-wordmark {
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1f36;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-light { background: #f7f8fc; }
.section-dark { background: #0f1629; color: #fff; }
.section-cta { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%); color: #fff; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 20px;
}
.section-label.light {
  color: #93c5fd;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 18px;
  color: #6b7280;
  max-width: 640px;
  margin-bottom: 56px;
}
.section-sub.light { color: rgba(255,255,255,0.8); }
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 22px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: #1d4ed8; box-shadow: 0 6px 20px rgba(37,99,235,0.45); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #374151;
  border: 1.5px solid #d1d5db;
}
.btn-ghost:hover { background: #f9fafb; border-color: #9ca3af; }
.btn-lg { font-size: 16px; padding: 14px 32px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== CHIPS ===== */
.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 10px;
}
.chip.sm { font-size: 10px; padding: 2px 8px; }
.red-chip { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.amber-chip { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.green-chip { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  height: 64px;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.logo {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  color: #1a1f36;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
/* .logo-icon removed — replaced by .logo-wordmark */
.logo-text { letter-spacing: -0.5px; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { background: #f3f4f6; color: #111827; }
.nav-cta { margin-left: 8px; display: inline-flex; align-items: center; gap: 10px; }
.nav-burger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; margin-left: auto; }

/* ===== HERO ===== */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -200px; right: -300px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { text-align: center; padding-bottom: 56px; }
.hero-content .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: #111827; }
.stat-label { display: block; font-size: 12px; color: #6b7280; font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: #e5e7eb; }

/* ===== DASHBOARD MOCK ===== */
.hero-mock {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 60px rgba(0,0,0,0.12), 0 0 0 1px #e5e7eb;
  max-width: 900px;
  margin: 56px auto 0;
  background: #fff;
}
.mock-bar {
  background: #f3f4f6;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}
.mock-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.mock-dot.red { background: #ef4444; }
.mock-dot.amber { background: #f59e0b; }
.mock-dot.green { background: #22c55e; }
.mock-title { margin-left: 8px; font-size: 13px; color: #6b7280; font-weight: 500; }
.mock-body { display: flex; min-height: 300px; }
.mock-sidebar {
  width: 180px;
  background: #0f1629;
  padding: 20px 0;
  flex-shrink: 0;
}
.mock-nav-item {
  font-size: 12px;
  color: #9ca3af;
  padding: 9px 20px;
  cursor: default;
  transition: 0.15s;
}
.mock-nav-item.active { color: #fff; background: rgba(37,99,235,0.3); border-left: 3px solid #2563eb; }
.mock-main { flex: 1; padding: 24px; background: #f9fafb; }
.mock-welcome { font-size: 14px; color: #374151; margin-bottom: 20px; }
.mock-cards { display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.mock-card {
  flex: 1; min-width: 100px;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.mock-card-label { font-size: 10px; color: #9ca3af; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.mock-card-num { font-size: 28px; font-weight: 800; line-height: 1.1; margin: 4px 0; }
.mock-card-sub { font-size: 11px; color: #6b7280; }
.red-text { color: #dc2626; }
.amber-text { color: #d97706; }
.green-text { color: #16a34a; }
.mock-table-label { font-size: 12px; font-weight: 700; color: #374151; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.mock-table { background: #fff; border-radius: 10px; border: 1px solid #e5e7eb; overflow: hidden; }
.mock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  padding: 9px 16px;
  font-size: 12px;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
  gap: 8px;
}
.mock-row:last-child { border-bottom: none; }
.mock-row.header { background: #f9fafb; color: #6b7280; font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== PROBLEM CARDS ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: 0.2s;
}
.problem-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.problem-icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { color: #6b7280; font-size: 15px; }
.solve-banner {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  padding: 24px 32px;
  text-align: center;
}
.solve-text { font-size: 18px; font-weight: 700; color: #1e40af; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: #c7d2fe; }
.feature-card--wide { grid-column: span 1; }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #111827; }
.feature-card p { color: #6b7280; font-size: 15px; line-height: 1.65; }
.feature-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #374151; }

/* ===== IDMP ===== */
.idmp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.idmp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  transition: 0.2s;
}
.idmp-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.idmp-code { font-size: 13px; font-weight: 700; color: #93c5fd; letter-spacing: 1px; margin-bottom: 8px; }
.idmp-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.idmp-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px 28px;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  color: #dbeafe;
  line-height: 1;
  margin-bottom: 16px;
}
.step-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #111827; }
.step-body p { font-size: 15px; color: #6b7280; line-height: 1.65; }
.step-arrow { font-size: 28px; color: #d1d5db; align-self: center; flex-shrink: 0; }

/* ===== TECH ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.tech-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 24px;
  transition: 0.2s;
}
.tech-card:hover { border-color: #93c5fd; box-shadow: 0 4px 20px rgba(37,99,235,0.1); }
.tech-logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 14px;
}
.net { background: #512bd4; color: #fff; }
.angular { background: #c3002f; color: #fff; }
.sql { background: #cc2927; color: #fff; }
.jwt { background: #000; color: #fff; }
.swagger { background: #85ea2d; color: #173647; }
.ts { background: #3178c6; color: #fff; }
.tech-desc { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* ===== CONTACT FORM ===== */
.cta-content { max-width: 700px; margin: 0 auto; }
.contact-form { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group:last-child { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #fff;
  font-family: inherit;
  transition: 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.form-group textarea { resize: vertical; }
.form-success { margin-top: 16px; text-align: center; color: #bbf7d0; font-size: 15px; font-weight: 600; }
.cta-alt { margin-top: 20px; text-align: center; color: rgba(255,255,255,0.85); font-size: 15px; }
.cta-alt a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-alt a:hover { color: #dbeafe; }
.hidden { display: none; }

/* ===== FOOTER ===== */
.footer { background: #0f1629; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 13px; color: #6b7280; margin-left: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #6b7280; transition: 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: #4b5563; }
.footer .logo-text { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; border-bottom: 1px solid #e5e7eb; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .mock-sidebar { display: none; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-form { padding: 24px; }
}
