/* ============================================================
   MUUT.NL — Shared Stylesheet v1.0
   Valk-IMP Consultancy | info@muut.nl
   Design: Navy/Orange, DM Serif Display + Source Sans 3
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #00126B;
  --navy-deep: #000d4a;
  --navy-light: #1a2d7c;
  --orange: #e8590c;
  --orange-warm: #f4723b;
  --orange-glow: rgba(232, 89, 12, 0.08);
  --cream: #faf8f5;
  --stone: #f0ece6;
  --stone-dark: #e2ddd4;
  --white: #ffffff;
  --text: #2d3748;
  --text-light: #5a6577;
  --text-muted: #8b95a5;
  --shadow-sm: 0 1px 3px rgba(0, 18, 107, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 18, 107, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 18, 107, 0.10);
  --shadow-xl: 0 16px 48px rgba(0, 18, 107, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* === UTILITY === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.section-label--center {
  justify-content: center;
}

h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
}

.lead--center {
  margin: 0 auto;
  text-align: center;
}

.reg {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 18, 107, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(0, 18, 107, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  color: var(--white);
}

.nav-wordmark {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--orange-warm) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(232, 89, 12, 0.3);
}

.btn-primary:hover {
  background: var(--orange-warm);
  box-shadow: 0 4px 20px rgba(232, 89, 12, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

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

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* === HERO (Home) === */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 40%, #0a1854 70%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 89, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange-warm);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

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

/* Hero floating cards */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  height: 400px;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

.hero-float-card:nth-child(1) {
  top: 0;
  right: 0;
  width: 280px;
}

.hero-float-card:nth-child(2) {
  top: 120px;
  left: 10px;
  width: 260px;
  animation-delay: 2s;
}

.hero-float-card:nth-child(3) {
  bottom: 20px;
  right: 20px;
  width: 250px;
  animation-delay: 4s;
}

.hfc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hfc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hfc-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
}

.hfc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  margin-top: 0.35rem;
}

.hfc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

/* === SECTIONS === */
section {
  padding: 6rem 0;
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream);
}

.bg-stone {
  background: var(--stone);
}

.bg-navy {
  background: var(--navy-deep);
  color: var(--white);
}

/* Soft navy: subtiel donkerder dan cream, niet volledig navy */
.bg-navy-soft {
  background: linear-gradient(165deg, #1a2d5a 0%, #0f1f42 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone-dark), transparent);
}

/* === PROBLEM CARDS === */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 18, 107, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-warm));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--orange-glow);
}

.problem-card h3 {
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* === PORTAL CARDS === */
.portals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portal-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  color: var(--white);
}

.portal-card:hover {
  transform: translateY(-6px);
}

.portal-card--huurder {
  background: linear-gradient(145deg, #1a2d7c, #2a4a9f);
}

.portal-card--medewerker {
  background: linear-gradient(145deg, #0a1854, #1a2d7c);
}

.portal-card--leverancier {
  background: linear-gradient(145deg, var(--orange), #c74b0a);
}

.portal-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.portal-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.portal-card h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.portal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.portal-features li {
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  opacity: 0.9;
}

.portal-features li::before {
  content: '\2192';
  flex-shrink: 0;
  opacity: 0.5;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* === DIFFERENTIATOR GRID === */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Variant A: donkere achtergrond (navy sectie) */
.bg-navy .diff-item,
.bg-navy-soft .diff-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.bg-navy .diff-item:hover,
.bg-navy-soft .diff-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 89, 12, 0.2);
}

.bg-navy .diff-before,
.bg-navy-soft .diff-before {
  color: rgba(255, 255, 255, 0.35);
}

.bg-navy .diff-after,
.bg-navy-soft .diff-after {
  color: var(--orange-warm);
}

.bg-navy .diff-desc,
.bg-navy-soft .diff-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* Variant B: lichte achtergrond (cream/white sectie) */
.diff-item {
  background: var(--white);
  border: 1px solid rgba(0, 18, 107, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.diff-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 89, 12, 0.15);
}

.diff-before {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.diff-after {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.diff-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === MODULE STACK === */
/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 18, 107, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === AUTOMATION FLOW === */
.auto-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auto-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  position: relative;
}

.auto-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(232, 89, 12, 0.15));
}

.auto-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.auto-step h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.auto-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === STATUS FLOW VISUAL === */
.auto-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 18, 107, 0.04);
}

.auto-visual h3 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.status-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--stone);
}

.status-item:last-child {
  border-bottom: none;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.status-auto {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* === KPI CARDS === */
.kpi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.kpi-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
}

/* === REPORT FEATURES === */
.report-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.report-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.report-feature:hover {
  transform: translateX(4px);
}

.report-feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.report-feature h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.report-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === IMPLEMENTATION TIMELINE === */
.impl-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.impl-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--navy-light));
  z-index: 0;
}

.impl-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.impl-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--orange);
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}

.impl-step h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.impl-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === MODULE STACK === */
.module-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 18, 107, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.module-item--active {
  border-left: 3px solid var(--orange);
}

.module-item--future {
  opacity: 0.6;
  border-left: 3px solid var(--stone-dark);
}

.module-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.module-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.module-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.module-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.module-badge--live {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.module-badge--soon {
  background: var(--stone);
  color: var(--text-muted);
}

/* === CTA SECTION === */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 89, 12, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

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

.cta-section .lead {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-contact-line {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-contact-line a {
  color: var(--orange-warm);
  text-decoration: none;
  font-weight: 600;
}

.cta-contact-line a:hover {
  color: var(--white);
}

/* === FOOTER === */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.45);
}

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

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* === RESPONSIVE GRIDS (inline grid replacement) === */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.grid-2-col--center {
  align-items: center;
}

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

/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-float-card {
    animation: none;
  }

  .hero-badge-dot {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .portals {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .impl-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .impl-timeline::before {
    display: none;
  }

  .auto-visual {
    margin-top: 2rem;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

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

  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .impl-timeline {
    grid-template-columns: 1fr;
  }

  .kpi-card + .kpi-card {
    margin-top: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
