/* ============================================
   VUAdmin.nl — Stylesheet
   Brand: #7c69ef (purple), #2c2950 (dark navy)
   ============================================ */

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

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

:root {
  --purple:       #6B35FF;
  --purple-dark:  #5a25ee;
  --purple-deep:  #4a1fd4;
  --navy:         #2c2950;
  --navy-light:   #3d3870;
  --body-bg:      #f1f4f8;
  --white:        #ffffff;
  --text:         #1a1a2e;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --card-bg:      #ffffff;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(44, 41, 80, 0.10);
  --shadow-lg:    0 12px 48px rgba(44, 41, 80, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: var(--purple); text-decoration: none; transition: color .2s; }
a:hover { color: var(--purple-dark); }

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

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(44, 41, 80, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .3s;
}
nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
nav .logo img { height: 28px; }
nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
nav .nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .2s;
}
nav .nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--purple);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--purple-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--purple-deep) 55%, var(--purple) 100%);
  padding: 148px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,105,239,0.25) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-label .dot {
  width: 7px; height: 7px;
  background: #86efac;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero h1 span { color: #c4b9ff; }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--white);
  color: var(--navy) !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white) !important; background: rgba(255,255,255,0.07); }

/* Hero mockup */
.hero-visual {
  position: relative;
  z-index: 1;
}
.mockup-window {
  background: #1e1b3a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}
.mockup-window:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(1deg); }
.mockup-bar {
  background: #2c2950;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
}
.mockup-body {
  display: flex;
  height: 320px;
}
.mockup-sidebar {
  width: 56px;
  background: linear-gradient(180deg, #5c4fa9, #2c2950);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}
.sidebar-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.sidebar-icon.active { background: rgba(124,105,239,0.6); }
.mockup-content {
  flex: 1;
  background: #f1f4f8;
  padding: 16px;
  overflow: hidden;
}
.mock-header {
  font-size: 11px;
  font-weight: 700;
  color: #2c2950;
  margin-bottom: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mock-stat {
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mock-stat-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 3px;
}
.mock-stat-label { font-size: 9px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.mock-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mock-row {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  gap: 8px;
  border-bottom: 1px solid #f1f4f8;
  font-size: 10px;
}
.mock-row:last-child { border-bottom: none; }
.mock-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-row-title { flex: 1; color: #2c2950; font-weight: 500; }
.mock-badge {
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
}
.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-orange { background: #ffedd5; color: #c2410c; }
.badge-purple { background: #ede9fe; color: #7c3aed; }

/* ---------- TRUSTED BY — marquee ---------- */
.trusted {
  background: var(--body-bg);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trusted-label-wrap {
  text-align: center;
  margin-bottom: 22px;
}
.trusted-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trusted-track-outer {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trusted-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}
.trusted-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.trusted-logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 28px;
  transition: color .2s;
  letter-spacing: .01em;
}
.trusted-logo:hover { color: var(--text); }
.trusted-logo em {
  font-style: normal;
  color: var(--purple);
  font-weight: 700;
}
.trusted-sep {
  color: var(--purple);
  opacity: 0.35;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 96px 0;
  background: var(--white);
}
.section-label {
  display: inline-block;
  background: #ede9fe;
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-deep));
  opacity: 0;
  transition: opacity .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d8d3fa;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  background: #ede9fe;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background .2s;
}
.feature-card:hover .feature-icon { background: var(--purple); }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- HOW IT WORKS ---------- */
.how {
  padding: 96px 0;
  background: var(--body-bg);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-steps { display: flex; flex-direction: column; gap: 32px; }
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124,105,239,0.35);
}
.step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-visual {
  position: relative;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.info-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.info-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.pill-green  { background: #dcfce7; color: #16a34a; }
.pill-blue   { background: #dbeafe; color: #1d4ed8; }
.course-list { display: flex; flex-direction: column; gap: 10px; }
.course-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--body-bg);
  transition: background .2s;
}
.course-item:hover { background: #ede9fe; }
.course-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.course-name { flex: 1; font-size: 14px; font-weight: 500; color: var(--text); }
.course-count { font-size: 12px; color: var(--text-muted); }
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.floating-badge.badge-1 { bottom: -20px; right: -20px; animation-delay: 0s; }
.floating-badge.badge-2 { top: -20px; left: -20px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ---------- SECTOR SECTION ---------- */
.sector {
  padding: 96px 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--purple-deep) 100%);
  position: relative;
  overflow: hidden;
}
.sector::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,105,239,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.sector-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sector h2 { color: var(--white); }
.sector .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.sector .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.stat-list { display: flex; flex-direction: column; gap: 20px; }
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  transition: background .2s;
}
.stat-item:hover { background: rgba(255,255,255,0.12); }
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #c4b9ff;
  line-height: 1;
  white-space: nowrap;
}
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.stat-desc strong { color: var(--white); }

/* ---------- CHANGELOG TIMELINE ---------- */
.changelog {
  padding: 96px 0;
  background: var(--white);
}

.tl-wrap {
  position: relative;
  margin-top: 16px;
}

/* Fade-out overlay at the bottom */
.tl-fadeout {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 2;
}

.timeline {
  position: relative;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), rgba(107,53,255,0.08));
  border-radius: 2px;
}

.tl-item {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  align-items: flex-start;
  position: relative;
}

/* Dot on the line */
.tl-item::before {
  content: '';
  position: absolute;
  left: 83px;
  top: 18px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
  box-shadow: 0 0 0 4px rgba(107,53,255,0.1);
  z-index: 1;
  transition: transform .2s, background .2s;
}
.tl-item:hover::before {
  transform: scale(1.3);
  background: var(--purple);
}

.tl-date {
  width: 72px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
  padding-top: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.3;
}

.tl-card {
  flex: 1;
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tl-item:hover .tl-card {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: #d8d3fa;
}

.tl-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tl-feat {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.tl-feat strong { color: var(--text); }
.tl-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .timeline::before { left: 12px; }
  .tl-item { padding-left: 30px; gap: 12px; }
  .tl-item::before { left: 4px; top: 14px; }
  .tl-date { width: auto; text-align: left; padding-top: 10px; }
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  padding: 80px 0;
  background: var(--body-bg);
}
.newsletter-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-deep) 100%);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,53,255,0.3) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.newsletter-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin: 12px 0 10px;
}
.newsletter-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}
.nl-form-wrap { display: flex; flex-direction: column; }

