/* =============================================
   IZUUK — Corporate Tech Solutions
   Design System & Global Styles
   ============================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --izuuk-navy: #0A2540;
  --izuuk-navy-deep: #061A30;
  --izuuk-blue: #2563EB;
  --izuuk-blue-hover: #1D4ED8;
  --izuuk-teal: #06B6D4;
  --izuuk-gold: #F59E0B;

  /* Light theme */
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-muted: #F1F5F9;
  --surface: #FFFFFF;
  --surface-raised: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-muted: #475569;
  --text-soft: #64748B;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.1), 0 8px 24px rgba(37, 99, 235, 0.12);

  /* Accent semantic */
  --accent: var(--izuuk-blue);
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-border: rgba(37, 99, 235, 0.2);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

[data-theme="dark"] {
  --bg: #0A1929;
  --bg-soft: #0E223A;
  --bg-muted: #132F4C;
  --surface: #132F4C;
  --surface-raised: #173A5E;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #F1F5F9;
  --text-muted: #B6C2CF;
  --text-soft: #8595A8;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(6, 182, 212, 0.2), 0 8px 32px rgba(6, 182, 212, 0.15);
  --accent: var(--izuuk-teal);
  --accent-soft: rgba(6, 182, 212, 0.1);
  --accent-border: rgba(6, 182, 212, 0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--izuuk-blue-hover); }
[data-theme="dark"] a:hover { color: var(--izuuk-teal); filter: brightness(1.2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--text-muted); }
.lead { font-size: 1.125rem; color: var(--text-muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  padding: 6rem 0;
  position: relative;
}
section.tight { padding: 4rem 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--izuuk-navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--izuuk-blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .btn-primary {
  background: var(--izuuk-teal);
  color: var(--izuuk-navy-deep);
}
[data-theme="dark"] .btn-primary:hover {
  background: #22D3EE;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.625rem 1rem;
}
.btn-ghost:hover { color: var(--accent); background: var(--accent-soft); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--accent);
  font-weight: 600;
}
.btn-arrow svg { transition: transform 0.2s; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(10, 37, 64, 0.18));
}
[data-theme="dark"] .logo-mark {
  filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.25));
}
.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ---------- Partners marquee ---------- */
.partners-section {
  padding: 4.5rem 0;
}
.partners-section .section-header { margin-bottom: 2rem; }
.partners-section .section-header h2 { font-size: 1.625rem; }
.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex;
  gap: 4.5rem;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  align-items: center;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo {
  flex-shrink: 0;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
[data-theme="dark"] .partner-logo {
  opacity: 0.5;
  filter: grayscale(100%) brightness(1.2);
}
[data-theme="dark"] .partner-logo:hover {
  filter: grayscale(0) brightness(1.2);
  opacity: 0.95;
}
.partner-logo svg {
  height: 100%;
  width: auto;
  display: block;
}
.partner-logo .partner-name {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.partners-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-soft);
  margin-top: 2rem;
}
.own-certs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.own-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text);
  font-weight: 600;
}
.own-cert svg { color: var(--accent); }
.own-cert-sub { color: var(--text-soft); font-weight: 400; }

