/* ==========================================================================
   CirrusLED.com — Shared site styles
   Built on the Cirrus Design System tokens (colors_and_type.css) + the
   marketing UI kit component vocabulary. Light site with dark-stage heroes.
   ========================================================================== */

@import url('colors_and_type.css');

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body { margin: 0; background: var(--color-bg); color: var(--color-fg); font-family: var(--font-sans); font-size: var(--fs-body); line-height: var(--lh-normal); }
img, video { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 32px); }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 32px); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 32px); }

/* The DS gives every <a> a transparent 1px bottom-border that turns cobalt on
   hover (an underline effect). That's wrong for structural/chrome links — kill it
   there. In-body prose links can still opt into it. Buttons are EXCLUDED: they
   own a real 1px border on all four sides (see .btn rules below). */
.site-nav a:not(.btn), .site-footer a, .breadcrumb a, .nav-trigger,
.solution-card, .case-card, .industry-card, .pillar, .feature a:not(.btn),
.quote-card a, .product-cta, .case-link, .gal-item, .mobile-menu a:not(.btn) {
  border-bottom: none !important;
}
.site-nav a:not(.btn):hover, .site-footer a:hover, .breadcrumb a:hover,
.nav-trigger:hover, .feature a:not(.btn):hover, .product-cta:hover, .case-link:hover,
.mobile-menu a:not(.btn):hover {
  border-bottom-color: transparent !important;
}
/* Buttons keep a full, even border; the DS underline may never tint or remove
   the bottom edge. Variants with visible borders re-pin their color. */
.btn { border-bottom: 1px solid transparent !important; }
.btn-secondary { border-bottom-color: var(--ink-300) !important; }
.btn-secondary:hover { border-bottom-color: var(--ink-900) !important; }

