/* ===================================
   ZARMIQUO — Main Stylesheet
   zm-style.css
   =================================== */

:root {
  --zm-navy: #0f1f3d;
  --zm-navy-light: #1a3260;
  --zm-navy-muted: #2a4580;
  --zm-gold: #c8a96e;
  --zm-gold-light: #dfc48e;
  --zm-gold-pale: #f5ead6;
  --zm-teal: #2a7c8a;
  --zm-teal-light: #3d9bac;
  --zm-slate: #4a5568;
  --zm-slate-light: #718096;
  --zm-bg-light: #f8f7f4;
  --zm-bg-white: #ffffff;
  --zm-text-dark: #1a1a2e;
  --zm-text-body: #3d3d50;
  --zm-text-muted: #6b6b80;
  --zm-border: #e2ddd6;
  --zm-shadow-sm: 0 2px 8px rgba(15,31,61,0.08);
  --zm-shadow-md: 0 8px 24px rgba(15,31,61,0.12);
  --zm-shadow-lg: 0 16px 48px rgba(15,31,61,0.16);
  --zm-radius: 12px;
  --zm-radius-lg: 20px;
  --zm-radius-xl: 32px;
  --zm-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --zm-font-display: 'Playfair Display', Georgia, serif;
  --zm-font-body: 'Source Serif 4', Georgia, serif;
  --zm-font-ui: 'DM Sans', system-ui, sans-serif;
  --zm-font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--zm-font-body);
  color: var(--zm-text-body);
  background-color: var(--zm-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Typography ─────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--zm-font-display);
  color: var(--zm-text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--zm-navy-muted);
  text-decoration: none;
  transition: color var(--zm-transition);
}
a:hover { color: var(--zm-teal); }

.zm-label {
  font-family: var(--zm-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zm-gold);
}

/* ─── Layout ─────────────────────────── */
.zm-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.zm-container-wide {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.zm-section {
  padding: 96px 0;
}

.zm-section-sm {
  padding: 64px 0;
}

/* ─── Navigation ─────────────────────── */
.zm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--zm-transition);
}

.zm-nav.zm-nav-scrolled {
  background: rgba(15, 31, 61, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.zm-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.zm-logo {
  font-family: var(--zm-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.zm-logo span {
  color: var(--zm-gold);
}

.zm-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.zm-nav-links a {
  font-family: var(--zm-font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--zm-transition);
}

.zm-nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.zm-nav-cta {
  font-family: var(--zm-font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--zm-navy) !important;
  background: var(--zm-gold) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  transition: all var(--zm-transition) !important;
}

.zm-nav-cta:hover {
  background: var(--zm-gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,169,110,0.4) !important;
}

.zm-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ─── Buttons ────────────────────────── */
.zm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--zm-font-ui);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--zm-transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.zm-btn-primary {
  background: var(--zm-gold);
  color: var(--zm-navy);
}

.zm-btn-primary:hover {
  background: var(--zm-gold-light);
  color: var(--zm-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}

.zm-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.zm-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.zm-btn-outline {
  background: transparent;
  color: var(--zm-navy);
  border: 1.5px solid var(--zm-navy);
}

.zm-btn-outline:hover {
  background: var(--zm-navy);
  color: #fff;
}

.zm-btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ─── Cards ──────────────────────────── */
.zm-card {
  background: #fff;
  border-radius: var(--zm-radius-lg);
  box-shadow: var(--zm-shadow-sm);
  transition: all var(--zm-transition);
  overflow: hidden;
  border: 1px solid var(--zm-border);
}

.zm-card:hover {
  box-shadow: var(--zm-shadow-md);
  transform: translateY(-4px);
}

.zm-card-body {
  padding: 28px 32px;
}

/* ─── Hero ────────────────────────────── */
.zm-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 40%, #1a3260 75%, #0f2d3a 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.zm-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(42,124,138,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.12) 0%, transparent 50%);
}

.zm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.zm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--zm-gold-light);
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.zm-hero-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.zm-hero-title em {
  font-style: italic;
  color: var(--zm-gold-light);
}

.zm-hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  font-family: var(--zm-font-body);
}

.zm-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.zm-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.zm-hero-stat-value {
  font-family: var(--zm-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--zm-gold-light);
  display: block;
}

.zm-hero-stat-label {
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.zm-hero-visual {
  position: relative;
  height: 520px;
}

.zm-hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--zm-radius-xl);
  box-shadow: var(--zm-shadow-lg);
}

.zm-hero-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #fff;
  border-radius: var(--zm-radius);
  padding: 16px 20px;
  box-shadow: var(--zm-shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.zm-hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--zm-gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zm-gold);
  font-size: 1.2rem;
}

