:root {
  --blue-primary: #0F1B4C; /*#1a56db;*/
  --blue-light: #3b82f6;
  --blue-soft: #dbeafe;
  --blue-bg: #eff6ff;
  --navy: #0f1729;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --yellow: #ca8a04;
  --yellow-soft: #fef9c3;
  --red: #dc2626;
  --red-soft: #fee2e2;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
  --radius: 25px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--gray-700); line-height: 1.65; overflow-x: hidden; }

/* === CHAT === */
iframe {
    border: none !important;
    outline: none !important;
}

* {box-sizing: border-box;}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: var(--blue-soft);
  color: var(--blue-primary);
  padding: 16px 20px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 180px;
  font-weight: 600;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  /*border: 0px solid #f1f1f1;*/
  border: none;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

/* ====================== NAV ====================== */
.nav {
  position: fixed; top: 26px; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text { font-weight: 700; font-size: 17px; color: var(--gray-900); letter-spacing: 1.5px; }
.nav-logo-text span { color: var(--blue-primary); font-weight: 500; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  color: var(--gray-500); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 16px; border-radius: 100px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-links a.active { color: var(--blue-primary); background: var(--blue-soft); }
.nav-cta {
  background: var(--blue-primary) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 100px !important;
  font-weight: 600 !important; transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; box-shadow: var(--shadow-md) !important; }

/* ====================== COMMON ====================== */
.section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-soft); color: var(--blue-primary);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.section-title {
  font-size: 44px; font-weight: 700; color: var(--gray-900);
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px;
}
.section-subtitle { font-size: 18px; color: var(--gray-500); max-width: 620px; line-height: 1.7; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-primary); color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
  font-family: var(--font);
}
.btn-primary:hover { background: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--gray-700);
  padding: 14px 28px; border-radius: 100px;
  font-weight: 500; font-size: 15px; text-decoration: none;
  border: 1.5px solid var(--gray-200); transition: all 0.2s;
  cursor: pointer; font-family: var(--font);
}
.btn-secondary:hover { border-color: var(--blue-primary); color: var(--blue-primary); background: var(--blue-bg); }

/* ====================== HERO ====================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; background: var(--white);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-soft); border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 10px 20px; border-radius: 100px; margin-bottom: 24px;
  font-size: 14px; color: var(--green); font-weight: 600;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero h1 {
  font-size: 50px; font-weight: 700; color: var(--gray-900);
  line-height: 1.12; margin-bottom: 20px; letter-spacing: -1px;
}
.hero h1 em {
  font-style: normal; color: var(--blue-primary);
}
.hero-desc { font-size: 17px; color: var(--gray-500); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Dashboard Card */
.dash-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-xl); position: relative;
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.dash-title { font-weight: 600; font-size: 15px; color: var(--gray-900); }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  background: var(--green-soft); color: var(--green);
  padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600;
}
.dash-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.sem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.sem-item {
  background: var(--gray-50); border-radius: var(--radius-xs); padding: 14px 10px;
  text-align: center; border: 1px solid var(--gray-100);
}
.sem-dot { width: 10px; height: 10px; border-radius: 50%; margin: 0 auto 6px; }
.sem-dot.g { background: var(--green); }
.sem-dot.y { background: var(--yellow); }
.sem-dot.r { background: var(--red); }
.sem-label { font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.sem-val { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-top: 2px; }

.bar-group { display: flex; flex-direction: column; gap: 10px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-label { font-size: 12px; color: var(--gray-500); width: 80px; font-weight: 500; }
.bar-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; }
.bar-fill.g { background: var(--green); }
.bar-fill.y { background: var(--yellow); }
.bar-fill.r { background: var(--red); }
.bar-val { font-size: 13px; color: var(--gray-900); font-weight: 600; width: 38px; text-align: right; }

/* ====================== STATS ====================== */
.stats-section { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px 20px; transition: all 0.3s; position: relative; overflow: hidden;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon { margin-bottom: 14px; height: 48px; display: flex; align-items: center; justify-content: center; }
.stat-num { font-size: 40px; font-weight: 700; color: var(--blue-primary); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; font-weight: 500; }

/* Mini chart animations */
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 40px; justify-content: center; }
.mini-bar { width: 6px; border-radius: 3px; animation: barGrow 1.5s ease-out forwards; }
@keyframes barGrow { from { height: 4px; } }

.mini-dots { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; width: 64px; }
.mini-dot { width: 10px; height: 10px; border-radius: 50%; animation: dotPop 0.4s ease-out forwards; opacity: 0; }
@keyframes dotPop { to { opacity: 1; transform: scale(1); } from { opacity: 0; transform: scale(0); } }

.mini-pulse-ring { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--blue-soft); position: relative; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.mini-pulse-ring::after { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--blue-primary); animation: ringPulse 2s infinite; }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(0.8); opacity:0.6; } }