/* ---------- Buttons ---------- */
.btn { font-family: inherit; font-weight: 700; font-size: 15px; line-height: 1; padding: 13px 22px; border-radius: 8px; border: 1px solid transparent; cursor: pointer; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); letter-spacing: .01em; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; white-space: nowrap; }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-glow-cobalt); }
.btn-primary { background: var(--cobalt-500); color: #fff; }
.btn-primary:hover { background: var(--cobalt-600); color: #fff; }
.btn-primary:active { background: var(--cobalt-700); }
.btn-secondary { background: #fff; color: var(--ink-900); border-color: var(--ink-300); }
.btn-secondary:hover { border-color: var(--ink-900); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-800); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-700); }
.btn-ghost:hover { color: var(--cobalt-600); }
.btn-ghost-dark { background: rgba(255,255,255,.10); color: #fff; backdrop-filter: blur(8px); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Eyebrow / overline ---------- */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cobalt-600); margin: 0 0 16px; display: inline-block; }
.eyebrow.on-dark { color: var(--cobalt-300); }

/* ==========================================================================
   NAV — mega-menu
   ========================================================================== */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nav-left { display: flex; align-items: center; gap: 22px; height: 100%; }
.nav-logo { height: 30px; }
.nav-menu { display: flex; align-items: center; gap: 2px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-trigger { font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--ink-700); background: none; border: none; cursor: pointer; padding: 8px 11px; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px; text-decoration: none; white-space: nowrap; transition: color var(--dur-fast) var(--ease-out); }
.nav-trigger:hover, .nav-item:hover .nav-trigger, .nav-item.open .nav-trigger { color: var(--cobalt-600); background: none; }
.nav-trigger .chev { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease-out); }
.nav-item:hover .nav-trigger .chev, .nav-item.open .nav-trigger .chev { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-signin { font-size: 15px; font-weight: 600; color: var(--ink-700); text-decoration: none; padding: 8px 12px; border-radius: 8px; transition: color var(--dur-fast) var(--ease-out); }
.nav-signin:hover { color: var(--cobalt-600); }

/* Dropdown panels */
.nav-panel { position: absolute; top: 100%; left: 0; max-width: calc(100vw - 24px); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base); background: #fff; border: 1px solid var(--color-border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 22px; z-index: 110; }
.nav-item:hover .nav-panel, .nav-item.open .nav-panel { opacity: 1; visibility: visible; transform: translateY(6px); }
.nav-panel::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
/* keep right-side panels inside the viewport */
.nav-item:nth-last-child(-n+2) .nav-panel { left: auto; right: 0; }

.nav-panel-products { width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.nav-panel-industries { width: 660px; }
.nav-panel-resources { width: 500px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }

.nav-group-label { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); padding: 6px 12px 8px; }
.nav-panel-section { display: flex; flex-direction: column; }
.nav-link { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; text-decoration: none; border-bottom: none !important; transition: background var(--dur-fast) var(--ease-out); }
.nav-link:hover { background: var(--cobalt-50); color: inherit; border-bottom-color: transparent !important; }
.nav-link .ic { width: 18px; height: 18px; color: var(--cobalt-500); flex-shrink: 0; margin-top: 0; }
/* Stack title above description (they are spans inside a wrapper span) */
.nav-link > span { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.nav-link .nl-title { font-size: 14px; font-weight: 700; color: var(--ink-900); line-height: 1.3; }
.nav-link .nl-desc { font-size: 12.5px; font-weight: 400; color: var(--ink-500); line-height: 1.45; }
/* links that stack a title + description need top alignment */
.nav-link:has(.nl-desc) { align-items: flex-start; }
.nav-link:has(.nl-desc) .ic { margin-top: 2px; }

.nav-grid-industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px 8px; }
.nav-grid-industries .nav-link { padding: 7px 10px; gap: 9px; align-items: flex-start; }
.nav-grid-industries .nav-link .ic { width: 16px; height: 16px; margin-top: 1px; }
.nav-grid-industries .nl-title { font-size: 13px; line-height: 1.35; }
.nav-industries-foot { grid-column: 1 / -1; display: flex; gap: 10px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.nav-industries-foot .btn { padding: 8px 16px; font-size: 13px; font-weight: 700; line-height: 1; border-radius: 8px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink-900); }
.mobile-menu { display: none; }

/* Hide the secondary ScreenHub text link a bit earlier so the menu always fits */
@media (max-width: 1080px) { .nav-right .nav-signin { display: none; } }

/* Mobile nav — the full menu needs ~950px to fit, so collapse well before that */
@media (max-width: 960px) {
  .nav-menu, .nav-right .nav-signin, .nav-right .btn-quote-text { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; position: fixed; inset: 72px 0 0; background: #fff; z-index: 90; overflow-y: auto; padding: 16px 24px 48px; }
  .mobile-menu details { border-bottom: 1px solid var(--color-border); }
  .mobile-menu summary { font-size: 17px; font-weight: 700; padding: 16px 4px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary .chev { width: 20px; height: 20px; flex: none; color: var(--ink-400); transition: transform var(--dur-fast) var(--ease-out); }
  .mobile-menu details[open] > summary .chev { transform: rotate(180deg); }
  .mobile-menu .mm-links { display: flex; flex-direction: column; padding: 0 4px 16px; gap: 4px; }
  .mobile-menu .mm-links a { padding: 8px 0; font-size: 15px; color: var(--ink-600); text-decoration: none; }
  .mobile-menu .mm-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-dark { position: relative; background: var(--ink-900); color: #fff; overflow: hidden; }
.hero-dark .hero-bg-pixels { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.3px); background-size: 14px 14px; pointer-events: none; }
.hero-dark .hero-bg-glow { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 680px; height: 680px; border-radius: 50%; background: var(--gradient-spectrum); filter: blur(120px); opacity: .38; pointer-events: none; }
.hero-dark .hero-bg-cobalt { position: absolute; left: -200px; bottom: -220px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(closest-side, rgba(31,95,224,.55), transparent); filter: blur(50px); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; padding: clamp(64px, 8vw, 104px) 0 clamp(72px, 9vw, 116px); padding-inline: clamp(20px, 3vw, 32px) !important; }
.hero-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cobalt-300); margin-bottom: 22px; display: inline-flex; align-items: center; gap: 10px; }
.hero-eyebrow .pill { background: rgba(31,95,224,.2); border: 1px solid rgba(31,95,224,.5); color: var(--cobalt-200); padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; }
.hero-dark h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; margin: 0 0 24px; color: #fff; }
.hero-dark h1 em { font-style: normal; background: var(--gradient-spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 20px; line-height: 1.5; color: rgba(255,255,255,.78); margin: 0 0 32px; max-width: 600px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Light hero variant */
.hero-light { background: var(--color-bg); padding: 88px 0 72px; }
.hero-light h1 { font-size: clamp(36px, 5.4vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: 1.04; margin: 0 0 22px; }
.hero-light .hero-lead { color: var(--ink-500); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section-sm { padding: clamp(48px, 5vw, 64px) 0; }
.section-alt { background: var(--ink-50); }
.section-dark { background: var(--ink-900); color: #fff; }
.section-header { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 56px); text-align: center; }
.section-header h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 16px; }
.section-header p { font-size: 19px; line-height: 1.55; color: var(--ink-500); margin: 0; }
.section-header.on-dark h2 { color: #fff; }
.section-header.on-dark p { color: rgba(255,255,255,.72); }
.section-header.align-left { margin-left: 0; text-align: left; }

/* ---------- Trust / logo strip ---------- */
.logos { padding: 56px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.logos-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 32px; }
.logos-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px 56px; }
.logos-row img { height: 34px; width: auto; object-fit: contain; opacity: .62; filter: grayscale(1); transition: opacity var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out); }
.logos-row img:hover { opacity: 1; filter: grayscale(0); }

/* Scrolling logo marquee (home) — same logo sizing/treatment as .logos-row */
.logos-marquee { overflow: hidden; position: relative; }
.logos-marquee::before, .logos-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.logos-marquee::before { left: 0; background: linear-gradient(to right, var(--color-bg), transparent); }
.logos-marquee::after { right: 0; background: linear-gradient(to left, var(--color-bg), transparent); }
.logos-track { display: flex; width: max-content; }
.logos-group { display: flex; align-items: center; gap: 56px; padding-right: 56px; flex-shrink: 0; }
.logos-group img { height: 34px; width: auto; object-fit: contain; opacity: .62; filter: grayscale(1); transition: opacity var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out); }
.logos-group img:hover { opacity: 1; filter: grayscale(0); }
@media (prefers-reduced-motion: no-preference) {
  .logos-track { animation: logos-scroll 60s linear infinite; }
  .logos-marquee:hover .logos-track { animation-play-state: paused; }
}
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-group[aria-hidden="true"] { display: none; }
  .logos-track { flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features.cols-2 { grid-template-columns: repeat(2, 1fr); }
.features.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 30px; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); }
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--cobalt-200); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--cobalt-50); color: var(--cobalt-600); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 8px; }
.feature p { font-size: 15px; line-height: 1.55; color: var(--ink-500); margin: 0; }
.section-dark .feature { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); }
.section-dark .feature h3 { color: #fff; }
.section-dark .feature p { color: rgba(255,255,255,.65); }
.section-dark .feature-icon { background: rgba(31,95,224,.18); color: var(--cobalt-300); }

/* ---------- Media + text rows ---------- */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.media-row.reverse .media-row-text { order: 2; }
.media-row + .media-row { margin-top: clamp(56px, 8vw, 96px); }
.media-row-text h2, .media-row-text h3 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 16px; }
.media-row-text p { font-size: 17px; line-height: 1.6; color: var(--ink-500); margin: 0 0 24px; }
.media-figure { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink-100); aspect-ratio: 16/11; }
.media-figure img, .media-figure video { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--ink-800); line-height: 1.5; }
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--cobalt-500); width: 18px; height: 18px; }

