/* ════════════════════════════════════════════════════════
   MSM Aventra — Shared Inner Page Styles v5
   White corporate nav, Inter headings, professional SaaS design
════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Variables ─── */
:root {
  --red: #e51c23;
  --red-dark: #c41018;
  --red-light: #ff3640;
  --black: #111111;
  --dark: #1a1a2e;
  --grey-900: #1f2937;
  --grey-700: #374151;
  --grey-500: #6b7280;
  --grey-300: #d1d5db;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 32px rgba(229,28,35,0.18);
  --container: 1180px;
}

/* ─── Container ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--grey { background: var(--grey-50); }

/* ─── NAV — White Corporate ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--grey-300);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: auto!important;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img {
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--red); background: rgba(229,28,35,0.05); }
.nav-links a.active-nav { color: var(--red); font-weight: 600; }
.nav-highlight { color: var(--red) !important; font-weight: 600 !important; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nav-demo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-nav-demo:hover { background: var(--red-dark); box-shadow: var(--shadow-red); }
/* Theme toggle — hidden on inner pages (light always) */
.theme-toggle { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--grey-700); border-radius: 1px; transition: all 0.25s; }
@media(max-width:900px) {
  .nav-links { display: none; position: fixed; inset: 72px 0 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 24px; gap: 4px; z-index: 999; border-top: 1px solid var(--grey-300); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 14px 16px; width: 100%; }
  .hamburger { display: flex; }
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }
.btn-primary--xl { padding: 15px 32px; font-size: 16px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--grey-700);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--grey-300);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-1px); }

/* ─── Page Hero ─── */
.page-hero {
  padding: 110px 0 64px;
  background: linear-gradient(135deg, #fff 0%, var(--grey-50) 100%);
  border-bottom: 1px solid var(--grey-300);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(229,28,35,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 720px; position: relative; z-index: 2; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--red); }
.page-breadcrumb i { font-size: 10px; }
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.page-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--red); border-radius: 1px; }
.page-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-title span { color: var(--red); }
.page-subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--grey-500);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 28px;
}
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Page Sections ─── */
.page-section { padding: 72px 0; }
.page-section-header { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-tag::before { content: ''; display: block; width: 18px; height: 2px; background: var(--red); border-radius: 1px; }
.section-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-title span, .gradient-text { color: var(--red); }
.section-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--grey-500);
  line-height: 1.75;
}

/* ─── Stats Row ─── */
.page-stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}
@media(max-width:768px){ .page-stats-row { grid-template-columns:repeat(2,1fr); } }
.page-stat-card {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.page-stat-card:last-child { border-right: none; }
.page-stat-num {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.page-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ─── Feature Cards ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 36px;
}
@media(max-width:900px){ .feature-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .feature-grid { grid-template-columns:1fr; } }
.feature-card {
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--red); box-shadow: var(--shadow-red); transform: translateY(-3px); }
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(229,28,35,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--grey-500); line-height: 1.7; }