@media (max-width: 600px) {
  .partners-track { gap: 2.75rem; }
  .partner-logo { height: 28px; }
  .partner-logo .partner-name { font-size: 0.875rem; }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-muted); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.lang-switch {
  display: inline-flex;
  background: var(--bg-muted);
  border-radius: var(--radius-full);
  padding: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-switch a {
  padding: 5px 10px;
  border-radius: var(--radius-full);
  color: var(--text-soft);
  transition: all 0.15s;
  text-decoration: none;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .lang-switch a { padding: 4px 7px; font-size: 0.6875rem; }
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-strong); }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--text);
  border: 1px solid var(--border);
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-cta .btn-primary { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { padding: 0.875rem 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}
[data-theme="dark"] .hero-canvas { opacity: 0.5; }
.hero::before {
 /*content: "";*/
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, transparent 0%, var(--bg) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, var(--text) 0%, var(--text-muted) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ---------- Hero Split Layout ---------- */
.hero-split { padding: 9rem 0 5rem; }
.hero-split .hero-content { text-align: left; max-width: none; margin: 0; }
.hero-split h1 {
  background: none;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}
.hero-split .lead { margin-left: 0; margin-right: 0; }
.hero-split .hero-cta { justify-content: flex-start; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-split .hero-content { text-align: center; }
  .hero-split .lead { margin-left: auto; margin-right: auto; }
  .hero-split .hero-cta { justify-content: center; }
}

/* ---------- Dashboard Mockup ---------- */
.dashboard-mockup {
  position: relative;
  border-radius: 14px;
  background: #0F1F37;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 60px -15px rgba(10,37,64,0.35),
    0 18px 40px -10px rgba(37,99,235,0.18);
  overflow: hidden;
  transform: perspective(1500px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s var(--ease-out);
  border: 1px solid rgba(255,255,255,0.08);
}
.dashboard-mockup:hover {
  transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
}
[data-theme="dark"] .dashboard-mockup {
  background: #060F20;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 80px -10px rgba(0,0,0,0.6),
    0 0 0 1px rgba(6,182,212,0.1);
}
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: #1A2D4A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: ui-monospace, 'SF Mono', monospace;
  letter-spacing: 0.02em;
}
.mockup-body {
  padding: 1.25rem;
  color: #E6EEF8;
  font-size: 0.8125rem;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.mockup-header-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
}
.mockup-header-title svg { color: #06B6D4; }
.mockup-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6875rem;
  color: #10B981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mockup-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulse 1.8s infinite;
}
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.mockup-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.75rem;
}
.mockup-kpi-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.mockup-kpi-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.mockup-kpi-value .delta {
  font-size: 0.6875rem;
  margin-left: 4px;
  font-weight: 500;
  color: #10B981;
}
.mockup-section-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.mockup-alerts {
  display: grid;
  gap: 6px;
  margin-bottom: 1rem;
}
.mockup-alert {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border-left: 3px solid;
  font-size: 0.75rem;
}
.mockup-alert.critical { border-color: #EF4444; }
.mockup-alert.warning { border-color: #F59E0B; }
.mockup-alert.info { border-color: #06B6D4; }
.mockup-alert.success { border-color: #10B981; }
.mockup-alert-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
}
.mockup-alert.critical .mockup-alert-icon { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.mockup-alert.warning .mockup-alert-icon { background: rgba(245,158,11,0.15); color: #FCD34D; }
.mockup-alert.info .mockup-alert-icon { background: rgba(6,182,212,0.15); color: #67E8F9; }
.mockup-alert.success .mockup-alert-icon { background: rgba(16,185,129,0.15); color: #6EE7B7; }
.mockup-alert-text { flex: 1; color: rgba(255,255,255,0.8); }
.mockup-alert-time { font-size: 0.6875rem; color: rgba(255,255,255,0.4); font-family: ui-monospace, monospace; }
.mockup-chart-wrap {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 0.875rem;
}
.mockup-chart-header {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem;
  align-items: baseline;
}
.mockup-chart-title { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.mockup-chart-value { font-size: 1.0625rem; font-weight: 700; color: #06B6D4; }
.mockup-chart svg { width: 100%; height: 50px; display: block; }
.mockup-floating {
  position: absolute;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  color: #fff;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 12px 28px -8px rgba(37,99,235,0.5);
  animation: float-mockup 4s ease-in-out infinite;
}
.mockup-floating.top {
  top: -16px; right: 12%;
}
.mockup-floating.bottom {
  bottom: -16px; left: 8%;
  background: linear-gradient(135deg, #10B981, #06B6D4);
  animation-delay: -2s;
}
@keyframes float-mockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .dashboard-mockup { transform: none; }
  .dashboard-mockup:hover { transform: none; }
  .mockup-floating { display: none; }
  .mockup-kpis { grid-template-columns: 1fr 1fr; }
  .mockup-kpis .mockup-kpi:nth-child(3) { grid-column: 1/-1; }
}

/* ---------- Service mockups (Helpdesk, EDR, CISO, Audit) ---------- */
.mockup-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  position: relative;
}
.mockup-section .section-header { margin-bottom: 3rem; }
.mockup-large {
  max-width: 760px;
  margin: 0 auto;
  transform: perspective(2000px) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}
.mockup-large:hover { transform: perspective(2000px) rotateX(0deg); }
@media (max-width: 600px) {
  .mockup-large { transform: none; }
  .mockup-large:hover { transform: none; }
}

/* Tabs (used in Helpdesk + others) */
.mockup-tabs {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.625rem;
  overflow-x: auto;
}
.mockup-tab {
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}
.mockup-tab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mockup-tab.active { background: rgba(6,182,212,0.18); color: #67E8F9; }
.mockup-tab .badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 0 5px;
  border-radius: 8px;
  margin-left: 4px;
  font-size: 0.625rem;
  font-weight: 700;
}
.mockup-tab.active .badge { background: rgba(6,182,212,0.3); color: #fff; }

/* ---------- HELPDESK: ticket rows ---------- */
.mockup-tickets {
  display: grid;
  gap: 4px;
  margin-bottom: 1rem;
}
.ticket-row {
  display: grid;
  grid-template-columns: 50px 50px 1fr auto auto auto;
  gap: 0.625rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s;
}
.ticket-row:hover { background: rgba(255,255,255,0.06); }
.ticket-priority {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-align: center;
}
.ticket-priority.high { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.ticket-priority.med { background: rgba(245,158,11,0.15); color: #FCD34D; }
.ticket-priority.low { background: rgba(6,182,212,0.15); color: #67E8F9; }
.ticket-id { color: rgba(255,255,255,0.4); font-family: ui-monospace, monospace; font-size: 0.6875rem; }
.ticket-subject { color: #fff; font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ticket-user, .ticket-status {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.ticket-sla {
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  white-space: nowrap;
}
.ticket-sla.ok { color: #6EE7B7; }
.ticket-sla.warning { color: #FCD34D; }
.ticket-sla.danger { color: #FCA5A5; animation: pulse-text 1.5s infinite; }
@keyframes pulse-text { 50% { opacity: 0.5; } }
.mockup-agents {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
}
.agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.agent-pill .agent-avatar {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  display: grid; place-items: center;
  font-size: 0.625rem;
  color: #fff;
}
.agent-status {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.agent-status.online { background: #10B981; }
.agent-status.busy { background: #F59E0B; }
.agent-status.away { background: rgba(255,255,255,0.3); }

/* ---------- EDR: endpoint grid + threats ---------- */
.endpoint-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 3px;
  margin-bottom: 1rem;
  padding: 0.625rem;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}
.endpoint {
  aspect-ratio: 1/1;
  border-radius: 2px;
  background: rgba(16,185,129,0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.endpoint:hover { transform: scale(1.5); box-shadow: 0 0 8px rgba(255,255,255,0.4); z-index: 10; cursor: pointer; }
.endpoint.warn { background: rgba(245,158,11,0.7); }
.endpoint.threat {
  background: #EF4444;
  box-shadow: 0 0 6px rgba(239,68,68,0.7);
  animation: blink-threat 1.5s infinite;
}
@keyframes blink-threat {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(239,68,68,0.7); }
  50% { opacity: 0.65; box-shadow: 0 0 12px rgba(239,68,68,0.9); }
}
.endpoint-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}
.endpoint-legend span { display: inline-flex; align-items: center; gap: 4px; }
.endpoint-legend i {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 2px;
}
.threat-list { display: grid; gap: 5px; }
.threat-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border-left: 3px solid;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  align-items: center;
}
.threat-item.contained { border-color: #10B981; }
.threat-item.investigating { border-color: #F59E0B; }
.threat-item.resolved { border-color: #06B6D4; }
.threat-time { font-family: ui-monospace, monospace; font-size: 0.6875rem; color: rgba(255,255,255,0.45); }
.threat-action { font-size: 0.6875rem; font-weight: 600; }
.threat-action.contained-text { color: #6EE7B7; }
.threat-action.investigating-text { color: #FCD34D; }
.threat-action.resolved-text { color: #67E8F9; }

/* ---------- CISO: gauge + compliance bars + risks ---------- */
.mockup-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .mockup-grid-2col { grid-template-columns: 1fr; }
}
.gauge-card, .compliance-card, .control-stats, .findings-list {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 0.875rem 1rem;
}
.gauge-card { text-align: center; padding: 0.875rem 0.875rem 0.5rem; }
.gauge-svg { width: 100%; max-width: 160px; height: 80px; margin: 0 auto; display: block; }
.gauge-value {
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-top: -2.25rem;
  position: relative;
}
.gauge-value span { font-size: 0.875rem; color: rgba(255,255,255,0.45); font-weight: 600; }
.gauge-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.gauge-trend {
  font-size: 0.6875rem;
  color: #10B981;
  margin-top: 0.25rem;
  font-weight: 600;
}
.comp-bar {
  display: grid;
  grid-template-columns: 75px 1fr 38px;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}
.comp-bar:last-child { margin-bottom: 0; }
.comp-bar-name { font-weight: 600; font-size: 0.6875rem; }
.comp-bar-track {
  background: rgba(255,255,255,0.06);
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
}
.comp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #06B6D4, #10B981);
  border-radius: 3px;
  transition: width 0.6s var(--ease-out);
}
.comp-bar-fill.warning { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
.comp-bar-pct { font-size: 0.6875rem; font-family: ui-monospace, monospace; color: rgba(255,255,255,0.7); text-align: right; }
.risks-list { display: grid; gap: 4px; }
.risk-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  align-items: center;
}
.risk-severity {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.risk-severity.critical { background: rgba(239,68,68,0.18); color: #FCA5A5; }
.risk-severity.high { background: rgba(245,158,11,0.18); color: #FCD34D; }
.risk-severity.med { background: rgba(6,182,212,0.18); color: #67E8F9; }
.risk-owner { font-size: 0.6875rem; color: rgba(255,255,255,0.45); font-family: ui-monospace, monospace; }

/* ---------- AUDITORÍAS: phase tracker + controls + findings ---------- */
.phase-tracker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 1rem;
}
.phase {
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 0.625rem 0.5rem;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  border-bottom: 3px solid rgba(255,255,255,0.05);
}
.phase.complete {
  background: rgba(16,185,129,0.1);
  border-bottom-color: #10B981;
  color: #6EE7B7;
}
.phase.current {
  background: rgba(6,182,212,0.12);
  border-bottom-color: #06B6D4;
  color: #67E8F9;
}
.phase.current::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #06B6D4, transparent);
  animation: phase-sweep 2s infinite;
}
@keyframes phase-sweep { 50% { opacity: 0.4; } }
.phase-icon { display: block; font-size: 0.875rem; margin-bottom: 2px; line-height: 1; }
.phase-name { font-weight: 600; font-size: 0.625rem; }
.phase-meta { font-size: 0.5625rem; color: rgba(255,255,255,0.35); margin-top: 2px; font-family: ui-monospace, monospace; }
.control-stats { padding: 1rem; }
.control-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
}
.control-stat-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.control-stat-num {
  font-size: 1.125rem;
  font-weight: 800;
  color: #06B6D4;
  font-family: ui-monospace, monospace;
}
.control-stat-num small { font-size: 0.6875rem; color: rgba(255,255,255,0.35); font-weight: 500; }
.control-stat-num.success { color: #6EE7B7; }
.control-stat-num.warn { color: #FCD34D; }
.control-stat-num.muted { color: rgba(255,255,255,0.4); }
.findings-list { padding: 0.625rem 0.875rem; }
.finding {
  font-size: 0.7rem;
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.finding:last-child { border-bottom: none; }
.finding-icon {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 9px;
  font-weight: 700;
}
.finding.major .finding-icon { background: rgba(239,68,68,0.2); color: #FCA5A5; }
.finding.minor .finding-icon { background: rgba(245,158,11,0.2); color: #FCD34D; }
.finding.observation .finding-icon { background: rgba(6,182,212,0.2); color: #67E8F9; }
.finding.resolved .finding-icon { background: rgba(16,185,129,0.2); color: #6EE7B7; }
.finding-text { flex: 1; }
.finding-meta { font-size: 0.625rem; color: rgba(255,255,255,0.4); font-family: ui-monospace, monospace; }

/* ---------- Service Showcase (tabs with mockups on home) ---------- */
.service-showcase {
  padding: 6rem 0;
  position: relative;
}
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 auto 3rem;
  background: var(--bg-muted);
  padding: 0.375rem;
  border-radius: var(--radius-full);
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.showcase-tab {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease-out);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  white-space: nowrap;
}
.showcase-tab:hover { color: var(--text); }
.showcase-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.showcase-tab svg { width: 16px; height: 16px; color: var(--text-soft); }
.showcase-tab.active svg { color: var(--accent); }

.showcase-panel { display: none; }
.showcase-panel.active {
  display: block;
  animation: showcase-fade 0.5s var(--ease-out);
}
@keyframes showcase-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 960px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.showcase-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.875rem;
}
.showcase-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.625rem;
}
.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.showcase-features svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
}
.showcase-mockup-wrap {
  position: relative;
}
.showcase-mockup-wrap .dashboard-mockup {
  transform: perspective(1800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}
.showcase-mockup-wrap .dashboard-mockup:hover {
  transform: perspective(1800px) rotateY(-1deg) rotateX(0deg);
}
@media (max-width: 600px) {
  .showcase-mockup-wrap .dashboard-mockup { transform: none; }
  .showcase-mockup-wrap .dashboard-mockup:hover { transform: none; }
}

/* ---------- Real photo image cards ---------- */
.photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  background: var(--izuuk-navy);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,37,64,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #fff;
}
.photo-card-overlay h4 { color: #fff; font-size: 1.125rem; margin-bottom: 0.25rem; }
.photo-card-overlay p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin: 0; }
.photo-stats {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.photo-stat {
  background: rgba(255,255,255,0.95);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 0.375rem;
}
.photo-stat .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s infinite;
}

/* Service hero with real image */
.service-hero-visual.with-image {
  background: var(--izuuk-navy);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: block;
}
.service-hero-visual.with-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.service-hero-visual.with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.55) 0%, rgba(37,99,235,0.3) 50%, rgba(6,182,212,0.2) 100%);
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(135deg, rgba(10,37,64,0.55) 0%, rgba(37,99,235,0.3) 50%, rgba(6,182,212,0.2) 100%);
  background-size: auto;
}
.service-hero-visual.with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 3;
  pointer-events: none;
}

/* ---------- Trust bar / KPIs ---------- */
.trust-bar {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 720px) {
  .kpis { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.kpi-value {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.kpi-label {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* ---------- Service Cards (3D hover) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
  display: block;
  color: var(--text);
}
.service-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-xl);
  color: var(--text);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover .service-icon { transform: scale(1.05) rotate(-3deg); }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { margin-bottom: 1.5rem; font-size: 0.9375rem; }
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.5rem;
}
.service-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Maturity Test ---------- */
.maturity-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.maturity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .maturity-card { padding: 1.75rem; }
}
.maturity-progress {
  height: 6px;
  background: var(--bg-muted);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 2rem;
}
.maturity-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--izuuk-blue), var(--izuuk-teal));
  width: 0%;
  transition: width 0.4s var(--ease-out);
  border-radius: var(--radius-full);
}
.maturity-step { display: none; }
.maturity-step.active { display: block; animation: fadeSlide 0.4s var(--ease-out); }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.maturity-question {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: var(--text);
}
.maturity-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.maturity-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  width: 100%;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
}
.maturity-option:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.maturity-option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.maturity-option-marker {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.maturity-option.selected .maturity-option-marker {
  border-color: var(--accent);
  background: var(--accent);
}
.maturity-option.selected .maturity-option-marker::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
}
.maturity-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.maturity-step-counter {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}
.maturity-result {
  text-align: center;
}
.maturity-score {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--izuuk-blue), var(--izuuk-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.maturity-level {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.maturity-recommendations {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
  text-align: left;
}
.maturity-rec {
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.maturity-rec strong { color: var(--text); }

/* ---------- Calculator ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 800px) {
  .calc-grid { grid-template-columns: 1fr; }
}
.calc-form { padding: 2.5rem; }
.calc-result {
  background: var(--izuuk-navy);
  color: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.25), transparent 50%);
}
.calc-result > * { position: relative; }
.calc-field { margin-bottom: 1.5rem; }
.calc-field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.calc-field label span { color: var(--accent); }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.calc-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.calc-service {
  padding: 0.875rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
}
.calc-service:hover { border-color: var(--accent); }
.calc-service input { accent-color: var(--accent); cursor: pointer; }
.calc-service.checked { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.calc-result-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.calc-price {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0.5rem 0;
}
.calc-price-period { font-size: 1rem; opacity: 0.7; font-weight: 500; }
.calc-breakdown {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}
.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}
.calc-result .btn {
  margin-top: 1.5rem;
  background: #fff;
  color: var(--izuuk-navy);
  width: 100%;
  justify-content: center;
}
.calc-result .btn:hover { background: var(--izuuk-teal); color: var(--izuuk-navy); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-step {
  position: relative;
  padding: 1.5rem 0 2.5rem 2rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.timeline-step.in-view {
  opacity: 1;
  transform: none;
}
.timeline-step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 1.875rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-strong);
  transition: all 0.3s var(--ease-out);
}
.timeline-step.in-view::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.timeline-step h4 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  font-size: 1.1875rem;
}
.timeline-step h4 .step-num {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.timeline-step p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ---------- Comparator ---------- */
.compare-toggle {
  display: inline-flex;
  background: var(--bg-muted);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  margin: 0 auto 2.5rem;
  display: flex;
  width: fit-content;
}
.compare-toggle button {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.compare-toggle button.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.compare-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.compare-plan.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.compare-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.compare-plan-name {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.compare-plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.compare-plan-price small { font-size: 0.875rem; font-weight: 500; color: var(--text-soft); }
.compare-plan-desc { font-size: 0.875rem; margin-bottom: 1.5rem; }
.compare-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.625rem;
}
.compare-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.compare-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.compare-features li.disabled { opacity: 0.4; }
.compare-features li.disabled svg { color: var(--text-soft); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  padding: 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.about-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.about-stat-label { font-size: 0.8125rem; color: var(--text-muted); }
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--izuuk-navy), var(--izuuk-blue));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.4), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.2), transparent 50%);
}
.about-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  z-index: 2;
}
.about-visual-icon {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-quote::before {
  content: """;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--izuuk-blue), var(--izuuk-teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
}
.testimonial-author-name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-author-role { font-size: 0.8125rem; color: var(--text-soft); }

/* ---------- Certifications ---------- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
.cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  text-align: center;
}
.cert:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cert-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}
.cert-sub { font-size: 0.6875rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  color: var(--text);
  font-size: 1.0625rem;
  font-weight: 600;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question .faq-icon {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-bottom: 1.5rem; margin: 0; font-size: 0.9375rem; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-info-card {
  background: var(--izuuk-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.3), transparent 60%);
}
.contact-info-card > * { position: relative; }
.contact-info-card h3 { color: #fff; margin-bottom: 1rem; }
.contact-info-card p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; }
.contact-info-list {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
.contact-info-item svg { color: var(--izuuk-teal); flex-shrink: 0; }
.contact-info-item a { color: #fff; }
.contact-info-item a:hover { color: var(--izuuk-teal); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.form-progress-step {
  flex: 1;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  transition: background 0.3s;
}
.form-progress-step.active { background: var(--accent); }
.form-progress-step.completed { background: var(--accent); opacity: 0.6; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeSlide 0.4s var(--ease-out); }
.form-step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.form-step .form-step-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 1.75rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  transition: all 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) {
  .field-row { grid-template-columns: 1fr; }
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 500px) {
  .checkbox-grid { grid-template-columns: 1fr; }
}
.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.15s;
}
.checkbox-card:hover { border-color: var(--accent); }
.checkbox-card input { accent-color: var(--accent); }
.checkbox-card.checked { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form-actions .btn { flex: 1; justify-content: center; }
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
}
.form-success h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-error-msg {
  font-size: 0.8125rem;
  color: #DC2626;
  margin-top: 0.375rem;
  display: none;
}
.field.error input, .field.error textarea, .field.error select { border-color: #DC2626; }
.field.error .form-error-msg { display: block; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.consent input { margin-top: 3px; accent-color: var(--accent); }

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--izuuk-navy) 0%, var(--izuuk-blue) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(6, 182, 212, 0.3), transparent 60%);
}
.cta-strip > * { position: relative; }
.cta-strip h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  max-width: 540px;
}
.cta-strip p { color: rgba(255, 255, 255, 0.8); margin: 0; }
.cta-strip .btn-primary {
  background: #fff;
  color: var(--izuuk-navy);
}
.cta-strip .btn-primary:hover { background: var(--izuuk-teal); color: var(--izuuk-navy); }
@media (max-width: 720px) {
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 2rem; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { max-width: 320px; }
.footer-brand p { font-size: 0.875rem; margin-top: 1rem; }
.footer-col h5 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-soft);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ---------- Service Page Specific ---------- */
.service-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  overflow: hidden;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .service-hero-grid { grid-template-columns: 1fr; }
}
.service-hero-content .eyebrow svg { vertical-align: -3px; margin-right: 0.375rem; }
.service-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.service-hero .lead { margin-bottom: 2rem; max-width: 540px; }
.service-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.service-hero-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--izuuk-navy), var(--izuuk-blue));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  place-items: center;
  color: #fff;
}
.service-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.5), transparent 50%),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}
.service-hero-visual svg { position: relative; z-index: 2; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.benefit {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}
.benefit:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.benefit h4 { margin-bottom: 0.5rem; }
.benefit p { font-size: 0.9375rem; margin: 0; }

.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .includes-list { grid-template-columns: 1fr; }
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.includes-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.includes-item h5 { margin-bottom: 0.25rem; font-size: 1rem; }
.includes-item p { margin: 0; font-size: 0.875rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Legal Pages ---------- */
.legal-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.legal-hero p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  margin: 0;
}
.legal-content {
  padding: 4rem 0 6rem;
}
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.legal-prose h2 {
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
  font-weight: 600;
}
.legal-prose p { color: var(--text-muted); margin-bottom: 1rem; }
.legal-prose ul, .legal-prose ol {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-prose li { margin-bottom: 0.375rem; }
.legal-prose strong { color: var(--text); font-weight: 600; }
.legal-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose .data-box {
  padding: 1.25rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  margin: 1.25rem 0;
  font-size: 0.875rem;
}
.legal-prose .data-box dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.25rem;
  margin: 0;
}
.legal-prose .data-box dt { color: var(--text-soft); font-weight: 500; }
.legal-prose .data-box dd { color: var(--text); margin: 0; font-weight: 500; }
.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.875rem;
}
.legal-prose th, .legal-prose td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.legal-prose th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text);
}
.legal-prose td { color: var(--text-muted); }
.legal-toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.legal-toc h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.legal-toc ol {
  padding-left: 1.25rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.legal-toc li { margin-bottom: 0.25rem; }
.legal-toc a { color: var(--text); text-decoration: none; }
.legal-toc a:hover { color: var(--accent); }
.legal-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-soft);
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  transform: translateY(140%);
  transition: transform 0.4s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h5 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  color: var(--text);
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.875rem;
  line-height: 1.5;
}
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner .btn {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