.mini-grid-5d { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; width: 56px; margin: 0 auto; }
.mini-cell { width: 8px; height: 8px; border-radius: 2px; animation: cellFade 0.3s ease-out forwards; opacity: 0; }
@keyframes cellFade { to { opacity: 1; } from { opacity: 0; } }

/* ====================== CARDS ====================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-light); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.card-icon.blue { background: var(--blue-soft); }
.card-icon.green { background: var(--green-soft); }
.card-icon.yellow { background: var(--yellow-soft); }
.card-title { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ====================== SERVICES ====================== */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 64px; padding: 40px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 20px; transition: all 0.3s;
}
.svc-block:hover { box-shadow: var(--shadow-lg); }
.svc-block.rev { direction: rtl; }
.svc-block.rev > * { direction: ltr; }

.svc-num {
  font-size: 56px; font-weight: 700; letter-spacing: -2px;
  color: var(--gray-200); line-height: 1; margin-bottom: 12px;
}
.svc-tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.svc-tag.core { background: var(--blue-soft); color: var(--blue-primary); }
.svc-tag.transform { background: var(--green-soft); color: var(--green); }
.svc-tag.audit { background: var(--yellow-soft); color: var(--yellow); }

.svc-title { font-size: 26px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; line-height: 1.25; }
.svc-desc { font-size: 15px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-list li { font-size: 14px; color: var(--gray-700); padding-left: 24px; position: relative; }
.svc-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--blue-primary); font-weight: 700;
}

/* Service Icon */
.svc-icon { width: 56px; height: 56px; margin-bottom: 16px; }

/* Videos are now embedded directly */

.svc-visual {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 28px;
}
.svc-vis-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); font-weight: 600; margin-bottom: 16px; }
.svc-vis-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  background: var(--white); border-radius: var(--radius-xs); margin-bottom: 8px;
  border: 1px solid var(--gray-100);
}
.svc-vis-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.svc-vis-text { font-size: 13px; color: var(--gray-700); flex: 1; }
.svc-vis-val { font-size: 13px; font-weight: 700; color: var(--gray-900); }

/* ====================== PLATFORM ====================== */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.mod-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 24px;
  transition: all 0.3s; cursor: default; position: relative;
}
.mod-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-light); transform: translateY(-3px); }
.mod-num { font-size: 11px; color: var(--blue-primary); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.mod-name { font-size: 16px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.mod-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Module Preview on Hover */
.mod-preview {
  display: none; position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 340px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
  padding: 20px; z-index: 100;
}
.mod-preview::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: var(--white); border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.mod-card:hover .mod-preview { display: block; animation: previewIn 0.25s ease-out; }
@keyframes previewIn { from { opacity: 0; transform: translateX(-50%) translateY(6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

.mod-preview-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-500); font-weight: 600; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--gray-100);
}

/* Preview mock UI elements */
.prev-form-row { display: flex; gap: 6px; margin-bottom: 6px; }
.prev-input { flex: 1; height: 10px; background: var(--gray-100); border-radius: 3px; }
.prev-input.filled { background: var(--blue-soft); }
.prev-input.half { flex: 0.5; }

.prev-bar-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.prev-bar-label { width: 40px; height: 6px; background: var(--gray-100); border-radius: 3px; }
.prev-bar-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.prev-bar-fill { height: 100%; border-radius: 4px; }

.prev-sem-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 6px; }
.prev-sem { width: 14px; height: 14px; border-radius: 50%; }

.prev-alert-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; padding: 5px 8px; background: var(--gray-50); border-radius: 4px; border-left: 3px solid var(--red); }
.prev-alert-row.warn { border-left-color: var(--yellow); }
.prev-alert-row.info { border-left-color: var(--blue-primary); }
.prev-alert-text { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; }

