﻿/* ============================================================
   VendJunction – Main Stylesheet v2.0
   Clear HIL Bartosz Nowakowski
   Palette: #2563EB / #06B6D4 / #7C3AED / #22C55E / #FACC15
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --vj-blue: #2563EB;
  --vj-blue-dark: #1d4ed8;
  --vj-blue-light: #3b82f6;
  --vj-cyan: #06B6D4;
  --vj-cyan-light: #22d3ee;
  --vj-purple: #7C3AED;
  --vj-purple-light: #8b5cf6;
  --vj-green: #22C55E;
  --vj-green-light: #4ade80;
  --vj-yellow: #FACC15;
  --vj-yellow-light: #fde047;

  --vj-white: #FFFFFF;
  --vj-bg: #F8FAFC;
  --vj-bg-alt: #F1F5F9;
  --vj-dark: #0F172A;
  --vj-text: #1E293B;
  --vj-muted: #475569;
  --vj-border: #E2E8F0;
  --vj-border-light: #F1F5F9;

  /* Gradients */
  --vj-gradient-blue-cyan: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --vj-gradient-purple-blue: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  --vj-gradient-green-cyan: linear-gradient(135deg, #22C55E 0%, #06B6D4 100%);
  --vj-gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #2563EB 40%, #7C3AED 100%);
  --vj-gradient-cta: linear-gradient(135deg, #7C3AED 0%, #2563EB 50%, #06B6D4 100%);

  /* Sizes */
  --vj-radius-sm: 0.5rem;
  --vj-radius: 0.75rem;
  --vj-radius-lg: 1rem;
  --vj-radius-xl: 1.25rem;
  --vj-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --vj-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --vj-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --vj-transition: all 0.3s ease;
}

/* --- Typography --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--vj-text);
  background: var(--vj-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--vj-dark);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
a { color: var(--vj-blue); text-decoration: none; transition: var(--vj-transition); }
a:hover { color: var(--vj-purple); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* --- Utility --- */
.vj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vj-section {
  padding: 5rem 0;
}

.vj-section-alt {
  background: var(--vj-bg);
  padding: 5rem 0;
}

.vj-section-dark {
  background: var(--vj-dark);
  color: var(--vj-white);
  padding: 5rem 0;
}

.vj-section-dark h2,
.vj-section-dark h3 {
  color: var(--vj-white);
}

.vj-text-center { text-align: center; }
.vj-mb-1 { margin-bottom: 1rem; }
.vj-mb-2 { margin-bottom: 2rem; }
.vj-mb-3 { margin-bottom: 3rem; }

/* --- Buttons --- */
.vj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--vj-radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: var(--vj-transition);
  white-space: nowrap;
}

.vj-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--vj-shadow-lg);
}

.vj-btn-primary {
  background: var(--vj-gradient-blue-cyan);
  color: var(--vj-white);
  border-color: transparent;
}

.vj-btn-primary:hover {
  background: var(--vj-gradient-purple-blue);
  color: var(--vj-white);
}

.vj-btn-secondary {
  background: transparent;
  color: var(--vj-white);
  border-color: var(--vj-white);
}

.vj-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--vj-white);
}

.vj-btn-outline {
  background: transparent;
  color: var(--vj-blue);
  border-color: var(--vj-blue);
}

.vj-btn-outline:hover {
  background: var(--vj-blue);
  color: var(--vj-white);
}

.vj-btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.vj-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.vj-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vj-border);
  padding: 0.75rem 0;
  transition: var(--vj-transition);
}

.vj-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.vj-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vj-logo-img {
  display: block;
  height: 42px;
  width: auto;
}

/* Navigation */
.vj-nav-wrapper {
  display: flex;
  align-items: center;
}

.vj-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.vj-menu li a:not(.vj-btn) {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--vj-text);
  border-radius: var(--vj-radius-sm);
  transition: var(--vj-transition);
}

.vj-menu li a:not(.vj-btn):hover {
  color: var(--vj-blue);
  background: rgba(37, 99, 235, 0.06);
}

