/* ChainIQ — Finastra Kinetic theme match (Futura + Roboto, fuchsia #c137a2) */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/futura-std-4');

:root {
  --fuchsia: #c137a2;
  --fuchsia-80: #cd5fb5;
  --fuchsia-dark: #a82d88;
  --violet-dark: #2d1054;
  --violet-deeper: #1a0a2e;
  --charcoal: #333333;
  --charcoal-30: rgba(255,255,255,0.72);
  --light-grey: #f0f0f0;
  --black-50: rgba(0,0,0,0.5);
  --white: #ffffff;
  --black: #000000;
  --border: #e0e0e0;
  --font-display: 'Futura Std', Futura, 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;
  --header-h: 90px;
  --utility-h: 36px;
  --max: 1280px;
  --pill: 9999px;
  --radius-lg: 16px;
  --radius-md: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--charcoal); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 10px 16px; background: var(--fuchsia); color: var(--white); }
.skip-link:focus { left: 10px; }

/* Utility nav */
.utility-nav { background: var(--violet-deeper); height: var(--utility-h); font-size: 13px; font-weight: 500; }
.utility-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.utility-inner a { color: rgba(255,255,255,0.85); }
.utility-inner a:hover { color: var(--white); }

/* Site header */
.site-header { position: absolute; top: var(--utility-h); left: 0; right: 0; z-index: 500; }
.site-header.scrolled { position: fixed; top: 0; background: var(--white); box-shadow: 0 1px 0 var(--border); }
.site-header.scrolled .logo-white { display: none; }
.site-header.scrolled .logo-dark { display: block; }
.site-header.scrolled .main-nav > li > a,
.site-header.scrolled .main-nav > li > .nav-trigger { color: var(--charcoal); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 62px; display: flex; align-items: center; gap: 8px; }
.logo img { height: 28px; width: auto; }
.logo-dark { display: none; }
.main-nav { display: flex; align-items: center; margin-left: 24px; flex: 1; }
.main-nav > li { position: relative; }
.main-nav > li > a, .main-nav > li > .nav-trigger {
  display: flex; align-items: center; gap: 4px; padding: 8px 12px;
  font-size: 15px; font-weight: 500; color: var(--white); cursor: pointer;
}
.main-nav > li > a:hover, .main-nav > li:hover > .nav-trigger { opacity: 0.85; }
.chevron { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.6; }
.mega-panel {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white);
  border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s; z-index: 300;
}
.main-nav > li:hover .mega-panel { opacity: 1; visibility: visible; transform: none; }
.mega-panel a { display: block; padding: 9px 18px; font-size: 14px; color: var(--charcoal); font-weight: 400; }
.mega-panel a:hover { background: var(--light-grey); color: var(--fuchsia); }
.btn-primary-light {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; background: var(--fuchsia); color: var(--white) !important;
  font-family: var(--font-body); font-size: 16px; font-weight: 500; border-radius: var(--pill);
  transition: background .15s; white-space: nowrap;
}
.btn-primary-light:hover { background: var(--fuchsia-dark); }
.menu-toggle { display: none; margin-left: auto; font-size: 22px; color: var(--white); padding: 8px; }
.site-header.scrolled .menu-toggle { color: var(--charcoal); }

