/* ── AGGICORP.COM SHARED STYLES ─────────────────────────────── */
:root {
  --blue:       #1a4fcc;
  --blue-dark:  #0f3399;
  --blue-light: #e8f0ff;
  --gray:       #3d4457;   /* was #5a6070 */
  --dark:       #12132a;
  --white:      #ffffff;
  --off-white:  #f5f7fb;
  --border:     #dde3f0;
  --shadow:     0 4px 24px rgba(26,79,204,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  box-shadow: 0 2px 16px rgba(26,79,204,0.07);
}
.nav-logo img { height: 48px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--dark); padding: 8px 12px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; min-width: 270px;
  box-shadow: 0 8px 32px rgba(26,79,204,0.12); overflow: hidden;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 11px 18px; font-size: 13px;
  border-radius: 0; color: var(--dark); border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-menu .menu-divider {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  padding: 10px 18px 4px; background: var(--off-white);
  cursor: default; pointer-events: none;
}
.nav-social { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.nav-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.2s;
}
.nav-social a:hover { background: var(--blue); color: var(--white); }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  border-radius: 8px !important; padding: 9px 18px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.mob-toggle {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--dark); padding: 8px;
}
.mob-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto;
  padding: 20px 24px;
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block; padding: 14px 0; font-size: 15px; font-weight: 500;
  color: var(--dark); border-bottom: 1px solid var(--border);
}
.mob-menu a:hover { color: var(--blue); }
.mob-menu .mob-cta {
  display: block; margin-top: 20px;
  background: var(--blue); color: var(--white) !important;
  text-align: center; padding: 14px; border-radius: 8px; font-weight: 600;
}

/* ── HERO (full-page, edge-to-edge) ─────────────────────────── */
.hero {
  margin-top: 72px; position: relative;
  height: calc(100vh - 72px); min-height: 520px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,80,0.85) 0%, rgba(26,79,204,0.50) 100%);
}
.slide-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); max-width: 820px; padding: 0 32px;
}
.slide-content .badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 20px;
  padding: 6px 18px; font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(4px);
}
.slide-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.13; margin-bottom: 18px;
}
.slide-content p {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  opacity: 0.9; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.carousel-controls {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
  border: none;
}
.dot.active { background: var(--white); transform: scale(1.2); }
.carousel-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; backdrop-filter: blur(6px);
}
.carousel-arrow:hover { background: rgba(255,255,255,0.25); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--white); color: var(--blue);
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: all 0.2s; border: 2px solid var(--white);
  display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-weight: 500; font-size: 14px; letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-blue {
  background: var(--blue); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: all 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-white {
  background: var(--white); color: var(--blue);
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: all 0.2s;
  display: inline-block;
}
.btn-white:hover { background: var(--blue-light); }
.btn-ghost {
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 8px; font-weight: 500; font-size: 14px;
  border: 2px solid rgba(255,255,255,0.4); transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); }

/* ── SECTION COMMONS ────────────────────────────────────────── */
section { padding: 80px 0; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 700; color: var(--dark); margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1.07rem; color: var(--gray); line-height: 1.8;
  max-width: 620px;
}
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.content-section { padding: 72px 0; }
.content-section.alt { background: var(--off-white); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  color: var(--white); text-align: center; padding: 72px 40px 64px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em;
}
.page-hero p { font-size: 1.1rem; opacity: 0.88; max-width: 660px; margin: 0 auto; line-height: 1.75; }

/* ── TAGLINE STRIP ──────────────────────────────────────────── */
.tagline-strip {
  background: var(--blue); color: var(--white);
  text-align: center; padding: 18px 40px;
  font-size: 1rem; font-weight: 300; letter-spacing: 0.05em;
}
.tagline-strip strong { font-weight: 600; }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 48px;
}
.service-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,79,204,0.15); }
.card-visual {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; background: linear-gradient(135deg, var(--dark), var(--blue-dark));
}
.card-body { padding: 24px 26px 28px; }
.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700; margin-bottom: 10px; color: var(--dark);
}
.card-body p { font-size: 0.97rem; color: var(--gray); line-height: 1.75; margin-bottom: 18px; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; font-size: 13.5px; transition: gap 0.2s;
}
.read-more:hover { gap: 10px; }

/* ── FEATURE LIST ───────────────────────────────────────────── */
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 1rem; line-height: 1.65; color: var(--gray);
}
.feature-list li .fi {
  min-width: 28px; height: 28px; border-radius: 6px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; color: var(--blue); font-size: 13px; margin-top: 1px;
}