/* ---------- Numbered solution cards ---------- */
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card { background: #fff; border: 1px solid var(--color-border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.solution-card .sc-media { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--ink-100); }
.solution-card .sc-media::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--gradient-spectrum); z-index: 2; }
.solution-card .sc-media img { width: 100%; height: 100%; object-fit: cover; }
.solution-card .sc-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.solution-card .sc-num { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--cobalt-600); margin-bottom: 8px; }
.solution-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -.015em; margin: 0 0 10px; }
.solution-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-500); margin: 0; }

/* ---------- Industry cards ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.industry-card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; text-decoration: none; display: block; box-shadow: var(--shadow-sm); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.industry-card:hover img { transform: scale(1.05); }
.industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,14,21,.88) 0%, rgba(11,14,21,.25) 55%, transparent 100%); }
.industry-card .ic-body { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; }
.industry-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 6px; letter-spacing: -.01em; }
.industry-card p { font-size: 14px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.45; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink-900); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { padding: clamp(36px, 4.5vw, 52px) 32px; border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid > div:last-child { border-right: none; }
.stats-grid b { display: block; font-size: 54px; font-weight: 800; letter-spacing: -.03em; line-height: 1; background: var(--gradient-spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.stats-grid span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); line-height: 1.4; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; }
.quote-card .stars { color: var(--spec-amber); display: flex; gap: 2px; margin-bottom: 16px; }
.quote-card blockquote { font-size: 15.5px; line-height: 1.6; color: var(--ink-800); margin: 0 0 20px; flex: 1; }
.quote-card .q-author { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.quote-card .q-org { font-size: 13.5px; color: var(--ink-500); margin-top: 2px; }

/* ---------- Spec table ---------- */
.specs-wrap { max-width: 1100px; margin: 0 auto; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; }
.specs-head { display: grid; background: var(--ink-900); color: #fff; padding: 22px 24px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.specs-head > div:not(:first-child) { text-align: center; }
.specs-row { display: grid; padding: 18px 24px; border-top: 1px solid var(--color-border); font-size: 14px; align-items: center; }
.specs-row > div:first-child { color: var(--ink-500); font-weight: 600; }
.specs-row > div:not(:first-child) { text-align: center; font-family: var(--font-mono); font-weight: 600; color: var(--ink-900); }
.specs-row.highlight { background: var(--cobalt-50); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-900); color: #fff; position: relative; overflow: hidden; border-radius: 24px; padding: clamp(48px, 6vw, 76px) clamp(28px, 5vw, 64px); }
.cta-band-inner { display: grid; grid-template-columns: 1.3fr auto; align-items: center; gap: 48px; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; margin: 0 0 12px; color: #fff; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.74); margin: 0; max-width: 540px; line-height: 1.5; }
.cta-band-glow { position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%; background: var(--gradient-spectrum); filter: blur(110px); opacity: .5; pointer-events: none; }
.cta-band-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-band-inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink-1000); color: rgba(255,255,255,.7); padding: 0 0 32px; }
.footer-rainbow { height: 3px; background: var(--gradient-spectrum); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: clamp(28px, 3.5vw, 40px); padding: clamp(52px, 6vw, 72px) 0 48px; }
.footer-logo img { height: 30px; margin-bottom: 20px; }
.footer-brandline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 280px; margin: 0 0 18px; }
.footer-address { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.5); margin: 0; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.68); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: #fff; }
.footer-phone { font-size: 14px; color: rgba(255,255,255,.68); }
.footer-phone a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-legal a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,.6); transition: color var(--dur-fast) var(--ease-out); }
.footer-social a:hover { color: #fff; }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   PAGE HERO (interior pages) — light with optional dark
   ========================================================================== */
.page-hero { padding: 72px 0 56px; background: var(--ink-50); border-bottom: 1px solid var(--color-border); }
.page-hero .breadcrumb { font-size: 13px; color: var(--ink-500); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.page-hero .breadcrumb a { color: var(--ink-500); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--cobalt-600); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin: 0 0 18px; max-width: 800px; }
.page-hero p { font-size: 19px; line-height: 1.55; color: var(--ink-500); margin: 0; max-width: 640px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .features, .features.cols-4, .solution-grid, .industry-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
  .media-row { grid-template-columns: 1fr; gap: 36px; }
  .media-row.reverse .media-row-text { order: 0; }
}
@media (max-width: 768px) {
  .features, .features.cols-2, .features.cols-4, .solution-grid, .industry-grid, .quote-grid, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  [data-reveal].in { opacity: 1; transform: none; }
}