/* Banner / Hero — Finastra bg-gradient-violet-dark */
.banner-layout {
  position: relative;
  background: linear-gradient(135deg, #1a0828 0%, #2a1048 30%, #351560 55%, #1e0c38 100%);
  color: var(--white);
  overflow: hidden;
}
.banner-layout::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(193,55,162,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 95%, rgba(100,50,180,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.flourish-particles {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px; opacity: 0.4; pointer-events: none;
}
.banner-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.banner-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: calc(var(--utility-h) + 62px + 24px) 0 48px;
  min-height: 480px;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 28px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; line-height: 1; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 4px; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb .icon-home { width: 14px; height: 14px; opacity: 0.7; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; opacity: 0.45; }

/* Badge */
.badge {
  display: inline-block; padding: 5px 16px; border: 1px solid var(--fuchsia);
  border-radius: var(--pill); font-size: 14px; font-weight: 500; line-height: 1.25;
  color: var(--white); margin-bottom: 10px;
}

/* H1 — Futura 60px */
.h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 500; line-height: 1.2; color: var(--white); margin-bottom: 12px; }
.fuchsia-highlight { color: var(--fuchsia); }
.banner-lead { font-size: 18px; line-height: 1.55; font-weight: 500; color: var(--charcoal-30); margin-bottom: 24px; max-width: 480px; }

/* Video teaser card — kinetic:teaser-featured */
.teaser-featured {
  position: relative; padding: 36px; border-radius: var(--radius-lg);
  background: var(--black-50); cursor: pointer;
}
.teaser-featured .cover-image { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; aspect-ratio: 16/9; background: var(--violet-dark); }
.teaser-featured .cover-image img { width: 100%; height: 100%; object-fit: cover; }
.teaser-featured .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.teaser-featured h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 16px; }
.link-fuchsia {
  display: inline-flex; flex-direction: row-reverse; align-items: center; gap: 8px;
  color: var(--fuchsia); font-weight: 500; font-size: 15px;
}
.link-fuchsia:hover { color: var(--fuchsia-80); }
.icon-video {
  width: 20px; height: 20px; border-radius: 50%; background: var(--fuchsia);
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-video::after { content: ''; border: 5px solid transparent; border-left: 7px solid white; margin-left: 2px; }

/* Anchor links bar */
.anchor-links-bar { background: var(--light-grey); padding: 7px 12px; position: sticky; top: 0; z-index: 400; }
.anchor-links-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 12px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.anchor-links-inner ul { display: flex; gap: 10px; flex-wrap: wrap; }
.anchor-links-inner ul a {
  font-weight: 700; font-size: 15px; color: var(--charcoal); padding: 8px 12px;
  line-height: 1.5; white-space: nowrap;
}
.anchor-links-inner ul a:hover { color: var(--fuchsia); }
.anchor-links-inner .btn-primary-light { margin-left: 0; padding: 10px 20px; font-size: 14px; }

/* Sections */
.section { padding: 64px 24px; }
.section-white { background: var(--white); }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-badge {
  display: inline-block; padding: 4px 14px; border: 1px solid var(--border);
  border-radius: var(--pill); font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 16px;
}

.h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; line-height: 1.2; color: var(--black); margin-bottom: 16px; }
.section-intro { font-size: 16px; line-height: 1.65; color: var(--charcoal); max-width: 720px; margin-bottom: 8px; }

.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.section-header-row .h2 { margin-bottom: 0; }

.link-underline { color: var(--fuchsia); font-weight: 500; font-size: 16px; border-bottom: 1px solid var(--fuchsia); padding-bottom: 1px; }
.link-underline:hover { color: var(--fuchsia-dark); }

/* Benefits — 4 col grid with borders */
.benefits-panel { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.benefit-cell { padding: 32px 28px; border-right: 1px solid var(--border); }
.benefit-cell:last-child { border-right: none; }
.benefit-cell h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; color: var(--black); }
.benefit-cell p { font-size: 15px; line-height: 1.55; color: var(--charcoal); }

/* Recognition */
.recognition-section { padding: 64px 24px; background: var(--white); }
.recognition-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: center; }
.recognition-grid img { width: 100%; border-radius: var(--radius-md); }

/* Feature highlight rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border); }
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }
.feature-media img { width: 100%; border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; }
.feature-copy h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 14px; color: var(--black); }
.feature-copy p { font-size: 16px; line-height: 1.65; color: var(--charcoal); margin-bottom: 20px; }
.arrow-link { display: inline-flex; align-items: center; gap: 6px; color: var(--fuchsia); font-weight: 500; font-size: 15px; }
.arrow-link::after { content: '→'; transition: transform .15s; }
.arrow-link:hover::after { transform: translateX(4px); }

/* Product cards — horizontal Finastra style */
.products-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-teaser { display: grid; grid-template-columns: 200px 1fr; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: box-shadow .2s; }
.product-teaser:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.product-teaser img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.product-teaser-body { padding: 24px; }
.product-teaser-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; color: var(--black); }
.product-teaser-body p { font-size: 14px; line-height: 1.55; color: var(--charcoal); margin-bottom: 14px; }
.product-details { font-size: 14px; font-weight: 500; color: var(--fuchsia); display: inline-flex; gap: 4px; align-items: center; }
.product-details::after { content: '→'; }

/* Resources */
.resources-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.topic-select {
  padding: 10px 36px 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23333' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
}
.resources-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.resources-track::-webkit-scrollbar { display: none; }
.resource-card {
  flex: 0 0 calc(33.333% - 14px); min-width: 280px; scroll-snap-align: start;
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white);
}
.resource-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.resource-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.resource-card-body { padding: 18px 20px 22px; }
.resource-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 8px; }
.resource-card-body h4 { font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--black); }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.carousel-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); font-size: 18px; color: var(--charcoal); }
.carousel-btn:hover { border-color: var(--fuchsia); color: var(--fuchsia); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); padding: 0; }
.carousel-dot.active { background: var(--fuchsia); }

/* FAQ */
.faq-section { background: var(--light-grey); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--white); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px; font-family: var(--font-display);
  font-size: 1rem; font-weight: 500; color: var(--black); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--white);
}
.faq-q:hover { color: var(--fuchsia); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--fuchsia); font-size: 1.1rem; flex-shrink: 0; transition: all .2s; }
.faq-item.open .faq-toggle { background: var(--fuchsia); color: var(--white); border-color: var(--fuchsia); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 15px; line-height: 1.65; color: var(--charcoal); }