.prev-checklist { display: flex; flex-direction: column; gap: 5px; }
.prev-check-row { display: flex; align-items: center; gap: 6px; }
.prev-checkbox { width: 12px; height: 12px; border-radius: 3px; border: 1.5px solid var(--gray-300); flex-shrink: 0; }
.prev-checkbox.done { background: var(--green); border-color: var(--green); }
.prev-checkbox.prog { background: var(--yellow); border-color: var(--yellow); }
.prev-check-line { flex: 1; height: 6px; background: var(--gray-100); border-radius: 3px; }
.prev-check-pct { font-size: 9px; font-weight: 700; color: var(--gray-500); }

.prev-report-block { background: var(--gray-50); border-radius: 6px; padding: 8px; margin-bottom: 6px; }
.prev-report-header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.prev-report-dot { width: 6px; height: 6px; border-radius: 50%; }
.prev-report-title { font-size: 9px; font-weight: 600; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.5px; }
.prev-report-lines { display: flex; flex-direction: column; gap: 3px; }
.prev-report-line { height: 4px; background: var(--gray-200); border-radius: 2px; }

.dim-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.dim-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 22px 16px; text-align: center;
  transition: all 0.3s;
}
.dim-card:hover { box-shadow: var(--shadow-md); }
.dim-icon { font-size: 28px; margin-bottom: 10px; }
.dim-name { font-size: 13px; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
.dim-count { font-size: 28px; font-weight: 700; color: var(--blue-primary); }
.dim-label { font-size: 10px; color: var(--gray-500); text-transform: uppercase; font-weight: 500; }

.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.roi-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all 0.3s;
}
.roi-card:hover { box-shadow: var(--shadow-md); }
.roi-num { font-size: 36px; font-weight: 700; margin-bottom: 6px; }
.roi-num.green { color: var(--green); }
.roi-num.blue { color: var(--blue-primary); }
.roi-num.gold { color: var(--yellow); }
.roi-title { font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.roi-desc { font-size: 13px; color: var(--gray-500); }

/* ====================== ABOUT ====================== */
.tl { position: relative; margin-top: 48px; padding-left: 36px; }
.tl::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--blue-soft); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -31px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue-primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-soft);
}
.tl-title { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.tl-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

.vals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.val-card {
  text-align: center; padding: 24px 14px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); transition: all 0.3s;
}
.val-card:hover { box-shadow: var(--shadow-md); }
.val-icon { font-size: 28px; margin-bottom: 10px; }
.val-name { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.val-desc { font-size: 12px; color: var(--gray-500); }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.mv-card {
  background: var(--blue-bg); border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius); padding: 32px;
}
.mv-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue-primary); margin-bottom: 12px; }

/* ====================== CONTACT ====================== */
.contact-bg { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; margin-top: 48px; }
.fg { margin-bottom: 18px; }
.fl { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.fi, .fta {
  width: 100%; padding: 12px 16px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs); font-family: var(--font);
  font-size: 15px; color: var(--gray-900); transition: border-color 0.2s;
}
.fi:focus, .fta:focus { outline: none; border-color: var(--blue-primary); box-shadow: 0 0 0 3px var(--blue-soft); }
.fta { min-height: 110px; resize: vertical; }
.fs {
  width: 100%; padding: 12px 16px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-xs);
  font-family: var(--font); font-size: 15px; color: var(--gray-500);
}

.ci-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 24px; margin-bottom: 14px;
}
.ci-title { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.ci-val { font-size: 14px; color: var(--gray-500); }
.ci-card.highlight { background: var(--blue-bg); border-color: rgba(59,130,246,0.2); }
.ci-card.highlight .ci-title { color: var(--blue-primary); }

/* ====================== FOOTER ====================== */
.footer { background: var(--gray-900); color: var(--gray-300); padding: 60px 40px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 14px; color: var(--gray-500); margin-top: 10px; max-width: 260px; }
.footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); font-weight: 600; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-500); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; }
.footer-copy { font-size: 13px; color: var(--gray-500); }

/* ====================== MOCKUP BANNER ====================== */
.mockup-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--blue-primary); color: var(--white); text-align: center;
  padding: 6px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .hero-grid, .svc-block, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid, .mod-grid, .roi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dim-grid, .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 32px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-block.rev { direction: ltr; }
  .mv-grid { grid-template-columns: 1fr; }
}