/* ─── Two-column prose ─── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media(max-width:900px){ .two-col-grid { grid-template-columns:1fr; gap:32px; } }
.prose h2 { font-family: 'Inter', sans-serif; font-size: clamp(22px,3vw,34px); font-weight: 700; color: var(--black); margin-bottom: 14px; line-height: 1.15; }
.prose p { font-size: 15px; color: var(--grey-500); line-height: 1.8; margin-bottom: 14px; }
.prose strong { color: var(--black); font-weight: 700; }
.prose ul { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li { font-size: 14px; color: var(--grey-700); padding-left: 20px; position: relative; line-height: 1.5; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.highlight-box {
  background: var(--grey-50);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 20px 0;
}
.highlight-box p { font-size: 15px; color: var(--grey-700); font-style: italic; margin: 0 0 8px; }
.highlight-box cite { font-size: 13px; color: var(--grey-500); font-style: normal; font-weight: 600; }

/* ─── Timeline horizontal ─── */
.timeline-h {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
@media(max-width:800px){ .timeline-h { grid-template-columns:1fr; gap:20px; } }
.timeline-h::before {
  content:'';
  position:absolute;
  top:24px;
  left:calc(12.5%);
  width:calc(75%);
  height:2px;
  background:var(--grey-300);
  z-index:0;
}
@media(max-width:800px){ .timeline-h::before { display:none; } }
.timeline-h-step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.timeline-h-dot {
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--black);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  color:#fff;
  margin:0 auto 16px;
  border:3px solid #fff;
  box-shadow:0 0 0 2px var(--grey-300);
}
.timeline-h-label { font-size:11px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.timeline-h-title { font-size:15px; font-weight:700; color:var(--black); margin-bottom:6px; }
.timeline-h-body { font-size:13px; color:var(--grey-500); line-height:1.6; }

/* ─── Team cards ─── */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px; }
@media(max-width:900px){ .team-grid { grid-template-columns:repeat(2,1fr); } }
.team-card { background:#fff; border:1px solid var(--grey-300); border-radius:var(--radius-lg); padding:24px; text-align:center; transition:all 0.3s; }
.team-card:hover { border-color:var(--red); box-shadow:var(--shadow-red); transform:translateY(-2px); }
.team-avatar { width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Inter',sans-serif; font-size:16px; font-weight:700; color:#fff; margin:0 auto 14px; }
.team-name { font-size:15px; font-weight:700; color:var(--black); margin-bottom:4px; }
.team-title { font-size:13px; color:var(--grey-500); line-height:1.5; margin-bottom:10px; }
.team-link { font-size:12px; color:var(--red); font-weight:600; display:inline-flex; align-items:center; gap:5px; }

/* ─── CTA Section ─── */
.page-inner-cta {
  background: var(--black);
  padding: 72px 0;
  text-align: center;
}
.page-inner-cta h2 { font-family:'Inter',sans-serif; font-size:26px; font-weight:700; color:#fff; line-height:1.15; margin-bottom:12px; }
.page-inner-cta span { color:var(--red); }
.page-inner-cta p { font-size:16px; color:rgba(255,255,255,0.5); margin-bottom:28px; }
.page-inner-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-white {
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; color:var(--red); font-size:15px; font-weight:700;
  padding:14px 28px; border-radius:var(--radius); border:2px solid #fff;
  transition:all 0.2s; cursor:pointer;
}
.btn-white:hover { background:rgba(255,255,255,0.9); transform:translateY(-1px); }
.btn-white-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:#fff; font-size:15px; font-weight:600;
  padding:14px 28px; border-radius:var(--radius); border:2px solid rgba(255,255,255,0.35);
  transition:all 0.2s; cursor:pointer;
}
.btn-white-outline:hover { border-color:#fff; background:rgba(255,255,255,0.08); }

/* ─── Footer ─── */
.footer { background:var(--grey-900); color:rgba(255,255,255,0.7); padding:64px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
@media(max-width:900px){ .footer-grid { grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:600px){ .footer-grid { grid-template-columns:1fr; } }
.footer-logo { height:44px; width:auto; margin-bottom:16px; }
.footer-brand p { font-size:14px; color:rgba(255,255,255,0.4); line-height:1.7; margin-bottom:16px; }
.footer-parent-note { display:flex; align-items:center; gap:8px; font-size:12px; color:rgba(255,255,255,0.3); }
.footer-parent-logo { height:16px; width:auto; filter:brightness(0) invert(0.5); }
.footer-col h5 { font-size:13px; font-weight:700; color:#fff; margin-bottom:14px; text-transform:uppercase; letter-spacing:0.5px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:14px; color:rgba(255,255,255,0.4); transition:color 0.15s; }
.footer-col ul li a:hover { color:rgba(255,255,255,0.85); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-bottom span { font-size:13px; color:rgba(255,255,255,0.3); }
.footer-legal { display:flex; gap:16px; }
.footer-legal a { font-size:13px; color:rgba(255,255,255,0.3); transition:color 0.15s; }
.footer-legal a:hover { color:rgba(255,255,255,0.6); }

/* ─── Back to top ─── */
.back-to-top {
  position:fixed; bottom:24px; right:24px;
  width:44px; height:44px; border-radius:50%;
  background:var(--red); color:#fff; border:none; cursor:pointer;
  font-size:16px; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-red); opacity:0; transform:translateY(16px);
  transition:all 0.3s; z-index:400;
}
.back-to-top.visible { opacity:1; transform:translateY(0); }
.back-to-top:hover { background:var(--red-dark); }

/* ─── Scroll reveal ─── */
.reveal { opacity:0; transform:translateY(24px); transition:all 0.5s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── Section tag (inline) ─── */
.section-tag.light { color:rgba(255,255,255,0.6); }
.section-tag.light::before { background:rgba(255,255,255,0.4); }

/* ─── Badge / Status Chips ─── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase;
}
.badge-red { background: rgba(229,28,35,0.1); color: var(--red); }
.badge-green { background: rgba(16,185,129,0.1); color: #059669; }
.badge-blue { background: rgba(59,130,246,0.1); color: #2563eb; }
.badge-amber { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-grey { background: var(--grey-100); color: var(--grey-500); }

/* ─── Number/Icon Feature Rows ─── */
.num-feature-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px;
}
@media(max-width:900px){ .num-feature-row { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .num-feature-row { grid-template-columns: 1fr; } }
.num-feature {
  background: #fff; border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.num-feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.num-feature:hover::before { transform: scaleX(1); }
.num-feature:hover { border-color: rgba(229,28,35,0.2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.num-feature-num {
  font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 700;
  color: rgba(229,28,35,0.1); line-height: 1; margin-bottom: 8px;
}
.num-feature h4 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.num-feature p { font-size: 14px; color: var(--grey-500); line-height: 1.7; }

/* ─── Icon List ─── */
.icon-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.icon-list-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; background: #fff;
  border: 1px solid var(--grey-300); border-radius: var(--radius);
  transition: all 0.2s;
}
.icon-list-item:hover { border-color: rgba(229,28,35,0.25); box-shadow: var(--shadow-sm); }
.icon-list-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(229,28,35,0.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.icon-list-text h5 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.icon-list-text p { font-size: 13px; color: var(--grey-500); line-height: 1.5; }

/* ─── Visual UI Mockup Panels ─── */
.ui-mockup {
  background: #fff; border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ui-mockup-bar {
  background: var(--grey-50); padding: 10px 16px;
  border-bottom: 1px solid var(--grey-300);
  display: flex; align-items: center; gap: 8px;
}
.ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.ui-dot-r { background: #ff5f57; }
.ui-dot-y { background: #febc2e; }
.ui-dot-g { background: #28c840; }
.ui-mockup-title { font-size: 12px; font-weight: 600; color: var(--grey-500); margin-left: 8px; }
.ui-mockup-body { padding: 20px; }
.ui-row { display: flex; gap: 8px; margin-bottom: 8px; align-items: center; }
.ui-label { font-size: 11px; color: var(--grey-500); font-weight: 600; min-width: 90px; }
.ui-val { font-size: 12px; color: var(--black); font-weight: 600; }
.ui-pill {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
}
.ui-pill-green { background: rgba(16,185,129,0.12); color: #059669; }
.ui-pill-blue { background: rgba(59,130,246,0.12); color: #2563eb; }
.ui-pill-red { background: rgba(229,28,35,0.12); color: var(--red); }
.ui-pill-amber { background: rgba(245,158,11,0.12); color: #d97706; }
.ui-bar { height: 6px; border-radius: 3px; background: var(--grey-100); margin-bottom: 8px; overflow: hidden; }
.ui-bar-fill { height: 100%; border-radius: 3px; background: var(--red); }
.ui-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 12px 0; }
.ui-kpi { background: var(--grey-50); border-radius: 8px; padding: 10px; text-align: center; }
.ui-kpi-val { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: var(--black); }
.ui-kpi-lbl { font-size: 10px; color: var(--grey-500); margin-top: 2px; }

/* ─── Divider ─── */
.section-divider { width: 48px; height: 4px; background: var(--red); border-radius: 2px; margin: 16px 0 24px; }
.section-divider-center { margin: 16px auto 24px; }

/* ─── Checklist ─── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--grey-700); line-height: 1.6;
}
.checklist li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 700;
  font-size: 11px; color: var(--red); margin-top: 3px; flex-shrink: 0;
}

/* ─── Large Metric Display ─── */
.metric-display {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--grey-300); border-radius: var(--radius-lg);
  overflow: hidden; margin: 40px 0;
}
@media(max-width:768px){ .metric-display { grid-template-columns: repeat(2,1fr); } }
.metric-card {
  background: #fff; padding: 32px 24px; text-align: center;
}
.metric-card-dark { background: var(--black); }
.metric-num {
  font-family: 'Inter', sans-serif; font-size: 44px;
  font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 6px;
}
.metric-label { font-size: 13px; color: var(--grey-500); line-height: 1.5; }
.metric-card-dark .metric-label { color: rgba(255,255,255,0.5); }

/* ─── Highlight Panel ─── */
.highlight-panel {
  background: linear-gradient(135deg, #fff 0%, rgba(229,28,35,0.04) 100%);
  border: 1px solid rgba(229,28,35,0.15); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
}
.highlight-panel::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
}

/* ─── Integration Chip Grid ─── */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--grey-300);
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--grey-700);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--red); color: var(--red); box-shadow: var(--shadow-sm); }
.chip i { font-size: 14px; color: var(--red); }

/* ─── Step / Process Cards ─── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
@media(max-width:900px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .process-grid { grid-template-columns: 1fr; } }
.process-card {
  background: #fff; border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center; transition: all 0.3s; position: relative;
}
.process-card:hover { border-color: var(--red); box-shadow: var(--shadow-red); transform: translateY(-4px); }
.process-step {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700;
  margin: 0 auto 16px;
}
.process-card h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--grey-500); line-height: 1.6; }

/* ─── Dark CTA Banner ─── */
.cta-banner {
  background: var(--black); border-radius: var(--radius-xl);
  padding: 56px 48px; margin: 60px 0;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(229,28,35,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-text h2 { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cta-banner-text p { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 500px; }
.cta-banner-text span { color: var(--red); }

/* ─── Comparison Table ─── */
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.compare-table th { background: var(--black); color: #fff; padding: 14px 20px; font-family: 'Inter',sans-serif; font-size: 13px; font-weight: 700; text-align: left; }
.compare-table td { padding: 14px 20px; font-size: 14px; color: var(--grey-700); border-bottom: 1px solid var(--grey-300); }
.compare-table tr:hover td { background: var(--grey-50); }
.compare-table .check-yes { color: #059669; font-weight: 700; }
.compare-table .check-no { color: var(--grey-300); }

/* ─── Accordion ─── */
.accordion { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--grey-300); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--grey-300); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%; background: #fff; border: none; cursor: pointer;
  padding: 18px 24px; display: flex; align-items: center; justify-content: space-between;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--black);
  text-align: left; transition: background 0.2s;
}
.accordion-trigger:hover { background: var(--grey-50); }
.accordion-trigger.open { color: var(--red); }
.accordion-trigger i { font-size: 12px; color: var(--grey-500); transition: transform 0.25s; }
.accordion-trigger.open i { transform: rotate(180deg); color: var(--red); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--grey-50); }
.accordion-content-inner { padding: 16px 24px 20px; font-size: 14px; color: var(--grey-700); line-height: 1.75; }

/* ─── Testimonial Cards ─── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
@media(max-width:900px){ .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #fff; border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(229,28,35,0.2); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--grey-700); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--black); }
.testimonial-role { font-size: 12px; color: var(--grey-500); }

/* ─── Two-col feature layout ─── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin: 48px 0;
}
@media(max-width:900px){ .feature-split { grid-template-columns: 1fr; gap: 36px; } }
.feature-split-reverse { direction: rtl; }
.feature-split-reverse > * { direction: ltr; }

/* ─── Tabs Component ─── */
.tab-nav {
  display: flex; gap: 4px; background: var(--grey-100);
  border-radius: var(--radius); padding: 4px; margin-bottom: 28px; flex-wrap: wrap;
}
.tab-btn {
  flex: 1; padding: 10px 20px; background: transparent; border: none; cursor: pointer;
  border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--grey-500);
  transition: all 0.2s; white-space: nowrap; min-width: 120px;
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { background: #fff; color: var(--black); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Page Intro band ─── */
.intro-band {
  background: var(--black); padding: 24px 0;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.intro-band-item { display: flex; align-items: center; gap: 10px; }
.intro-band-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(229,28,35,0.2); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.intro-band-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.intro-band-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }
@media(max-width:600px){ .intro-band-sep { display: none; } }

/* ─── Nav logo (white bg — uses transparent SVG) ─── */
.nav-logo img {
  height: 100px !important;
  width: auto !important;
  max-width: 320px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ─── Footer logo (dark bg — official PNG displayed on white pill for full clarity) ─── */
.footer-logo-img {
  height: 72px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 20px;
  /* White background pill — preserves official logo colours on dark footer */
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 18px;
}

/* ─── Responsive utility ─── */
@media(max-width:600px){
  .section { padding: 56px 0; }
  .page-section { padding: 52px 0; }
  .cta-banner { padding: 36px 24px; }
}