/* Contact — id contact-us */
#contact-us { background: linear-gradient(135deg, #1a0828 0%, #2a1048 50%, #1e0c38 100%); color: var(--white); padding: 72px 24px; position: relative; }
#contact-us::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(193,55,162,0.15), transparent 50%); pointer-events: none; }
.contact-grid { position: relative; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-copy h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: 14px; line-height: 1.2; }
.contact-copy p { color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 12px; font-size: 16px; }
.contact-form-box { background: var(--white); border-radius: var(--radius-lg); padding: 32px; color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; color: var(--charcoal); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--fuchsia); }
.form-field textarea { min-height: 96px; resize: vertical; }
.form-optin { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0 20px; font-size: 13px; line-height: 1.5; color: var(--charcoal); }
.contact-form-box .btn-primary-light { width: 100%; margin-left: 0; border: none; cursor: pointer; }

/* Footer */
.site-footer { background: var(--violet-deeper); color: rgba(255,255,255,0.65); padding: 48px 24px 24px; font-size: 14px; }
.footer-top { max-width: var(--max); margin: 0 auto 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.75); font-weight: 500; font-size: 13px; }
.footer-social a:hover { color: var(--white); }
.footer-cols { max-width: var(--max); margin: 0 auto 32px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col a { display: block; padding: 4px 0; color: rgba(255,255,255,0.58); font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.42); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: var(--white); }

/* Subpages */
.subpage-header { position: fixed; top: var(--utility-h); left: 0; right: 0; z-index: 500; background: var(--white); box-shadow: 0 1px 0 var(--border); }
.subpage-header .logo-white { display: none; }
.subpage-header .logo-dark { display: block; }
.subpage-header .main-nav > li > a, .subpage-header .main-nav > li > .nav-trigger { color: var(--charcoal); }
.subpage-header .menu-toggle { color: var(--charcoal); }
.subpage-main { padding-top: calc(var(--utility-h) + 62px); }
.page-banner { background: linear-gradient(135deg, #1a0828, #2a1048); padding: 48px 24px; color: var(--white); }
.page-banner-inner { max-width: var(--max); margin: 0 auto; }
.page-banner .breadcrumb ol { color: rgba(255,255,255,0.55); }
.page-banner .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-banner h1 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 500; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.78); font-size: 17px; font-weight: 500; max-width: 640px; }
.page-banner .badge { margin-bottom: 12px; }

.content-block { max-width: 760px; margin: 0 auto; }
.content-block p { font-size: 16px; line-height: 1.7; color: var(--charcoal); margin-bottom: 16px; }
.content-block h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin: 28px 0 12px; color: var(--black); }
.content-hero-image { max-width: var(--max); margin: 0 auto; padding: 0 24px 40px; }
.content-hero-image img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-md); }

.resource-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.resource-list .resource-card { flex: unset; min-width: 0; }

.contact-page-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-block h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; margin-bottom: 16px; color: var(--black); }
.contact-info-block p { font-size: 16px; line-height: 1.65; color: var(--charcoal); margin-bottom: 10px; }
.contact-info-block a { color: var(--fuchsia); font-weight: 500; }

.anchor-links-inner ul a.active { color: var(--fuchsia); }

/* Resource detail pages */
.resource-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--charcoal); }
.resource-meta span { display: flex; align-items: center; gap: 6px; }
.resource-meta strong { color: var(--black); font-weight: 600; }

.content-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.content-layout.full { grid-template-columns: 1fr; max-width: 760px; }
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 120px; }
.sidebar-box { background: var(--light-grey); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.sidebar-box h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; margin-bottom: 12px; color: var(--black); }
.sidebar-box ul { font-size: 14px; line-height: 1.6; color: var(--charcoal); }
.sidebar-box li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar-box li:last-child { border-bottom: none; }
.sidebar-box a { color: var(--fuchsia); font-weight: 500; }

.pull-quote { border-left: 4px solid var(--fuchsia); padding: 20px 28px; margin: 32px 0; background: var(--light-grey); font-size: 1.15rem; line-height: 1.55; font-weight: 500; color: var(--black); font-style: italic; }
.pull-quote cite { display: block; margin-top: 12px; font-size: 14px; font-style: normal; color: var(--charcoal); font-weight: 400; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.stat-box { text-align: center; padding: 28px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); }
.stat-box .num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 500; color: var(--fuchsia); line-height: 1; margin-bottom: 8px; }
.stat-box .label { font-size: 14px; color: var(--charcoal); line-height: 1.4; }

.feature-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 28px 0; }
.feature-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.feature-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 8px; color: var(--black); }
.feature-card p { font-size: 14px; line-height: 1.55; color: var(--charcoal); margin: 0; }