.zm-hero-badge-text {
  font-family: var(--zm-font-ui);
}

.zm-hero-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--zm-text-dark);
  font-weight: 600;
}

.zm-hero-badge-text span {
  font-size: 0.75rem;
  color: var(--zm-text-muted);
}

/* ─── Score Simulation ───────────────── */
.zm-score-sim-section {
  background: var(--zm-bg-white);
  padding: 96px 0;
}

.zm-score-sim-wrapper {
  background: linear-gradient(135deg, var(--zm-navy) 0%, var(--zm-navy-light) 100%);
  border-radius: var(--zm-radius-xl);
  padding: 64px;
  color: #fff;
}

.zm-sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zm-sim-heading {
  color: #fff;
  margin-bottom: 16px;
}

.zm-sim-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.zm-slider-label {
  font-family: var(--zm-font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.zm-score-display {
  font-family: var(--zm-font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--zm-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.zm-score-range {
  font-family: var(--zm-font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.zm-slider-track {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,0.2);
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  margin-bottom: 16px;
}

.zm-slider-track::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--zm-gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.zm-distribution-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-bottom: 8px;
}

.zm-dist-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 3px 3px 0 0;
  transition: all 0.4s ease;
  position: relative;
}

.zm-dist-bar.zm-active {
  background: var(--zm-gold);
}

.zm-dist-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--zm-font-ui);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.zm-score-descriptor {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px 20px;
}

.zm-score-descriptor-title {
  font-family: var(--zm-font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--zm-gold-light);
  margin-bottom: 4px;
}

.zm-score-descriptor-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ─── Skills Grid ────────────────────── */
.zm-skills-section {
  background: var(--zm-bg-light);
  padding: 96px 0;
}

.zm-section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.zm-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.zm-skill-card {
  background: #fff;
  border-radius: var(--zm-radius-lg);
  border: 1px solid var(--zm-border);
  overflow: hidden;
  transition: all var(--zm-transition);
}

.zm-skill-card:hover {
  box-shadow: var(--zm-shadow-md);
}

.zm-skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  cursor: pointer;
  gap: 16px;
}

.zm-skill-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.zm-skill-icon-wrap.zm-color-navy { background: rgba(15,31,61,0.08); color: var(--zm-navy); }
.zm-skill-icon-wrap.zm-color-gold { background: rgba(200,169,110,0.15); color: var(--zm-gold); }
.zm-skill-icon-wrap.zm-color-teal { background: rgba(42,124,138,0.12); color: var(--zm-teal); }
.zm-skill-icon-wrap.zm-color-slate { background: rgba(74,85,104,0.1); color: var(--zm-slate); }

.zm-skill-title { font-size: 1.15rem; margin: 0; flex: 1; }

.zm-skill-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--zm-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zm-slate-light);
  font-size: 0.9rem;
  transition: all var(--zm-transition);
  flex-shrink: 0;
}

.zm-skill-card.zm-expanded .zm-skill-toggle {
  background: var(--zm-navy);
  color: #fff;
  transform: rotate(45deg);
}

.zm-skill-body {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.zm-skill-card.zm-expanded .zm-skill-body {
  max-height: 400px;
  padding: 0 32px 28px;
}

.zm-skill-body p {
  color: var(--zm-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.zm-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.zm-skill-tag {
  font-family: var(--zm-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--zm-bg-light);
  color: var(--zm-slate);
  border: 1px solid var(--zm-border);
}

/* ─── Quiz Preview ────────────────────── */
.zm-quiz-section {
  background: #fff;
  padding: 96px 0;
}

.zm-quiz-container {
  max-width: 720px;
  margin: 0 auto;
}

.zm-quiz-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.zm-quiz-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--zm-border);
  border-radius: 2px;
  margin: 0 16px;
  overflow: hidden;
}

.zm-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--zm-navy), var(--zm-teal));
  border-radius: 2px;
  transition: width 0.5s ease;
}

.zm-quiz-counter {
  font-family: var(--zm-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zm-slate-light);
  white-space: nowrap;
}

.zm-quiz-card {
  background: var(--zm-bg-light);
  border-radius: var(--zm-radius-xl);
  padding: 40px;
  border: 1px solid var(--zm-border);
}

.zm-quiz-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--zm-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zm-teal);
  background: rgba(42,124,138,0.1);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.zm-quiz-question {
  font-family: var(--zm-font-display);
  font-size: 1.3rem;
  color: var(--zm-text-dark);
  margin-bottom: 28px;
  line-height: 1.4;
}