.nl-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nl-fields input {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.nl-fields input::placeholder { color: rgba(255,255,255,0.4); }
.nl-fields input:focus {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.15);
}
.nl-btn {
  width: 100%;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  margin-top: 4px;
}
.nl-btn:hover   { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.nl-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.nl-feedback { font-size: 14px; font-weight: 500; min-height: 20px; margin-top: 8px; }
.nl-feedback.success { color: #86efac; }
.nl-feedback.error   { color: #fca5a5; }

.nl-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .newsletter-box { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
}
@media (max-width: 480px) {
  .newsletter-box { padding: 32px 24px; }
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 96px 0;
  background: var(--body-bg);
}
.cta-box {
  background: linear-gradient(145deg, var(--navy), var(--purple-deep));
  border-radius: 24px;
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,105,239,0.3) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact cards inside CTA */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 24px 20px;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}
.contact-icon { font-size: 28px; line-height: 1; }
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
@media (max-width: 760px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer .logo img { height: 24px; margin-bottom: 16px; }
footer p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.made-by { color: rgba(255,255,255,0.35); }
.made-by a { color: var(--purple); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner, .how-grid, .sector-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-visual .floating-badge.badge-2 { display: none; }
}
@media (max-width: 640px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
    /* hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85) !important;
  }
  .nav-links li:last-child a {
    margin-top: 12px;
    border-bottom: none;
    background: var(--purple);
    border-radius: 10px;
    text-align: center;
    padding: 13px;
    color: white !important;
  }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
  .sector-inner { grid-template-columns: 1fr; }
  .trusted-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