.step-list { counter-reset: steps; margin: 28px 0; }
.step-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--fuchsia); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; flex-shrink: 0; }
.step-item h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 6px; color: var(--black); }
.step-item p { font-size: 15px; line-height: 1.6; color: var(--charcoal); margin: 0; }

.checklist { margin: 20px 0; }
.checklist li { position: relative; padding: 10px 0 10px 32px; font-size: 15px; line-height: 1.55; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--fuchsia); font-weight: 700; }

.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.spec-table th, .spec-table td { padding: 14px 16px; text-align: left; border: 1px solid var(--border); }
.spec-table th { background: var(--light-grey); font-weight: 600; color: var(--black); width: 35%; }
.spec-table td { color: var(--charcoal); }

.video-player { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #1a0828, #2a1048); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; }
.video-player img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.video-play-btn { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: var(--fuchsia); color: var(--white); font-size: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .15s; border: none; }
.video-play-btn:hover { transform: scale(1.08); }
.video-play-btn::after { content: ''; border: 10px solid transparent; border-left: 16px solid white; margin-left: 4px; }
.chapter-list { margin: 24px 0; }
.chapter-list li { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--charcoal); }
.chapter-list li span:last-child { color: var(--fuchsia); font-size: 13px; font-weight: 500; }

.infographic-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0; }
.flow-step { text-align: center; padding: 24px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); position: relative; }
.flow-step::after { content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: var(--fuchsia); font-size: 18px; font-weight: 700; }
.flow-step:last-child::after { display: none; }
.flow-step .flow-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--fuchsia); color: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-weight: 700; font-size: 14px; }
.flow-step h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--black); }
.flow-step p { font-size: 12px; line-height: 1.45; color: var(--charcoal); margin: 0; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.compare-col { padding: 24px; border-radius: var(--radius-md); }
.compare-col.before { background: #f8f8f8; border: 1px solid var(--border); }
.compare-col.after { background: linear-gradient(135deg, rgba(193,55,162,0.06), rgba(193,55,162,0.02)); border: 1px solid rgba(193,55,162,0.25); }
.compare-col h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 14px; }
.compare-col ul { font-size: 14px; line-height: 1.65; color: var(--charcoal); }
.compare-col li { padding: 4px 0; }

.pillar-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.pillar-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); border-top: 3px solid var(--fuchsia); }
.pillar-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; color: var(--black); }
.pillar-card p { font-size: 14px; line-height: 1.6; color: var(--charcoal); margin: 0; }

.resource-cta-bar { background: linear-gradient(135deg, #1a0828, #2a1048); color: var(--white); padding: 40px; border-radius: var(--radius-lg); margin: 40px 0 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.resource-cta-bar h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 6px; }
.resource-cta-bar p { font-size: 15px; color: rgba(255,255,255,0.75); margin: 0; }
.resource-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.tag { padding: 4px 12px; border: 1px solid var(--border); border-radius: var(--pill); font-size: 12px; font-weight: 500; color: var(--charcoal); }

.content-block ul, .content-block ol { margin: 12px 0 20px 24px; font-size: 16px; line-height: 1.7; color: var(--charcoal); }
.content-block li { margin-bottom: 8px; }
.content-block h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin: 24px 0 10px; color: var(--black); }

@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .infographic-flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step::after { display: none; }
  .pillar-cards { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .benefits-panel { grid-template-columns: repeat(2, 1fr); }
  .benefit-cell:nth-child(2) { border-right: none; }
  .benefit-cell { border-bottom: 1px solid var(--border); }
  .recognition-grid, .banner-row, .feature-row, .contact-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media, .feature-row.reverse .feature-copy { order: unset; }
  .resource-card { flex: 0 0 calc(50% - 10px); }
  .resource-list { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .feature-grid-2, .compare-grid { grid-template-columns: 1fr; }
  .infographic-flow { grid-template-columns: 1fr; }
  .utility-nav { display: none; }
  .site-header { top: 0; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; inset: 62px 0 0 0; background: var(--white); padding: 20px 24px; z-index: 600; overflow-y: auto; }
  .main-nav.open a, .main-nav.open .nav-trigger { color: var(--charcoal) !important; width: 100%; padding: 12px 0; }
  .mega-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding-left: 12px; }
  .main-nav.open li.expanded .mega-panel { display: block; }
  .menu-toggle { display: block; }
  .products-row, .product-teaser { grid-template-columns: 1fr; }
  .product-teaser img { min-height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .resource-card { flex: 0 0 85%; }
}
@media (max-width: 560px) {
  .benefits-panel { grid-template-columns: 1fr; }
  .benefit-cell { border-right: none; }
  .footer-cols { grid-template-columns: 1fr; }
}