.zm-quiz-options {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.zm-quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--zm-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--zm-transition);
  font-family: var(--zm-font-ui);
  font-size: 0.95rem;
  color: var(--zm-text-body);
}

.zm-quiz-option:hover {
  border-color: var(--zm-navy-muted);
  background: rgba(15,31,61,0.03);
}

.zm-quiz-option.zm-correct {
  border-color: #16a34a;
  background: rgba(22,163,74,0.06);
  color: #15803d;
}

.zm-quiz-option.zm-incorrect {
  border-color: #dc2626;
  background: rgba(220,38,38,0.05);
  color: #b91c1c;
}

.zm-quiz-option.zm-disabled {
  pointer-events: none;
  opacity: 0.65;
}

.zm-option-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--zm-bg-light);
  border: 1.5px solid var(--zm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all var(--zm-transition);
}

.zm-quiz-option.zm-correct .zm-option-marker {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.zm-quiz-option.zm-incorrect .zm-option-marker {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

.zm-quiz-feedback {
  background: rgba(42,124,138,0.1);
  border: 1px solid rgba(42,124,138,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--zm-teal);
  font-family: var(--zm-font-ui);
  display: none;
  margin-bottom: 20px;
}

.zm-quiz-feedback.zm-visible { display: block; }

.zm-quiz-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.zm-quiz-complete {
  text-align: center;
  padding: 24px;
}

/* ─── Stats Section ───────────────────── */
.zm-stats-section {
  background: linear-gradient(135deg, var(--zm-navy) 0%, #0a1628 100%);
  padding: 80px 0;
}

.zm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.zm-stat-item {
  position: relative;
}

.zm-stat-number {
  font-family: var(--zm-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--zm-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.zm-stat-number sup {
  font-size: 1.4rem;
  vertical-align: super;
}

.zm-stat-label {
  font-family: var(--zm-font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Testimonials ────────────────────── */
.zm-testimonials-section {
  background: var(--zm-bg-light);
  padding: 96px 0;
}

.zm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zm-testimonial-card {
  background: #fff;
  border-radius: var(--zm-radius-lg);
  padding: 32px;
  border: 1px solid var(--zm-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zm-testimonial-stars {
  color: var(--zm-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.zm-testimonial-quote {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--zm-text-body);
  flex: 1;
  font-style: italic;
}

.zm-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--zm-border);
}

.zm-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.zm-testimonial-name {
  font-family: var(--zm-font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--zm-text-dark);
}

.zm-testimonial-role {
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  color: var(--zm-text-muted);
}

/* ─── Team Section ────────────────────── */
.zm-team-section {
  background: #fff;
  padding: 96px 0;
}

.zm-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.zm-team-card {
  background: var(--zm-bg-light);
  border-radius: var(--zm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zm-border);
  transition: all var(--zm-transition);
}

.zm-team-card:hover {
  box-shadow: var(--zm-shadow-md);
  transform: translateY(-4px);
}

.zm-team-photo-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.zm-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zm-team-card:hover .zm-team-photo {
  transform: scale(1.04);
}

.zm-team-info {
  padding: 22px 24px;
}

.zm-team-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.zm-team-role {
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  color: var(--zm-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.zm-team-bio {
  font-size: 0.86rem;
  color: var(--zm-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Transparency Section ────────────── */
.zm-transparency-section {
  background: var(--zm-navy);
  padding: 80px 0;
}

.zm-transparency-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.zm-transparency-heading {
  color: #fff;
}

.zm-transparency-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.zm-transparency-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--zm-radius);
  padding: 24px;
}

.zm-transparency-item-icon {
  color: var(--zm-gold-light);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.zm-transparency-item-title {
  font-family: var(--zm-font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 8px;
}

.zm-transparency-item-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
  line-height: 1.6;
}

/* ─── Page Header ─────────────────────── */
.zm-page-header {
  background: linear-gradient(135deg, var(--zm-navy) 0%, var(--zm-navy-light) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.zm-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--zm-bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.zm-page-header-label {
  color: var(--zm-gold-light);
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.zm-page-header-title {
  color: #fff;
  margin-bottom: 16px;
}

.zm-page-header-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 580px;
}

/* ─── Article Cards ───────────────────── */
.zm-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zm-article-card {
  background: #fff;
  border-radius: var(--zm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zm-border);
  transition: all var(--zm-transition);
}

.zm-article-card:hover {
  box-shadow: var(--zm-shadow-md);
  transform: translateY(-4px);
}

.zm-article-image-wrap {
  height: 200px;
  overflow: hidden;
}

.zm-article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zm-article-card:hover .zm-article-image {
  transform: scale(1.04);
}

.zm-article-card-body {
  padding: 28px;
}

.zm-article-tag {
  display: inline-block;
  font-family: var(--zm-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zm-teal);
  background: rgba(42,124,138,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.zm-article-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.zm-article-card-excerpt {
  font-size: 0.9rem;
  color: var(--zm-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.zm-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  color: var(--zm-text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--zm-border);
}

/* ─── Article Content ─────────────────── */
.zm-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  padding: 64px 0 96px;
}

.zm-article-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.zm-article-content h2 {
  margin: 48px 0 20px;
  font-size: 1.8rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--zm-gold-pale);
}

.zm-article-content h3 {
  margin: 36px 0 16px;
  font-size: 1.3rem;
}

.zm-article-content p { margin-bottom: 1.4em; }

.zm-article-content img {
  width: 100%;
  border-radius: var(--zm-radius);
  margin: 32px 0;
  box-shadow: var(--zm-shadow-sm);
}

.zm-article-content blockquote {
  border-left: 4px solid var(--zm-gold);
  padding: 16px 24px;
  background: var(--zm-gold-pale);
  border-radius: 0 var(--zm-radius) var(--zm-radius) 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--zm-text-dark);
}

.zm-article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.zm-sidebar-widget {
  background: #fff;
  border-radius: var(--zm-radius-lg);
  padding: 28px;
  border: 1px solid var(--zm-border);
  margin-bottom: 24px;
}

.zm-sidebar-widget-title {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--zm-border);
}

.zm-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zm-toc-list a {
  font-family: var(--zm-font-ui);
  font-size: 0.85rem;
  color: var(--zm-text-muted);
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all var(--zm-transition);
}

.zm-toc-list a:hover {
  color: var(--zm-navy);
  padding-left: 6px;
}

/* ─── Contact ─────────────────────────── */
.zm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.zm-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.zm-contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--zm-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zm-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.zm-contact-info-label {
  font-family: var(--zm-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zm-text-muted);
  margin-bottom: 4px;
}

.zm-contact-info-value {
  font-size: 0.95rem;
  color: var(--zm-text-dark);
  font-weight: 500;
}

.zm-contact-form-card {
  background: #fff;
  border-radius: var(--zm-radius-xl);
  padding: 48px;
  box-shadow: var(--zm-shadow-md);
  border: 1px solid var(--zm-border);
}

/* ─── Form Styles ────────────────────── */
.zm-form-group {
  margin-bottom: 20px;
}

.zm-form-label {
  display: block;
  font-family: var(--zm-font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--zm-text-dark);
  margin-bottom: 8px;
}

.zm-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--zm-border);
  border-radius: 10px;
  font-family: var(--zm-font-body);
  font-size: 0.95rem;
  color: var(--zm-text-body);
  background: var(--zm-bg-light);
  transition: all var(--zm-transition);
  outline: none;
}

.zm-form-control:focus {
  border-color: var(--zm-navy-muted);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42,69,128,0.1);
}

.zm-form-control.zm-error {
  border-color: #dc2626;
}

.zm-form-error {
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 6px;
  display: none;
}

.zm-form-error.zm-visible { display: block; }

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

.zm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── Map ────────────────────────────── */
.zm-map-wrap {
  border-radius: var(--zm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zm-border);
  margin-top: 32px;
}

.zm-map-wrap iframe {
  display: block;
  width: 100%;
}

/* ─── Legal Pages ─────────────────────── */
.zm-legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  padding: 64px 0 96px;
  align-items: start;
}

.zm-legal-nav {
  position: sticky;
  top: 96px;
  background: #fff;
  border-radius: var(--zm-radius-lg);
  padding: 24px;
  border: 1px solid var(--zm-border);
}

.zm-legal-nav-title {
  font-family: var(--zm-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zm-text-muted);
  margin-bottom: 12px;
}

.zm-legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zm-legal-nav-list a {
  font-family: var(--zm-font-ui);
  font-size: 0.85rem;
  color: var(--zm-text-muted);
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all var(--zm-transition);
}

.zm-legal-nav-list a:hover {
  background: var(--zm-bg-light);
  color: var(--zm-navy);
}

.zm-legal-content {
  font-size: 0.97rem;
  line-height: 1.8;
}

.zm-legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--zm-border);
  scroll-margin-top: 100px;
}

.zm-legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

.zm-legal-content p { margin-bottom: 1.3em; }

.zm-legal-content ul, .zm-legal-content ol {
  margin: 0 0 1.3em 1.5em;
}

.zm-legal-content li { margin-bottom: 0.5em; }

.zm-legal-effective {
  background: var(--zm-gold-pale);
  border-radius: var(--zm-radius);
  padding: 16px 20px;
  font-family: var(--zm-font-ui);
  font-size: 0.85rem;
  color: var(--zm-text-body);
  margin-bottom: 32px;
}

/* ─── Footer ─────────────────────────── */
.zm-footer {
  background: var(--zm-navy);
  padding: 72px 0 40px;
}

.zm-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.zm-footer-brand-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.zm-footer-col-title {
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.zm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zm-footer-links a {
  font-family: var(--zm-font-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--zm-transition);
}

.zm-footer-links a:hover { color: var(--zm-gold-light); }

.zm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.zm-footer-copy {
  font-family: var(--zm-font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.zm-footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.zm-footer-legal-links a {
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--zm-transition);
}

.zm-footer-legal-links a:hover { color: var(--zm-gold-light); }

/* ─── Cookie Banner ─────────────────────── */
.zm-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--zm-navy);
  border-top: 2px solid rgba(200,169,110,0.3);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zm-cookie-banner.zm-cookie-visible {
  transform: translateY(0);
}

.zm-cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.zm-cookie-text {
  flex: 1;
  font-family: var(--zm-font-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  min-width: 260px;
}

.zm-cookie-text a {
  color: var(--zm-gold-light);
}

.zm-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.zm-cookie-btn {
  font-family: var(--zm-font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all var(--zm-transition);
}

.zm-cookie-btn-accept {
  background: var(--zm-gold);
  color: var(--zm-navy);
}

.zm-cookie-btn-accept:hover {
  background: var(--zm-gold-light);
}

.zm-cookie-btn-manage {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25) !important;
}

.zm-cookie-btn-manage:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ─── Utilities ────────────────────────── */
.zm-text-center { text-align: center; }
.zm-text-muted { color: var(--zm-text-muted); }
.zm-mt-4 { margin-top: 16px; }
.zm-mt-8 { margin-top: 32px; }
.zm-mb-4 { margin-bottom: 16px; }
.zm-mb-8 { margin-bottom: 32px; }

.zm-divider {
  width: 60px;
  height: 3px;
  background: var(--zm-gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.zm-divider-center { margin: 16px auto 24px; }

.zm-badge-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--zm-font-ui);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(42,124,138,0.1);
  color: var(--zm-teal);
  font-weight: 600;
}

/* ─── SVG Separator ───────────────────── */
.zm-svg-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.zm-svg-sep svg {
  display: block;
  width: 100%;
}

/* ─── Thank You ─────────────────────────── */
.zm-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--zm-bg-light);
}

.zm-thankyou-card {
  background: #fff;
  border-radius: var(--zm-radius-xl);
  padding: 64px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--zm-shadow-lg);
  border: 1px solid var(--zm-border);
}

.zm-thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(22,163,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #16a34a;
  margin: 0 auto 24px;
}

/* ─── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .zm-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .zm-hero-visual { height: 380px; }
  .zm-hero-badge { display: none; }
  .zm-sim-grid { grid-template-columns: 1fr; }
  .zm-skills-grid { grid-template-columns: 1fr; }
  .zm-team-grid { grid-template-columns: repeat(2, 1fr); }
  .zm-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .zm-article-layout { grid-template-columns: 1fr; }
  .zm-article-sidebar { position: static; }
  .zm-contact-grid { grid-template-columns: 1fr; }
  .zm-legal-layout { grid-template-columns: 1fr; }
  .zm-legal-nav { position: static; }
  .zm-footer-grid { grid-template-columns: 1fr 1fr; }
  .zm-transparency-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .zm-nav-links { display: none; }
  .zm-nav-toggle { display: block; }
  .zm-nav-links.zm-nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--zm-navy);
    padding: 16px;
    gap: 4px;
  }
  .zm-testimonials-grid { grid-template-columns: 1fr; }
  .zm-article-grid { grid-template-columns: 1fr; }
  .zm-team-grid { grid-template-columns: 1fr 1fr; }
  .zm-skills-grid { grid-template-columns: 1fr; }
  .zm-form-row { grid-template-columns: 1fr; }
  .zm-score-sim-wrapper { padding: 40px 28px; }
  .zm-transparency-items { grid-template-columns: 1fr; }
  .zm-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .zm-contact-form-card { padding: 28px; }
  .zm-thankyou-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .zm-hero-stats { flex-direction: column; gap: 16px; }
  .zm-stats-grid { grid-template-columns: 1fr 1fr; }
  .zm-team-grid { grid-template-columns: 1fr; }
  .zm-hero-actions { flex-direction: column; }
  .zm-footer-bottom { flex-direction: column; text-align: center; }
}



.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}