.vj-btn-nav {
  margin-left: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.vj-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.vj-hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--vj-dark);
  border-radius: 2px;
  transition: var(--vj-transition);
}

.vj-hamburger.active .vj-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.vj-hamburger.active .vj-hamburger-line:nth-child(2) {
  opacity: 0;
}

.vj-hamburger.active .vj-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.vj-hero {
  background: var(--vj-gradient-hero);
  color: var(--vj-white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.vj-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vj-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vj-hero .vj-container {
  position: relative;
  z-index: 1;
}

.vj-hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.vj-hero-text {
  flex: 1;
}

.vj-hero-text h1 {
  color: var(--vj-white);
  margin-bottom: 1.25rem;
}

.vj-hero-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.vj-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.vj-hero-image {
  flex: 1;
  max-width: 520px;
}

.vj-hero-image img {
  border-radius: var(--vj-radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
}

/* Hero small variant for inner pages */
.vj-hero-sm {
  padding: 4rem 0 3rem;
  text-align: center;
}

.vj-hero-sm h1 {
  color: var(--vj-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.vj-hero-sm p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================================
   GRID & CARDS
   ============================================================ */
.vj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vj-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vj-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vj-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vj-card {
  background: var(--vj-white);
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius-lg);
  padding: 2rem;
  transition: var(--vj-transition);
}

.vj-card:hover {
  border-color: var(--vj-blue);
  box-shadow: var(--vj-shadow-xl);
  transform: translateY(-4px);
}

.vj-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--vj-radius);
  margin-bottom: 1.25rem;
  background: var(--vj-bg);
}

.vj-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.vj-card p {
  color: var(--vj-muted);
  font-size: 0.938rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.vj-card-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.vj-card-features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--vj-muted);
  margin-bottom: 0.4rem;
}

.vj-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--vj-gradient-green-cyan);
  border-radius: 50%;
}

.vj-card-link {
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--vj-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vj-card-link:hover {
  color: var(--vj-purple);
  gap: 0.6rem;
}

/* Large solution cards */
.vj-card-lg {
  border-radius: var(--vj-radius-xl);
  overflow: hidden;
  background: var(--vj-white);
  border: 1px solid var(--vj-border);
  transition: var(--vj-transition);
}

.vj-card-lg:hover {
  box-shadow: var(--vj-shadow-xl);
  transform: translateY(-4px);
}

.vj-card-lg-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--vj-bg);
}

.vj-card-lg-body {
  padding: 2rem;
}

.vj-card-lg-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.vj-card-lg-body p {
  color: var(--vj-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Feature cards with image top */
.vj-card-feature {
  background: var(--vj-white);
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--vj-transition);
}

.vj-card-feature:hover {
  box-shadow: var(--vj-shadow-lg);
  transform: translateY(-3px);
  border-color: var(--vj-cyan);
}

.vj-card-feature img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--vj-radius);
  margin: 0 auto 1rem;
  background: var(--vj-bg);
}

.vj-card-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vj-card-feature p {
  font-size: 0.875rem;
  color: var(--vj-muted);
  line-height: 1.6;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.vj-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vj-dark);
  color: var(--vj-white);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.vj-cookie.show {
  transform: translateY(0);
}

.vj-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vj-cookie-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  min-width: 250px;
}

.vj-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTION: PROCESS STEPS
   ============================================================ */
.vj-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.vj-process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}

.vj-process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background: var(--vj-gradient-blue-cyan);
  color: var(--vj-white);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

.vj-process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.vj-process-step p {
  font-size: 0.875rem;
  color: var(--vj-muted);
  line-height: 1.6;
  margin: 0;
}

.vj-process-step:not(:last-child)::after {
  display: none;
}

/* ============================================================
   SECTION: COMPARISON
   ============================================================ */
.vj-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.vj-comparison-image img {
  border-radius: var(--vj-radius-xl);
  width: 100%;
  height: auto;
}

.vj-comparison-list {
  display: grid;
  gap: 1rem;
}

.vj-comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--vj-white);
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius);
  transition: var(--vj-transition);
}

