/* ==========================================================================
   WEB NEXS VIDEO CMS STYLESHEET (Home Page / Graphik Typography Theme)
   ========================================================================== */

@font-face {
  font-family: graphik_regularregular;
  src: url(../fonts/graphikregular-webfont.woff2) format("woff2"), url(graphikregular-webfont.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: graphikmedium;
  src: url(../fonts/graphikmedium-webfont.woff2) format("woff2"), url(graphikmedium-webfont.woff) format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --vcms-brand: #022EF8;
  --vcms-brand-dark: #0023c4;
  --vcms-brand-light: #eef3ff;
  --vcms-accent: #00d2ff;
  --vcms-dark: #000000;
  --vcms-dark-blue: #09132e;
  --vcms-body-text: #334155;
  --vcms-muted: #64748b;
  --vcms-bg-alt: #f8fafc;
  --vcms-border: #e2e8f0;
  --vcms-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --vcms-shadow-md: 0 10px 25px -5px rgba(2, 46, 248, 0.08), 0 8px 10px -6px rgba(2, 46, 248, 0.04);
  --vcms-shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
  --vcms-radius: 12px;
  --vcms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcms-wrapper {
  color: var(--vcms-body-text);
  font-family: 'graphik_regularregular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  line-height: 1.65;
  letter-spacing: 0.3px;
}

/* Headings Typography - Matching Home Page */
.vcms-wrapper h1,
.vcms-wrapper h2,
.vcms-wrapper h3,
.vcms-wrapper h4,
.vcms-wrapper h5,
.vcms-wrapper h6,
.vcms-title,
.vcms-subtitle {
  font-family: 'graphikmedium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: #000000;
  line-height: 1.28;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.vcms-wrapper p,
.vcms-wrapper li {
  font-family: 'graphik_regularregular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  letter-spacing: 0.3px;
}

/* Base Utility Classes */
.vcms-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.vcms-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--vcms-border);
}

.vcms-section-alt {
  background-color: var(--vcms-bg-alt);
}

.vcms-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.vcms-subtitle {
  font-size: 1.3rem;
  color: var(--vcms-brand);
  margin: 28px 0 12px;
}

.vcms-lead {
  font-size: 1.1rem;
  color: var(--vcms-body-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Buttons */
.vcms-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--vcms-brand-dark) !important;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.05rem;
  text-decoration: none !important;
  transition: var(--vcms-transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.vcms-btn-primary:hover {
  background: #ffffff;
  color: var(--vcms-brand-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.vcms-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  padding: 12px 28px;
  font-size: 1.05rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: var(--vcms-transition);
  margin-left: 12px;
}

.vcms-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.vcms-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--vcms-brand-dark) !important;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: var(--vcms-transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.vcms-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.vcms-hero {
  background: linear-gradient(135deg, #09132e 0%, #022EF8 100%);
  color: #ffffff;
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vcms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vcms-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  color: var(--vcms-accent);
  margin-bottom: 20px;
}

.vcms-hero h1 {
  font-size: 2.75rem;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 20px;
  color: #ffffff !important;
  letter-spacing: -0.01em;
}

.vcms-hero p {
  font-size: 1.2rem;
  max-width: 780px;
  margin: 0 auto 32px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* Quick Answer Section */
.vcms-quick-answer-card {
  background: var(--vcms-brand-light);
  border: 1px solid rgba(2, 46, 248, 0.18);
  border-radius: var(--vcms-radius);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--vcms-shadow-sm);
}

.vcms-quick-answer-card h2 {
  color: var(--vcms-brand-dark);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.vcms-qa-links {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.vcms-qa-links a {
  color: var(--vcms-brand);
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  text-decoration: none;
}

.vcms-qa-links a:hover {
  text-decoration: underline;
}

.vcms-takeaways {
  background: #ffffff;
  border: 1px solid var(--vcms-border);
  border-left: 5px solid var(--vcms-brand);
  border-radius: 10px;
  padding: 24px;
  margin-top: 24px;
}

.vcms-takeaways h3 {
  margin: 0 0 14px;
  color: #000000;
  font-size: 1.15rem;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vcms-takeaways ul {
  margin: 0;
  padding-left: 20px;
}

.vcms-takeaways li {
  margin-bottom: 8px;
  color: var(--vcms-body-text);
}

/* Features Grid */
.vcms-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.vcms-feature-card {
  background: #ffffff;
  border: 1px solid var(--vcms-border);
  border-radius: var(--vcms-radius);
  padding: 24px;
  transition: var(--vcms-transition);
}

.vcms-feature-card:hover {
  border-color: var(--vcms-brand);
  transform: translateY(-3px);
  box-shadow: var(--vcms-shadow-md);
}

.vcms-feature-card strong {
  display: block;
  color: var(--vcms-brand);
  font-family: 'graphikmedium', sans-serif !important;
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Taxonomy Chain & Diagram */
.vcms-chain-box {
  background: linear-gradient(135deg, var(--vcms-dark-blue) 0%, #001247 100%);
  color: #ffffff;
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--vcms-radius);
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: var(--vcms-shadow-md);
  margin: 28px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vcms-chain-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vcms-chain-arrow {
  color: var(--vcms-accent);
}

.vcms-diagram-box {
  background: #ffffff;
  border: 1px solid var(--vcms-border);
  border-radius: var(--vcms-radius);
  padding: 30px;
  text-align: center;
  margin: 28px 0;
  box-shadow: var(--vcms-shadow-sm);
}

/* SVG Custom Visual Diagram */
.vcms-svg-diagram {
  max-width: 100%;
  height: auto;
}

/* Catalog Types Badge Grid */
.vcms-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.vcms-catalog-item {
  background: #ffffff;
  border: 1px solid var(--vcms-border);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--vcms-transition);
}

.vcms-catalog-item i {
  color: var(--vcms-brand);
}

.vcms-catalog-item:hover {
  background: var(--vcms-brand-light);
  border-color: var(--vcms-brand);
  transform: translateY(-2px);
}

/* Comparison Table */
.vcms-table-responsive {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--vcms-radius);
  border: 1px solid var(--vcms-border);
  box-shadow: var(--vcms-shadow-sm);
}

.vcms-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.vcms-table th, 
.vcms-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--vcms-border);
}

.vcms-table th {
  background: var(--vcms-brand);
  color: #ffffff;
  font-family: 'graphikmedium', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 500;
  width: 50%;
}

.vcms-table tr:last-child td {
  border-bottom: none;
}

.vcms-table tbody tr:nth-child(even) {
  background-color: var(--vcms-bg-alt);
}

.vcms-table tbody tr:hover {
  background-color: var(--vcms-brand-light);
}

/* Content Team Grid */
.vcms-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.vcms-team-card {
  background: #ffffff;
  border: 1px solid var(--vcms-border);
  border-radius: var(--vcms-radius);
  padding: 20px;
  transition: var(--vcms-transition);
}

.vcms-team-card:hover {
  border-color: var(--vcms-brand);
  transform: translateY(-3px);
  box-shadow: var(--vcms-shadow-md);
}

.vcms-team-card strong {
  color: var(--vcms-brand);
  display: block;
  font-family: 'graphikmedium', sans-serif !important;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Workflow Steps Cards */
.vcms-step-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.vcms-step-card {
  background: #ffffff;
  border: 1px solid var(--vcms-border);
  border-left: 4px solid var(--vcms-brand);
  border-radius: 8px;
  padding: 18px 22px;
}

.vcms-step-card strong {
  color: var(--vcms-brand);
  font-family: 'graphikmedium', sans-serif !important;
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
}

/* Mistakes Grid */
.vcms-mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.vcms-mistake-card {
  background: #ffffff;
  border: 1px solid #fecdd3;
  border-left: 4px solid #e11d48;
  border-radius: 8px;
  padding: 20px;
}

.vcms-mistake-card strong {
  color: #9f1239;
  font-family: 'graphikmedium', sans-serif !important;
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}

/* FAQ Details */
.vcms-faq-item {
  border: 1px solid var(--vcms-border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
  background: #ffffff;
  transition: var(--vcms-transition);
}

.vcms-faq-item[open] {
  border-color: var(--vcms-brand);
  box-shadow: var(--vcms-shadow-sm);
}

.vcms-faq-item summary {
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  font-size: 1.1rem;
  color: #000000;
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vcms-faq-item summary::-webkit-details-marker {
  display: none;
}

.vcms-faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--vcms-brand);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.vcms-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.vcms-faq-item p {
  margin: 14px 0 0;
  color: var(--vcms-body-text);
  line-height: 1.65;
}

/* CTA Band */
.vcms-cta-band {
  background: linear-gradient(135deg, var(--vcms-dark-blue) 0%, var(--vcms-brand-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: 64px 0;
}

.vcms-cta-band h2 {
  color: #ffffff !important;
  font-family: 'graphikmedium', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.vcms-cta-band p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 28px;
  color: #cbd5e1;
}

/* Inline Links */
.vcms-inline-link {
  color: var(--vcms-brand);
  font-family: 'graphikmedium', sans-serif !important;
  font-weight: 500;
  text-decoration: none;
}

.vcms-inline-link:hover {
  text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .vcms-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vcms-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vcms-hero h1 {
    font-size: 2.1rem;
  }
  .vcms-features-grid,
  .vcms-mistakes-grid,
  .vcms-catalog-grid,
  .vcms-team-grid {
    grid-template-columns: 1fr;
  }
  .vcms-btn-secondary {
    margin-left: 0;
    margin-top: 12px;
  }
  .vcms-chain-box {
    font-size: 0.95rem;
  }
}