/* ── WHY AGGI ───────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 48px;
}
.why-text .section-sub { max-width: 100%; margin-bottom: 28px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.stat-box {
  background: var(--blue-light); border-radius: 12px;
  padding: 22px 20px; text-align: center;
}
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--blue); display: block;
}
.stat-box .lbl { font-size: 12px; color: var(--gray); font-weight: 500; letter-spacing: 0.06em; }
.why-visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  border-radius: 18px; padding: 44px 36px; color: var(--white);
}
.why-visual h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; margin-bottom: 20px;
}
.why-points { list-style: none; }
.why-points li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.97rem; line-height: 1.65; opacity: 0.95;
}
.why-points li::before {
  content: '✓'; background: rgba(255,255,255,0.2);
  border-radius: 50%; width: 22px; height: 22px; min-width: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 1px;
}

/* ── SECURITY EVOLUTION STRIP ───────────────────────────────── */
.evolution-strip {
  background: var(--dark); color: var(--white);
  padding: 64px 0; overflow: hidden;
}
.evolution-track {
  display: flex; align-items: stretch; gap: 0;
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
}
.evolution-step {
  flex: 1; padding: 32px 28px; position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.evolution-step:last-child { border-right: none; }
.evolution-year {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.evolution-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.evolution-step p { font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.evolution-step.active-step { background: rgba(26,79,204,0.25); border-radius: 10px; }
.evolution-step.active-step h4 { color: #a8c4ff; }

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.industries-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px; margin-top: 48px;
}
.ind-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 16px; text-align: center;
  transition: all 0.25s; cursor: pointer;
}
.ind-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(26,79,204,0.12); transform: translateY(-3px); }
.ind-card .icon { font-size: 2rem; margin-bottom: 12px; }
.ind-card span { font-size: 13px; font-weight: 500; color: var(--dark); }

/* ── CTA BAND (full bleed) ──────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
  color: var(--white); text-align: center; padding: 80px 40px;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 14px;
}
.cta-band p { font-size: 1rem; opacity: 0.85; margin-bottom: 32px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-top: 48px;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 20px;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.contact-item .ci-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 16px;
}
.contact-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.contact-item strong { color: var(--dark); font-weight: 600; display: block; margin-bottom: 2px; }
.contact-form-box {
  background: var(--off-white); border-radius: 16px;
  border: 1px solid var(--border); padding: 36px;
}
.contact-form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: 0.08em; display: block; margin-bottom: 6px; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: 'Jost', sans-serif; font-size: 14px; color: var(--dark);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: var(--blue); color: var(--white);
  padding: 13px; border-radius: 8px; border: none;
  font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--blue-dark); }
.form-success {
  display: none; background: #d4edda; border: 1px solid #c3e6cb;
  border-radius: 8px; padding: 16px; margin-top: 14px;
  color: #155724; font-size: 14px;
}
.form-success.show { display: block; }

/* ── SERVICE VISUAL PANELS ──────────────────────────────────── */
.service-visual {
  border-radius: 18px; min-height: 340px;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.sv-sec  { background: linear-gradient(135deg, #0f2060, #1a4fcc); }
.sv-iot  { background: linear-gradient(135deg, #0d2040, #1e5fa0); }
.sv-net  { background: linear-gradient(135deg, #0a1830, #0f3399); }
.sv-safe { background: linear-gradient(135deg, #1a0a40, #4a1acc); }
.sv-dt   { background: linear-gradient(135deg, #0a2020, #0a6060); }
.sv-pt   { background: linear-gradient(135deg, #1a1a0a, #4a4a10); }

/* ── TECH STACK ─────────────────────────────────────────────── */
.ts-section { margin-bottom: 52px; }
.ts-section-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(26,79,204,0.12);
}
.ts-section-icon { font-size: 1.6rem; }
.ts-section-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700; color: var(--dark); margin: 0;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}
.tool-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 20px 12px;
  background: var(--white); border: 1px solid rgba(26,79,204,0.1);
  border-radius: 12px; transition: all 0.25s; text-align: center;
}
.tool-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(26,79,204,0.12);
  transform: translateY(-3px);
}
.tool-icon { width: 48px; height: 48px; object-fit: contain; }
.tool-icon-text {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.tool-name { font-size: 0.78rem; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ── CAREERS ────────────────────────────────────────────────── */
.careers-box {
  background: var(--blue-light); border: 1px solid #c5d8ff;
  border-radius: 16px; padding: 44px; margin-top: 40px; text-align: center;
}
.careers-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; margin-bottom: 14px;
}
.careers-box p { color: var(--gray); max-width: 560px; margin: 0 auto 16px; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
}
.footer-brand img { height: 44px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 14px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13.5px; color: rgba(255,255,255,0.7);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-social { display: none; }
  .mob-toggle { display: block; }
  .why-grid, .contact-grid, .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .evolution-track { flex-direction: column; }
  .evolution-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .evolution-step:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .content-section { padding: 52px 0; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tools-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
  .tool-card { padding: 14px 8px; }
  .tool-icon { width: 38px; height: 38px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 52px 20px 44px; }
}

/* ── ASSESSMENT CALLOUT BAR (appears on all service page heroes) ── */
.assessment-callout-bar {
  background: rgba(10, 20, 60, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 196, 255, 0.22);
  border-radius: 12px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 100%;
  flex-wrap: wrap;
}
.acb-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8c4ff;
  white-space: nowrap;
}
.acb-divider {
  width: 1px;
  height: 20px;
  background: rgba(168,196,255,0.25);
  flex-shrink: 0;
}
.acb-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.acb-link {
  font-size: 12px;
  font-weight: 600;
  color: #a8c4ff;
  background: rgba(168,196,255,0.12);
  border: 1px solid rgba(168,196,255,0.3);
  border-radius: 6px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.acb-link:hover {
  background: rgba(168,196,255,0.22);
  color: var(--white);
}
@media (max-width: 700px) {
  .assessment-callout-bar { padding: 10px 14px; gap: 10px; }
  .acb-title { font-size: 12px; }
  .acb-divider { display: none; }
}