.vj-comparison-item:hover {
  border-color: var(--vj-blue);
  box-shadow: var(--vj-shadow);
}

.vj-comparison-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vj-radius-sm);
  background: rgba(37, 99, 235, 0.1);
  color: var(--vj-blue);
  font-weight: 700;
  font-size: 0.875rem;
}

.vj-comparison-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.vj-comparison-item p {
  font-size: 0.875rem;
  color: var(--vj-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   SECTION: SUPPORT
   ============================================================ */
.vj-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vj-support-image img {
  border-radius: var(--vj-radius-xl);
  width: 100%;
  height: auto;
}

.vj-support-topics {
  display: grid;
  gap: 1rem;
}

.vj-support-topic {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--vj-white);
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius);
  transition: var(--vj-transition);
}

.vj-support-topic:hover {
  border-color: var(--vj-green);
  box-shadow: var(--vj-shadow);
}

.vj-support-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--vj-green);
  font-weight: 700;
  font-size: 0.875rem;
}

.vj-support-topic h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.vj-support-topic p {
  font-size: 0.875rem;
  color: var(--vj-muted);
  margin: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.vj-cta-band {
  background: var(--vj-gradient-cta);
  color: var(--vj-white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vj-cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.vj-cta-band .vj-container {
  position: relative;
  z-index: 1;
}

.vj-cta-band h2 {
  color: var(--vj-white);
  margin-bottom: 1rem;
}

.vj-cta-band p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.vj-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.vj-faq-item {
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--vj-transition);
}

.vj-faq-item:hover {
  border-color: var(--vj-blue);
}

.vj-faq-question {
  width: 100%;
  background: var(--vj-white);
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--vj-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--vj-transition);
}

.vj-faq-question:hover {
  background: var(--vj-bg);
}

.vj-faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--vj-blue);
  flex-shrink: 0;
  transition: var(--vj-transition);
}

.vj-faq-item.active .vj-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.vj-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.vj-faq-item.active .vj-faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.vj-faq-answer p {
  color: var(--vj-muted);
  font-size: 0.938rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.vj-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vj-contact-info {
  display: grid;
  gap: 1.5rem;
}

.vj-contact-card {
  background: var(--vj-white);
  border: 1px solid var(--vj-border);
  border-radius: var(--vj-radius);
  padding: 1.5rem;
  transition: var(--vj-transition);
}

.vj-contact-card:hover {
  border-color: var(--vj-blue);
  box-shadow: var(--vj-shadow);
}

.vj-contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.vj-contact-card p {
  font-size: 0.9rem;
  color: var(--vj-muted);
  margin: 0;
}

.vj-contact-card a {
  color: var(--vj-blue);
  font-weight: 500;
}

.vj-contact-card a:hover {
  color: var(--vj-purple);
}

.vj-contact-company {
  background: var(--vj-bg);
  border-radius: var(--vj-radius);
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--vj-muted);
}

.vj-contact-company strong {
  color: var(--vj-dark);
}

.vj-form {
  display: grid;
  gap: 1.25rem;
}

.vj-form-group {
  display: grid;
  gap: 0.35rem;
}

.vj-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vj-dark);
}

.vj-form-input,
.vj-form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  border: 2px solid var(--vj-border);
  border-radius: var(--vj-radius);
  background: var(--vj-white);
  transition: var(--vj-transition);
  color: var(--vj-dark);
}

.vj-form-input:focus,
.vj-form-textarea:focus {
  outline: none;
  border-color: var(--vj-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.vj-form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================================
   TRUST / STATS STRIP
   ============================================================ */
.vj-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.vj-stat {
  padding: 1.5rem;
}

.vj-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--vj-gradient-blue-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.vj-stat-label {
  font-size: 0.938rem;
  color: var(--vj-muted);
  font-weight: 500;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.vj-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.vj-section-header h2 {
  margin-bottom: 0.75rem;
}

.vj-section-header p {
  font-size: 1.05rem;
  color: var(--vj-muted);
  line-height: 1.7;
}

.vj-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--vj-blue);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.vj-badge-green {
  background: rgba(34, 197, 94, 0.1);
  color: var(--vj-green);
}

.vj-badge-purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--vj-purple);
}

