:root {
  --navy: #00344B;
  --teal: #0080A7;
  --sky: #009DC7;
  --navy-dark: #00263A;
  --navy-mid: #004A6B;
  --sky-light: #00B8E6;
  --accent: #E8F7FC;
  --gold: #C89A4A;
  --gold-light: #E8C87A;
  --text-dark: #0A1A26;
  --text-body: #4A5C6A;
  --text-light: #7A8E9A;
  --text-muted: #9AADB8;
  --bg-white: #FFFFFF;
  --bg-section: #F4F8FA;
  --bg-dark: #00344B;
  --border: rgba(0,52,75,0.10);
  --border-light: rgba(0,128,167,0.15);
  --shadow-xs: 0 1px 4px rgba(0,52,75,0.06);
  --shadow-sm: 0 2px 12px rgba(0,52,75,0.08);
  --shadow-md: 0 8px 32px rgba(0,52,75,0.10);
  --shadow-lg: 0 20px 60px rgba(0,52,75,0.14);
  --grad-brand: linear-gradient(135deg, #00344B 0%, #0080A7 60%, #009DC7 100%);
  --grad-sky: linear-gradient(135deg, #0080A7 0%, #009DC7 100%);
  --grad-light: linear-gradient(135deg, rgba(0,128,167,0.06) 0%, rgba(0,157,199,0.06) 100%);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--text-body); line-height: 1.7; background: var(--bg-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; position: relative; }
/* Aurora glow — soft brand-color radial washes anchored to corners. mix-blend-mode multiply means dark sections absorb it (stay dark) while light sections pick up warmth. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 1100px 720px at 6% -6%, rgba(0,157,199,0.10), transparent 55%),
    radial-gradient(ellipse 900px 600px at 96% 18%, rgba(200,154,74,0.09), transparent 60%),
    radial-gradient(ellipse 1300px 850px at 55% 108%, rgba(0,128,167,0.08), transparent 60%);
  mix-blend-mode: multiply;
}
/* Paper-grain noise — fine SVG turbulence, very low opacity. Adds organic texture without geometry. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.04;
  mix-blend-mode: multiply;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-dark); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0,38,58,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.3s ease; }
.header.scrolled { background: rgba(0,38,58,0.99); box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 16px; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75); border-radius: 6px; transition: all 0.2s; position: relative; }
.nav-link:hover { color: white; background: rgba(255,255,255,0.07); }
.nav-link.active { color: white; background: rgba(255,255,255,0.10); }
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-item:hover .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px); background: white; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,52,75,0.08); padding: 8px; min-width: 230px; opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.16,1,0.3,1); }
.dropdown::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: white; border-top: none; }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 8px; color: var(--text-body); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; }
.dropdown-item:hover { background: var(--accent); color: var(--teal); }
.dropdown-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-icon img { width: 18px; height: 18px; object-fit: contain; }
.nav-cta { margin-left: 16px; padding: 9px 22px; background: var(--grad-sky); color: white; font-size: 0.875rem; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 2px 12px rgba(0,157,199,0.3); display: inline-flex; align-items: center; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,157,199,0.45); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.page-hero { position: relative; padding: 180px 0 110px; overflow: hidden; min-height: 540px; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(170deg, rgba(0,38,58,0.92) 0%, rgba(0,52,75,0.82) 45%, rgba(0,52,75,0.56) 72%, rgba(0,38,58,0.93) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(200,154,74,0.14); border: 1px solid rgba(200,154,74,0.40); border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-light); margin-bottom: 24px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.page-hero h1 { font-size: clamp(2.4rem, 4.8vw, 3.8rem); font-weight: 800; color: white; line-height: 1.08; letter-spacing: -0.5px; margin-bottom: 22px; }
.page-hero p { font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 650px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-btn-primary, .hero-btn-secondary, .btn-cta-primary, .btn-cta-secondary, .card-link, .offer-link { display: inline-flex; align-items: center; gap: 8px; border-radius: 6px; transition: all 0.25s; font-weight: 600; }
.hero-btn-primary, .btn-cta-primary { padding: 14px 28px; background: var(--grad-sky); color: white; box-shadow: 0 4px 20px rgba(0,157,199,0.35); }
.hero-btn-primary:hover, .btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,157,199,0.45); }
.hero-btn-secondary, .btn-cta-secondary { padding: 13px 28px; border: 1px solid rgba(255,255,255,0.24); color: white; }
.hero-btn-secondary:hover, .btn-cta-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.42); }
.hero-highlights { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.hero-highlight { padding: 22px 24px; background: rgba(0,20,32,0.55); border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; backdrop-filter: blur(12px); }
.hero-highlight .label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-light); margin-bottom: 8px; font-weight: 700; }
.hero-highlight strong { display: block; font-size: 1.05rem; color: white; line-height: 1.35; }
.section { padding: 96px 0; }
.section-light { background: var(--bg-section); }
.section-dark { background: var(--navy-dark); }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-dark .section-eyebrow { color: var(--gold-light); }
.section-dark .section-eyebrow::before { background: var(--gold-light); }
.section-header { max-width: 760px; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.4px; margin-bottom: 16px; }
.section-header p { font-size: 1rem; color: var(--text-body); line-height: 1.8; }
.overview-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: 40px; align-items: start; }
.content-panel, .insight-panel, .capability-card, .offer-card, .related-card, .solution-card, .summary-card { background: white; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-sm); }
.content-panel { padding: 34px; }
.content-panel h3 { font-size: 1.35rem; margin-bottom: 14px; }
.content-panel p { margin-bottom: 18px; }
.content-panel p:last-child { margin-bottom: 0; }
.insight-panel { padding: 30px; background: linear-gradient(180deg, rgba(0,128,167,0.06) 0%, rgba(255,255,255,1) 100%); }
.insight-panel h3 { font-size: 1.1rem; margin-bottom: 16px; }
.check-list, .plain-list, .chip-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: var(--text-body); }
.check-list li::before { content: ''; width: 20px; height: 20px; min-width: 20px; margin-top: 2px; border-radius: 50%; background: var(--grad-light); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%230080A7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 14px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip-list li { padding: 8px 14px; border-radius: 999px; background: var(--bg-section); border: 1px solid var(--border); color: var(--text-dark); font-size: 0.84rem; font-weight: 500; }
.capabilities-grid, .related-grid, .solutions-grid, .offer-grid, .summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.capabilities-grid.capabilities-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.solutions-grid.solutions-grid-4 { display: flex; flex-wrap: wrap; justify-content: center; }
.solutions-grid.solutions-grid-4 > .solution-card { flex: 0 1 calc((100% - 3 * 22px) / 4); min-width: 0; }
@media (max-width: 1024px) {
  .solutions-grid.solutions-grid-4 > .solution-card { flex: 0 1 calc((100% - 22px) / 2); }
}
@media (max-width: 600px) {
  .solutions-grid.solutions-grid-4 > .solution-card { flex: 0 1 100%; }
}
.capability-card, .related-card, .solution-card, .summary-card { padding: 26px; display: flex; flex-direction: column; }
.capability-card .card-link, .related-card .card-link, .solution-card .card-link, .summary-card .card-link { margin-top: auto; }
.capability-icon, .summary-icon, .solution-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.capability-icon img, .summary-icon img, .solution-icon img { width: 24px; height: 24px; object-fit: contain; }
.capability-card h3, .related-card h3, .solution-card h3, .summary-card h3 { font-size: 1.18rem; margin-bottom: 12px; }
.capability-card p, .related-card p, .solution-card p, .summary-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }
.card-link, .offer-link { margin-top: 18px; color: var(--teal); }
.card-link:hover, .offer-link:hover { transform: translateX(3px); color: var(--navy); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.process-card { padding: 28px; border-radius: 20px; background: linear-gradient(180deg, rgba(0,128,167,0.08) 0%, rgba(255,255,255,1) 100%); border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.process-number { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-brand); color: white; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 18px; }
.process-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.offer-band { position: relative; overflow: hidden; }
.offer-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(0,184,230,0.15), transparent 36%), radial-gradient(circle at bottom left, rgba(200,154,74,0.12), transparent 28%); pointer-events: none; }
.offer-intro { max-width: 700px; margin-bottom: 34px; position: relative; z-index: 1; }
.offer-card { position: relative; z-index: 1; padding: 30px; }
.offer-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(0,128,167,0.10); color: var(--teal); font-size: 0.74rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.offer-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.offer-card p { margin-bottom: 18px; }
.offer-microcopy { font-size: 0.85rem; color: var(--text-light); margin-top: 16px; }
.offer-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.offer-actions .btn-cta-secondary { border-color: rgba(0,52,75,0.16); color: var(--navy); }
.offer-actions .btn-cta-secondary:hover { background: var(--bg-section); }
.related-card { display: flex; flex-direction: column; }
.related-card .card-link { margin-top: auto; padding-top: 14px; }
.cta-section { position: relative; overflow: hidden; padding: 108px 0; background: linear-gradient(160deg, #00263A 0%, #00344B 68%, #004A6B 100%); --cta-glass: url('../images/web/AdobeStock_1850064699.webp'); }
.cta-glass-a { --cta-glass: url('../images/web/AdobeStock_1640836103.webp'); }
.cta-glass-b { --cta-glass: url('../images/web/AdobeStock_1830393138.webp'); }
.cta-glass-c { --cta-glass: url('../images/web/AdobeStock_1640835786.webp'); }
.cta-glass-d { --cta-glass: url('../images/web/AdobeStock_1864748845.webp'); }
.cta-glass-e { --cta-glass: url('../images/web/AdobeStock_1411655019.webp'); }
.cta-glass-f { --cta-glass: url('../images/web/AdobeStock_1496918787.webp'); }
.cta-glass-g { --cta-glass: url('../images/web/AdobeStock_1575578270.webp'); }
.cta-glass-h { --cta-glass: url('../images/web/AdobeStock_1786351360.webp'); }
.cta-glass-i { --cta-glass: url('../images/web/AdobeStock_1792507779.webp'); }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: var(--cta-glass); background-size: cover; background-position: center; opacity: 0.13; pointer-events: none; }
.cta-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(0,184,230,0.16), transparent 34%), radial-gradient(circle at bottom right, rgba(200,154,74,0.10), transparent 28%); pointer-events: none; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 18px; }
.cta-content p { font-size: 1.02rem; color: rgba(255,255,255,0.68); margin-bottom: 34px; line-height: 1.8; }
.footer { background: #000F17; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 20px 0 28px; max-width: 320px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: white; }
.footer-logo { height: 38px; width: auto; display: block; }
.footer-logo-link { display: inline-block; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.footer-social a:hover { background: var(--teal); color: white; border-color: var(--teal); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; transition: all 0.2s; }
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.30); }
.footer-badges { display: flex; gap: 16px; align-items: center; }
.footer-cert { display: flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); }
.footer-cert svg { width: 12px; height: 12px; color: var(--sky); }
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.anim.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.cal-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.cal-drawer-overlay.active { opacity: 1; visibility: visible; }
.cal-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 560px; max-width: 95vw; background: #fff; z-index: 9999; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); box-shadow: -12px 0 48px rgba(0,52,75,0.18); display: flex; flex-direction: column; }
.cal-drawer.active { transform: translateX(0); }
.cal-drawer-header { padding: 24px 28px; border-bottom: 1px solid rgba(0,52,75,0.10); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; background: #fff; }
.cal-drawer-header h3 { font-size: 1.1rem; font-weight: 700; color: #0A1A26; margin: 0; }
.cal-drawer-header p { font-size: 0.82rem; color: #7A8E9A; margin: 4px 0 0; }
.cal-drawer-close { width: 36px; height: 36px; border-radius: 8px; background: #F4F8FA; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #4A5C6A; transition: all 0.2s; flex-shrink: 0; }
.cal-drawer-close:hover { background: #00344B; color: #fff; }
.cal-drawer-body { flex: 1; overflow-y: auto; padding: 0; }
.cal-drawer-body .meetings-iframe-container { height: 100%; min-height: 600px; }
.cal-drawer-body iframe { width: 100% !important; min-height: 600px !important; border: none; }
@media (max-width: 1080px) {
  .hero-highlights, .capabilities-grid, .capabilities-grid.capabilities-grid-4, .related-grid, .solutions-grid, .solutions-grid.solutions-grid-4, .offer-grid, .summary-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container, .header-inner { padding: 0 20px; }
  /* Mobile nav layout/dropdown rules live in /css/mobile-nav.css — do not
     duplicate them here. Earlier rules in this file had higher specificity
     than the shared mobile-nav.css and broke accordion expand/collapse. */
  .page-hero { padding: 140px 0 72px; min-height: 420px; }
  .page-hero h1 { font-size: 2.2rem; }
  .hero-highlights, .capabilities-grid, .capabilities-grid.capabilities-grid-4, .related-grid, .solutions-grid, .solutions-grid.solutions-grid-4, .offer-grid, .summary-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .cal-drawer { width: 100%; max-width: 100%; }
}

/* CREDIT UNION PROOF BAND (financial-services) + USPS PROOF BAND (print-mail / data-services) */
.cu-proof-band, .usps-proof-band { background: var(--grad-brand); padding: 72px 0; color: white; }
.cu-proof-header, .usps-proof-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.cu-proof-header .section-eyebrow, .usps-proof-header .section-eyebrow { color: var(--gold-light); margin-bottom: 14px; justify-content: center; }
.cu-proof-header .section-eyebrow::before, .usps-proof-header .section-eyebrow::before { background: var(--gold-light); }
.cu-proof-header h3, .usps-proof-header h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); color: white; font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
.cu-proof-header p, .usps-proof-header p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.65; }
.cu-proof-grid, .usps-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1080px; margin: 0 auto; }
.cu-stat, .usps-stat { text-align: center; padding: 8px 18px; border-right: 1px solid rgba(255,255,255,0.10); }
.cu-stat:last-child, .usps-stat:last-child { border-right: none; }
.cu-stat-num, .usps-stat-num { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; color: white; line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.cu-stat-num sup, .usps-stat-num sup { font-size: 1.3rem; vertical-align: top; }
.cu-stat-label, .usps-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; line-height: 1.4; }
@media (max-width: 900px) {
  .cu-proof-grid, .usps-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .cu-stat:nth-child(2), .usps-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .cu-proof-grid, .usps-proof-grid { grid-template-columns: 1fr; }
  .cu-stat, .usps-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding-bottom: 24px; }
  .cu-stat:last-child, .usps-stat:last-child { border-bottom: none; }
}

/* PARTNERSHIP / STEWARDSHIP CALLOUT (notched manifest) */
.usps-callout { position: relative; max-width: 920px; margin: 0 auto; background: rgba(0,52,75,0.16); clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%, 0 34px); padding: 1px; }
.usps-callout-inner { background: #FBF7F2; clip-path: polygon(33px 0, 100% 0, 100% 100%, 0 100%, 0 33px); padding: 40px 44px; }
.usps-callout-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
.usps-callout-eyebrow::before { content: ''; display: block; width: 9px; height: 9px; background: var(--gold); border-radius: 1px; flex-shrink: 0; }
.usps-callout h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 14px; }
.usps-callout p { font-size: 1rem; color: var(--text-body); line-height: 1.7; margin: 0; }
@media (max-width: 600px) {
  .usps-callout { clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px); }
  .usps-callout-inner { clip-path: polygon(23px 0, 100% 0, 100% 100%, 0 100%, 0 23px); padding: 28px 24px; }
}

/* FILE-PROCESSING FLOW (print-mail) */
.file-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin: 48px 0 24px; position: relative; }
.flow-step { text-align: center; padding: 0 14px; position: relative; }
.flow-step:not(:last-child)::after {
  content: ''; position: absolute; top: 28px; right: -10px; width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.flow-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-sky); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: var(--shadow-sm); }
.flow-icon svg { width: 24px; height: 24px; color: white; }
.flow-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.flow-step p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; margin: 0; }
@media (max-width: 900px) {
  .file-flow { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .flow-step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .file-flow { grid-template-columns: repeat(2, 1fr); }
}