/* ============================================================
   CONTENT PAGES (Legal, etc.)
   ============================================================ */
.vj-content-page {
  max-width: 800px;
  margin: 0 auto;
}

.vj-content-page h2 {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
  border-bottom: 2px solid var(--vj-border);
  padding-bottom: 0.5rem;
}

.vj-content-page h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.vj-content-page p {
  color: var(--vj-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.vj-content-page ul,
.vj-content-page ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--vj-muted);
  line-height: 1.8;
}

.vj-content-page li {
  margin-bottom: 0.5rem;
}

.vj-content-page strong {
  color: var(--vj-dark);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.vj-thankyou {
  text-align: center;
  padding: 6rem 0;
}

.vj-thankyou img {
  max-width: 400px;
  margin: 0 auto 2rem;
  border-radius: var(--vj-radius-xl);
}

.vj-thankyou h1 {
  margin-bottom: 1rem;
}

.vj-thankyou p {
  font-size: 1.1rem;
  color: var(--vj-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vj-footer {
  background: var(--vj-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.vj-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vj-footer-logo {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.vj-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.vj-footer-contact {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.vj-footer-contact a {
  color: var(--vj-cyan-light);
}

.vj-footer-contact a:hover {
  color: var(--vj-white);
}

.vj-footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--vj-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.vj-footer-links li {
  margin-bottom: 0.6rem;
}

.vj-footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--vj-transition);
}

.vj-footer-links a:hover {
  color: var(--vj-cyan-light);
  padding-left: 4px;
}

.vj-footer-disclaimer {
  padding: 2rem 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vj-footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.6);
}

.vj-footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   RESPONSIVE – TABLET & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  .vj-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vj-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .vj-hero-text p {
    margin: 0 auto 2rem;
  }

  .vj-hero-buttons {
    justify-content: center;
  }

  .vj-grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vj-comparison {
    grid-template-columns: 1fr;
  }

  .vj-support {
    grid-template-columns: 1fr;
  }

  .vj-contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .vj-container {
    padding: 0 1.25rem;
  }

  .vj-section {
    padding: 3rem 0;
  }

  .vj-section-alt,
  .vj-section-dark {
    padding: 3rem 0;
  }

  /* Mobile Navigation */
  .vj-hamburger {
    display: flex;
  }

  .vj-nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--vj-white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .vj-nav-wrapper.active {
    right: 0;
  }

  .vj-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .vj-menu li a:not(.vj-btn) {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .vj-btn-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  /* Hero */
  .vj-hero {
    padding: 3rem 0;
  }

  .vj-hero-text h1 {
    font-size: 1.75rem;
  }

  .vj-hero-text p {
    font-size: 1rem;
  }

  .vj-hero-image {
    max-width: 100%;
  }

  /* Stats */
  .vj-stat-number {
    font-size: 1.75rem;
  }

  /* Grids */
  .vj-grid-3 {
    grid-template-columns: 1fr;
  }

  .vj-grid-4 {
    grid-template-columns: 1fr;
  }

  /* Process */
  .vj-process {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Footer */
  .vj-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Cookie */
  .vj-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .vj-cookie-actions {
    justify-content: center;
  }

  /* CTA */
  .vj-cta-band {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .vj-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .vj-hero-buttons .vj-btn {
    width: 100%;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes vjFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.vj-animate {
  animation: vjFadeIn 0.6s ease forwards;
}

.vj-animate-delay-1 { animation-delay: 0.1s; }
.vj-animate-delay-2 { animation-delay: 0.2s; }
.vj-animate-delay-3 { animation-delay: 0.3s; }
.vj-animate-delay-4 { animation-delay: 0.4s; }

/* Accessibility: focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--vj-blue);
  outline-offset: 2px;
}

/* Print */
@media print {
  .vj-header,
  .vj-footer,
  .vj-cookie {
    display: none;
  }
}
