/* ============================================================
   CyberOptik Reviews — mockup stylesheet
   Identity: deep navy, bright green accent, white surfaces,
   friendly rounded-modern type. No gradients.
   ============================================================ */

:root {
  /* Brand */
  --navy:        #0a2646;
  --navy-800:    #0d2b4e;
  --navy-700:    #123a63;
  --navy-line:   rgba(255,255,255,0.14);
  --green:       #4faa2e;
  --green-600:   #438f28;
  --green-500:   #5bbd3f;

  /* Surfaces */
  --white:       #ffffff;
  --paper:       #f6f8fa;
  --paper-2:     #eef2f6;
  --ink:         #14263a;
  --ink-2:       #3d4f61;
  --ink-3:       #61718200;
  --muted:       #5a6b7b;
  --line:        #dbe2e9;
  --star:        #f5b301;

  /* Type */
  --font-display: "Cabinet Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    "General Sans", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(10,38,70,.06), 0 4px 12px rgba(10,38,70,.05);
  --shadow-md: 0 8px 30px rgba(10,38,70,.09);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }
img,svg { display: block; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--green); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 4px;
}
.hero :focus-visible, .section--navy :focus-visible, .section--themes :focus-visible, .section--cta :focus-visible {
  outline-color: #7fd45f;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  min-height: 46px; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-accent { background: var(--green); color: #fff; }
.btn-accent:hover { background: var(--green-600); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button-row--center { justify-content: center; }

/* ---------- Eyebrows ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600;
  color: var(--green-500); margin: 0 0 .8rem;
}
.eyebrow--dark { color: var(--green-600); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--green);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(3,15,30,.35); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: -0.02em; }
.brand-name-a { color: var(--green-500); }
.brand-name-b { color: #fff; }
.brand-dot { color: var(--green-500); }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  color: #dbe6f2; text-decoration: none; font-weight: 500; font-size: .98rem;
  padding: .4rem 0; position: relative;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a[aria-current="page"] { color: #fff; }
.primary-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--green-500);
}
.header-actions { display: flex; align-items: center; gap: .9rem; }
.header-actions .btn { padding: .6rem 1.25rem; min-height: 42px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--navy-line); border-radius: 10px;
  align-items: center; justify-content: center; cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: sticky; top: 79px; z-index: 90;
  background: var(--navy-800); border-bottom: 1px solid var(--navy-line);
}
.mobile-menu ul { list-style: none; margin: 0; padding: .5rem 0; }
.mobile-menu a { display: block; color: #dbe6f2; text-decoration: none; font-weight: 500; padding: .95rem var(--gutter); font-size: 1.05rem; }
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.05); }
.mobile-menu .btn { margin: .8rem var(--gutter) 1.3rem; width: calc(100% - var(--gutter)*2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(2.2rem, 6vw, 4.2rem) clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
/* restrained line motif */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: .5; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 940px; }
.crumbs ol { list-style: none; display: flex; gap: .6rem; padding: 0; margin: 0 0 1.8rem; font-size: .88rem; color: #9fb4c9; }
.crumbs a { color: #9fb4c9; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: #fff; }

.hero h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); font-weight: 800; margin-bottom: 1.1rem; }
.hero-lede { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: #cddbea; max-width: 62ch; }

.metric-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.metric-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.5rem;
}
.metric-card--total { background: var(--navy-700); }
.metric-platform { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: #cddbea; font-size: 1rem; margin-bottom: .6rem; }
.metric-value { font-family: var(--font-display); font-weight: 800; font-size: 2.9rem; line-height: 1; color: #fff; }
.metric-suffix { font-size: 1.3rem; color: #8fa6bd; font-weight: 600; margin-left: .1rem; }
.metric-detail { color: #9fb4c9; font-size: .92rem; margin-top: .5rem; }
.metric-detail--strong { color: #dfe9f3; font-weight: 600; font-size: 1rem; }
.metric-card--total .metric-value { color: var(--green-500); }

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex: none; }
.dot-google { background: #4285f4; box-shadow: 3px 0 0 -1px #ea4335, -3px 0 0 -1px #34a853; }
.dot-clutch { background: #17313b; box-shadow: 0 0 0 2px #ff3d2e inset; }

.stars { display: inline-flex; gap: 2px; margin-top: .6rem; }
.stars svg { width: 22px; height: 22px; color: var(--star); }
.stars--sm svg { width: 17px; height: 17px; }

.verify-note {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem; font-size: .9rem; color: #9fb4c9;
}
.verify-icon { width: 18px; height: 18px; color: var(--green-500); flex: none; }
.hero .button-row { margin-top: 2rem; }

/* ============================================================
   SECTION SCAFFOLD + rhythm
   ============================================================ */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; margin-bottom: .9rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 64ch; }
.section-head--dark h2, .section-sub--dark { color: #eaf1f8; }
.section-sub--dark { color: #b8c8d8; }
.section-foot { margin-top: 2.2rem; }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }

/* Intro (white) */
.section--intro { background: var(--white); border-bottom: 1px solid var(--line); }
.section--paper { background: var(--paper); }
.intro-head { grid-column: 1 / 6; }
.intro-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.intro-body { grid-column: 7 / 13; display: flex; flex-direction: column; gap: 1.1rem; }
.intro-body p { color: var(--ink-2); font-size: 1.08rem; max-width: 66ch; }

/* Featured (navy) */
.section--navy { background: var(--navy); color: #fff; }
.section--navy .section-head h2 { color: #fff; }
.section--navy .section-sub { color: #b8c8d8; }
.section--navy .prose p { color: #d0dbe6; }
.section--navy .prose { color: #d0dbe6; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testimonial-card {
  background: var(--navy-800); border: 1px solid var(--navy-line);
  border-radius: var(--radius); padding: 1.6rem 1.6rem 1.7rem; margin: 0;
  display: flex; flex-direction: column;
}
.testimonial-card blockquote { margin: .9rem 0 0; }
.testimonial-card blockquote p { color: #dfe9f3; font-size: 1rem; line-height: 1.62; }
.testimonial-card figcaption { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--navy-line); }
.testimonial-card figcaption strong { display: block; color: #fff; font-size: 1rem; font-weight: 600; }
.testimonial-card figcaption span { display: block; color: #93a8bd; font-size: .87rem; margin-top: .15rem; }

.link-external, .link-internal {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; text-decoration: none; color: var(--green-500);
}
.section--navy .link-external { color: #7fd45f; }
.link-external:hover, .link-internal:hover { text-decoration: underline; }
.link-internal { color: var(--green-600); }
.ext-icon { width: 16px; height: 16px; }
.link-internal svg { width: 18px; height: 18px; transition: transform .18s ease; }
.link-internal:hover svg { transform: translateX(3px); }

/* Themes (deep navy, alt tone) */
.section--themes { background: #071d38; color: #fff; }
.theme-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--navy-line); border-radius: var(--radius); overflow: hidden;
}
.theme-item {
  padding: 1.9rem 1.7rem;
  border-right: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}
.theme-grid .theme-item:nth-child(3n) { border-right: none; }
.theme-grid .theme-item:nth-last-child(-n+3) { border-bottom: none; }
.theme-num { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--green-500); letter-spacing: .05em; }
.theme-item h3 { font-size: 1.2rem; font-weight: 600; margin: .5rem 0 .55rem; color: #fff; }
.theme-item p { color: #a9bccd; font-size: .96rem; max-width: 40ch; }

/* Accountability (paper) */
.section--accountability { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.acct-copy { grid-column: 1 / 7; }
.acct-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; margin-bottom: 1.1rem; }
.acct-copy p { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 1rem; max-width: 60ch; }
.leadership-quote {
  grid-column: 8 / 13; margin: 0; align-self: center;
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 1.9rem 1.9rem 1.7rem; border: 1px solid var(--navy-line);
}
.proposed-tag {
  display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: #0a2646; background: var(--star); padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.leadership-quote blockquote { margin: 0; }
.leadership-quote blockquote p { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; line-height: 1.4; color: #fff; }
.leadership-quote figcaption { margin-top: 1.2rem; color: #9fb4c9; font-size: .88rem; }

/* Service (white) */
.section--service { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .7rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  text-decoration: none; color: inherit;
}
.service-card:hover { border-color: #c3d0dc; box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.service-card h3 { font-size: 1.18rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.service-card p { color: var(--ink-2); font-size: .98rem; flex: 1; text-decoration: none; }
.service-card .link-internal { margin-top: .2rem; }
.service-card:hover .link-internal { text-decoration: underline; }

/* Dark variant for navy sections */
.service-card--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  gap: .55rem;
}
.service-card--dark:hover { border-color: rgba(255,255,255,.28); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.service-card--dark h3 { color: #ffffff; }
.service-card--dark p { color: #dfe9f3; flex: none; }
.service-card--dark p + p { margin-top: .35rem; }

/* Sources (paper) */
.section--sources { background: var(--paper); border-top: 1px solid var(--line); }
.source-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.source-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; }
.source-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.source-head .dot { width: 13px; height: 13px; }
.source-head h3 { font-size: 1.4rem; font-weight: 700; }
.source-rating { color: var(--ink-2); font-size: 1.05rem; }
.source-rating strong { color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; }
.source-card .stars { margin: .7rem 0 1.4rem; }
.link-external--block {
  padding: .7rem 1.1rem; border: 1.5px solid var(--line); border-radius: 999px;
  color: var(--ink); background: #fff;
}
.link-external--block:hover { border-color: var(--green); color: var(--green-600); text-decoration: none; }

/* FAQ (white) */
.section--faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-head { grid-column: 1 / 5; }
.faq-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.faq-list { grid-column: 6 / 13; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-600); }
.chevron { width: 22px; height: 22px; color: var(--green-600); flex: none; transition: transform .25s ease; }
.faq-item[open] .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 1.35rem; }
.faq-answer p { color: var(--ink-2); max-width: 68ch; font-size: 1rem; }

/* CTA (navy) */
.section--cta { background: var(--navy); color: #fff; text-align: center; }
.cta-inner { max-width: 720px; margin-inline: auto; }
.section--cta h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 1rem; }
.section--cta p { color: #cddbea; font-size: 1.1rem; margin-bottom: 1.8rem; max-width: 60ch; margin-inline: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #071d38; color: #9fb4c9; padding-block: 2.5rem; border-top: 3px solid var(--green); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: flex-start; justify-content: space-between; }
.footer-brand { max-width: 42ch; }
.footer-brand .brand { margin-bottom: .8rem; }
.footer-brand p { font-size: .95rem; }
.footer-note { font-size: .85rem; color: #7d93a8; max-width: 44ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .primary-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-card--total { grid-column: 1 / -1; }
  .testimonial-grid, .service-grid, .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-grid .theme-item:nth-child(3n) { border-right: 1px solid var(--navy-line); }
  .theme-grid .theme-item:nth-child(2n) { border-right: none; }
  .theme-grid .theme-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--navy-line); }
  .theme-grid .theme-item:nth-last-child(-n+2) { border-bottom: none; }
  .intro-head, .intro-body, .acct-copy, .leadership-quote, .faq-head, .faq-list { grid-column: 1 / -1; }
  .intro-head { margin-bottom: .4rem; }
}
@media (min-width: 941px) { .mobile-menu { display: none !important; } }

@media (max-width: 620px) {
  body { font-size: 16px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-card--total { grid-column: auto; }
  .testimonial-grid, .service-grid, .source-grid { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-grid .theme-item { border-right: none !important; border-bottom: 1px solid var(--navy-line) !important; }
  .theme-grid .theme-item:last-child { border-bottom: none !important; }
  .button-row .btn { flex: 1 1 auto; }
}

/* ============================================================
   SHARED COMPONENTS FOR SECONDARY PAGES
   (Security & Ethics, Ron Johnson, Awards & Recognition)
   ============================================================ */

/* ---- Compact page hero (non-home) ---- */
.page-hero {
  background: var(--navy); color: #fff;
  padding-block: clamp(2.4rem, 6vw, 4rem) clamp(2.6rem, 6vw, 4rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero .hero-lede { color: #cddbea; font-size: clamp(1.05rem, 2.2vw, 1.2rem); max-width: 64ch; }
.page-hero .button-row { margin-top: 1.8rem; }

/* Hero with proof strip above the fold */
.page-hero--with-proof .page-hero-inner { max-width: 1120px; }
.page-hero--with-proof { padding-bottom: 3.5rem; }
.hero-proof { margin-top: 2.6rem; }
.hero-proof .metric-row { margin-top: 0; }
.metric-card--hero { padding: 1.25rem 1.4rem 1.4rem; }
.metric-card--hero .metric-value { font-size: 2.4rem; }
.verify-note--hero { color: #9fb4c9; font-size: .9rem; margin-top: 1rem; text-align: left; }
@media (max-width: 780px) {
  .hero-proof .metric-row { grid-template-columns: 1fr; }
}

/* ---- Long-form prose ---- */
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 1rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 2rem 0 .7rem; }
.prose p { color: var(--ink-2); font-size: 1.06rem; margin: 0 0 1.1rem; }
.prose ul { margin: 0 0 1.4rem; padding-left: 0; list-style: none; display: grid; gap: .7rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--ink-2); font-size: 1.02rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px;
  border-radius: 2px; background: var(--green); transform: rotate(45deg);
}
.prose ul li strong { color: var(--ink); }
.prose a { color: var(--green-600); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--green); }

/* Full-width long-form page without sidebar navigation */
.prose-layout { max-width: 980px; }
.prose-wide { max-width: none; }
.prose-wide > p,
.prose-wide > .callout { max-width: 78ch; }

/* Security page icon system */
.heading-with-icon {
  display: flex; align-items: center; gap: .85rem;
  padding-top: 1rem;
}
.heading-icon {
  width: 42px; height: 42px; flex: 0 0 42px;
  display: grid; place-items: center;
  color: var(--green-600); background: #f2f8ef;
  border: 1px solid #d9ead3; border-radius: 10px;
}
.heading-icon svg {
  width: 23px; height: 23px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.prose .icon-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem; margin: 1.4rem 0 1.8rem;
}
.prose .icon-list li {
  display: block; padding: 1.05rem 1.15rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); line-height: 1.55;
}
.prose .icon-list li strong { display: block; margin-bottom: .2rem; color: var(--ink); }
/* Icon variant: if an .list-icon is present as first child, restore the two-col grid */
.prose .icon-list li:has(> .list-icon) {
  display: grid; grid-template-columns: 36px 1fr; gap: .85rem;
  align-items: start;
}
.prose .icon-list li:has(> .list-icon) strong { display: inline; margin-bottom: 0; }
/* Dark section variant: white card on navy = keep light bg + dark text */
.section--navy .prose .icon-list li,
.section-head--dark ~ * .prose .icon-list li {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color: inherit;
}
.section--navy .prose .icon-list li strong { color: #ffffff; }
.prose .icon-list li::before,
.prose .check-list li::before { display: none; }
.list-icon {
  width: 28px; height: 28px; padding: 5px;
  color: var(--green-600); background: #fff;
  border: 1px solid #d9ead3; border-radius: 8px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.prose .icon-list li span { min-width: 0; }
.prose .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1.5rem; margin: 1.2rem 0 1.7rem;
}
.prose .check-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: .65rem;
  align-items: start; padding: .45rem 0;
}
.check-icon {
  width: 21px; height: 21px; margin-top: 1px;
  color: var(--green-600); fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

/* Two-column layout for prose pages: sticky aside + content */
.layout-aside { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.6rem, 4vw, 3.2rem); }
.layout-aside .aside { grid-column: 1 / 4; }
.layout-aside .content { grid-column: 5 / 13; }
.aside-card {
  position: sticky; top: 100px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
}
.aside-card h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 1rem; font-family: var(--font-body); font-weight: 600; }
.aside-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.aside-nav a { display: block; padding: .5rem .6rem; border-radius: 8px; text-decoration: none; color: var(--ink-2); font-size: .96rem; font-weight: 500; }
.aside-nav a:hover { background: #fff; color: var(--green-600); }

/* Callout box (e.g. "no guarantee" statement) */
.callout {
  border: 1px solid var(--line); border-left: none;
  background: var(--paper); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin: 1.6rem 0; color: var(--ink-2); font-size: 1.02rem;
}
.callout strong { color: var(--ink); }

/* ---- Author page ---- */
.author-head { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.6rem, 4vw, 2.6rem); align-items: center; }
.author-portrait { grid-column: 1 / 4; }
.author-intro { grid-column: 5 / 13; }
.portrait-card {
  aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  background: var(--navy-800); border: 1px solid var(--navy-line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  color: #fff; text-align: center; padding: 1rem;
}
.portrait-initials { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; color: var(--green-500); line-height: 1; }
.portrait-label { font-size: .74rem; color: #9fb4c9; letter-spacing: .04em; max-width: 22ch; }
.author-intro .job-title { color: var(--green-500); font-weight: 600; font-size: 1.05rem; margin: .3rem 0 1rem; }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.stat-strip--three { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.stat-strip li { }
.stat-strip .stat-value { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--ink); line-height: 1; }
.stat-strip--three .stat-value { font-size: clamp(2rem, 3.5vw, 2.6rem); }
.section--navy .stat-strip .stat-value { color: #fff; }
.stat-strip .stat-label { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.stat-strip--three .stat-label { font-size: .95rem; margin-top: .5rem; }
.section--navy .stat-strip .stat-label { color: #9fb4c9; }
@media (max-width: 640px) {
  .stat-strip--three { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* Proof bar: reusable stats bar section for cross-page use */
.proof-bar { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.4rem 0; }
.proof-bar .proof-bar-inner { max-width: 900px; margin-inline: auto; }
.proof-bar .eyebrow { text-align: center; margin-bottom: 1.4rem; }

/* Two-column info lists (expertise, topics, credentials) */
.col-list { columns: 2; column-gap: 2.5rem; margin: 0; padding: 0; list-style: none; }
.col-list li { break-inside: avoid; padding: .5rem 0 .5rem 1.6rem; position: relative; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.col-list li::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 7px; height: 7px; background: var(--green); border-radius: 2px; transform: rotate(45deg); }

.chip-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.chip-list li { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .95rem; font-size: .92rem; color: var(--ink-2); }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 1.8rem 2.4rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--green); }
.timeline .t-year { font-family: var(--font-display); font-weight: 700; color: var(--green-600); font-size: .95rem; letter-spacing: .03em; }
.timeline h3 { font-size: 1.15rem; font-weight: 600; margin: .2rem 0 .5rem; }
.timeline p { color: var(--ink-2); margin: 0; max-width: 60ch; }

/* Article cards */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.article-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; text-decoration: none;
}
.article-card:hover { border-color: #c3d0dc; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.article-card p { color: var(--ink-2); font-size: .95rem; flex: 1; }
.article-card .read-on { color: var(--green-600); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; }
.article-card .read-on svg { width: 16px; height: 16px; }

/* Presentation cards */
.pres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.pres-card { background: var(--navy-800); border: 1px solid var(--navy-line); border-radius: var(--radius); padding: 1.5rem; }
.pres-card h3 { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: .6rem; }
.pres-card p { color: #b8c8d8; font-size: .95rem; }

/* Professional links */
.link-tiles { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.link-tiles a {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .6rem 1.1rem; text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem;
}
.link-tiles a:hover { border-color: var(--green); color: var(--green-600); }
.link-tiles svg { width: 15px; height: 15px; color: var(--muted); }
.link-tiles a:hover svg { color: var(--green-600); }

/* ---- Awards page ---- */
.award-feature {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 4vw, 2.6rem); align-items: center;
  background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--navy-line);
}
.award-badge { grid-column: 1 / 4; }
.award-body { grid-column: 5 / 13; }
.badge-plate {
  aspect-ratio: 1 / 1; max-width: 220px; margin-inline: auto;
  border: 2px solid var(--green-500); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .3rem; padding: 1.2rem;
  background: var(--navy-800);
}
.badge-plate .badge-year { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--green-500); line-height: 1; }
.badge-plate .badge-org { font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: .02em; }
.badge-plate .badge-tag { font-size: .8rem; color: #9fb4c9; }
.award-body .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600; color: var(--green-500); margin: 0 0 .6rem; }
.award-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.award-body p { color: #cddbea; margin-bottom: 1rem; max-width: 60ch; }
.award-body blockquote { margin: 1.2rem 0; padding-left: 1.2rem; border-left: 3px solid var(--green-500); }
.award-body blockquote p { font-family: var(--font-display); font-size: 1.1rem; color: #fff; font-style: italic; margin-bottom: .5rem; }
.award-body blockquote footer { color: #9fb4c9; font-size: .9rem; }

.directory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.directory-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; }
.directory-card .tag-directory {
  display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); background: var(--paper-2); border: 1px solid var(--line); padding: .28rem .7rem; border-radius: 999px; margin-bottom: .9rem;
}
.directory-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .6rem; }
.directory-card p { color: var(--ink-2); font-size: .98rem; margin-bottom: 1.1rem; }

/* ---- "Page Mockups" utility menu (footer) ---- */
.mockup-nav { background: #05162c; border-top: 1px solid var(--navy-line); }
.mockup-nav-inner { padding-block: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; }
.mockup-nav-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--star);
}
.mockup-nav-label::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--star); transform: rotate(45deg); }
.mockup-nav ul { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.mockup-nav a {
  display: inline-block; padding: .4rem .85rem; border-radius: 999px; text-decoration: none;
  color: #cddbea; font-size: .9rem; font-weight: 500; border: 1px solid var(--navy-line);
}
.mockup-nav a:hover { color: #fff; border-color: var(--green-500); }
.mockup-nav a[aria-current="page"] { color: #05162c; background: var(--star); border-color: var(--star); font-weight: 600; }

/* Section intros used on secondary pages */
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }

/* Responsive for secondary pages */
@media (max-width: 940px) {
  .layout-aside .aside, .layout-aside .content,
  .author-portrait, .author-intro,
  .award-badge, .award-body { grid-column: 1 / -1; }
  .aside-card { position: static; }
  .aside-card { display: none; }  /* hide sticky TOC on mobile; headings still in order */
  .author-portrait { max-width: 260px; }
  .article-grid, .pres-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .prose .icon-list,
  .prose .check-list { grid-template-columns: 1fr; }
  .heading-with-icon { align-items: flex-start; }
  .heading-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .col-list { columns: 1; }
  .article-grid, .pres-grid, .directory-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   NEW-COPY HIGHLIGHTING (mockup only — strip before production)
   Used to highlight rewritten text so the WP team can see at a glance
   which copy is new. Applies to <mark class="new"> elements.
   ============================================================ */
mark.new {
  background: #fff6a8;
  color: inherit;
  padding: 0.06em 0.28em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-bottom: 1px dashed #d4a72c;
}
/* On dark (navy) sections, use a softer yellow with legible ink text.
   Note: hero uses .page-hero class (not .hero) in these mockups. */
.section--navy mark.new,
.hero mark.new,
.page-hero mark.new,
.section--themes mark.new,
.section--cta mark.new,
.section--accountability mark.new {
  background: #fff2a0 !important;
  color: #14263a !important;
  border-bottom-color: #b98a1a !important;
}
/* Force dark ink on ALL descendants inside a highlighted block on dark sections,
   because H1/h2/p inside .page-hero inherit color:#fff from the container. */
.section--navy mark.new,
.section--navy mark.new *,
.page-hero mark.new,
.page-hero mark.new *,
.section--themes mark.new,
.section--themes mark.new *,
.section--cta mark.new,
.section--cta mark.new *,
.section--accountability mark.new,
.section--accountability mark.new * {
  color: #14263a !important;
}
/* Legend banner shown at top of each mockup */
.mockup-legend {
  position: sticky; top: 76px; z-index: 90;
  background: #fff9c4;
  color: #6b5010;
  border-bottom: 1px solid #e8d582;
  font-size: 0.9rem;
  padding: 0.55rem 0;
}
.mockup-legend .container {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  font-weight: 500;
}
.mockup-legend strong { color: #3b2c00; font-weight: 700; }
.mockup-legend .legend-swatch {
  display: inline-flex; align-items: center; gap: .35rem;
}
.mockup-legend .legend-swatch mark.new {
  padding: .1em .5em; font-weight: 700;
}

/* ============================================================
   WHY-CYBEROPTIK page-specific components
   ============================================================ */
.reasons-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.reason-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 1.4rem;
  padding: 1.6rem 1.8rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white);
}
.reason-item .reason-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--green); line-height: 1; letter-spacing: -.02em;
}
.reason-item h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.reason-item .reason-proof {
  margin-top: .8rem; padding-top: .8rem; border-top: 1px dashed var(--line);
  font-size: .95rem; color: var(--muted);
}
.reason-item .reason-proof strong { color: var(--ink); }
@media (max-width: 640px) {
  .reason-item { grid-template-columns: 1fr; gap: .6rem; padding: 1.3rem; }
  .reason-item .reason-num { font-size: 2rem; }
}

/* Optik Method timeline */
.method-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem;
}
@media (max-width: 900px) { .method-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .method-strip { grid-template-columns: 1fr; } }
.method-step {
  padding: 1.1rem 1.2rem; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid var(--navy-line);
  color: rgba(255,255,255,.9);
}
.method-step .step-num {
  font-family: var(--font-display); color: rgba(255,255,255,.35); font-weight: 500;
  font-size: .75rem; letter-spacing: .1em;
}
.method-step h4 { font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin: .3rem 0 .35rem; }
.method-step p { font-size: .9rem; color: rgba(255,255,255,.78); }

/* Method cards on light sections */
.section--sources .method-step,
.section--white .method-step,
.section--intro .method-step {
  background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.section--sources .method-step .step-num,
.section--white .method-step .step-num,
.section--intro .method-step .step-num {
  color: var(--muted);
}
.section--sources .method-step h4,
.section--white .method-step h4,
.section--intro .method-step h4 {
  color: var(--navy);
}
.section--sources .method-step p,
.section--white .method-step p,
.section--intro .method-step p {
  color: var(--ink);
}

/* Fit / not-fit two-column */
.fit-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem;
}
@media (max-width: 800px) { .fit-cols { grid-template-columns: 1fr; } }
.fit-col {
  padding: 1.8rem; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line);
  color: var(--ink);
}
.fit-col.fit-yes { border-top: 4px solid var(--green); }
.fit-col.fit-no { border-top: 4px solid #b04a3b; }
.fit-col h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--ink); }
.fit-col p { color: var(--muted); }
.fit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; color: var(--ink); }
.fit-list li { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; font-size: 1rem; color: var(--ink); }
.fit-list li strong { color: var(--ink); }
.fit-list .icon { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }
.fit-yes .icon { background: #e6f5df; color: var(--green-600); }
.fit-no .icon { background: #f5e0dc; color: #a44235; }
/* Ensure fit-cols stay readable when placed inside dark/navy sections */
.section--navy .fit-col,
.section--navy .fit-col h3,
.section--navy .fit-list,
.section--navy .fit-list li,
.section--navy .fit-list li strong { color: var(--ink); }
.section--navy .fit-col p { color: var(--muted); }

/* Receipts (proof) cards row — reuse service-grid but slightly punchier */
.receipts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
@media (max-width: 1000px) { .receipts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .receipts-grid { grid-template-columns: 1fr; } }
.receipt-card {
  padding: 1.5rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line);
  display: grid; gap: .55rem; text-align: left;
}
.receipt-card .big-number {
  font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--navy);
  letter-spacing: -.02em; line-height: 1;
}
.receipt-card h3 { font-size: 1.05rem; color: var(--ink); margin: 0; }
.receipt-card p { font-size: .95rem; color: var(--muted); }

/* Ron leadership quote (matches accountability card style) */
.ron-quote {
  display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; align-items: center;
  padding: 1.8rem; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line);
}
@media (max-width: 640px) {
  .ron-quote { grid-template-columns: 1fr; text-align: left; }
}
.ron-portrait {
  width: 120px; height: 120px; border-radius: 50%; background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
}
.ron-quote blockquote { margin: 0; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.45; color: var(--ink); }
.ron-quote figcaption { margin-top: .8rem; color: var(--muted); font-size: .95rem; }

/* Generic step-strip (used on service pages that need a light process visual) */
.process-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 800px) { .process-strip { grid-template-columns: 1fr; } }
.process-step {
  padding: 1.3rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line);
}
.process-step .step-num {
  font-family: var(--font-display); color: var(--green-600); font-weight: 700;
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
}
.process-step h3 { font-size: 1.1rem; margin: .35rem 0 .45rem; }
.process-step p { font-size: .95rem; color: var(--muted); }


/* Homepage version note inside hero (added for Tier 1 mockups) */
.mockup-note {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid var(--green-500);
  border-radius: 8px;
  padding: .6rem .95rem;
  margin-bottom: 1.1rem;
  font-size: .9rem;
  color: #e6eef7;
  max-width: 60ch;
}
.mockup-note strong { color: #fff; }

/* ==== Mockup Nav (injected for cross-set navigation) ==== */
.mockup-nav { background: #05162c; border-top: 1px solid var(--navy-line, rgba(255,255,255,0.14)); }
.mockup-nav-inner { padding-block: 1.8rem; display: flex; flex-direction: column; gap: 1.6rem; max-width: 1240px; margin: 0 auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.mockup-nav-group-block { display: flex; flex-direction: column; gap: .7rem; }
.mockup-nav-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--star, #f5b301);
}
.mockup-nav-label::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--star, #f5b301); transform: rotate(45deg); }
.mockup-nav-label--alt { color: #7dd3fc; }
.mockup-nav-label--alt::before { background: #7dd3fc; }
.mockup-nav ul { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.mockup-nav a {
  display: inline-flex; align-items: center; min-height: 40px; padding: .35rem .8rem; border-radius: 999px; text-decoration: none;
  color: #cddbea; font-size: .88rem; font-weight: 500; border: 1px solid var(--navy-line, rgba(255,255,255,0.14));
}
.mockup-nav a:hover { color: #fff; border-color: var(--green-500, #5bbd3f); }
.mockup-nav a[aria-current="page"] { color: #05162c; background: var(--star, #f5b301); border-color: var(--star, #f5b301); font-weight: 600; }
.mockup-nav-group { padding: .1rem .1rem .1rem 0; }
.mockup-nav-group span {
  display: inline-block; padding: .15rem 0; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: #7d92ab; border-bottom: 1px solid var(--navy-line, rgba(255,255,255,0.14));
}

/* =============== HOMEPAGE V2 -- CASE STUDIES, AWARDS, TEAM =============== */

/* Case study cards (featured results row) */
.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem;
}
.case-card {
  display: flex; flex-direction: column; gap: .55rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; text-decoration: none; color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.case-card:hover { border-color: #c3d0dc; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-industry {
  font-family: var(--font-display); text-transform: uppercase; font-size: .78rem;
  letter-spacing: .12em; font-weight: 700; color: var(--green-600);
}
.case-stat {
  font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1;
  color: var(--navy-800, #0b1e34); letter-spacing: -.02em; margin-top: .3rem;
}
.case-stat-unit { font-size: 2rem; color: var(--green-600); font-weight: 700; }
.case-stat-label {
  font-size: .95rem; color: var(--ink-2); font-weight: 500; margin-bottom: .4rem;
}
.case-card p { color: var(--ink-2); font-size: .95rem; margin: 0; flex: 1; }
.case-cta {
  color: var(--green-600); font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem;
}
.case-cta svg { width: 16px; height: 16px; transition: transform .18s ease; }
.case-card:hover .case-cta svg { transform: translateX(3px); }
@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-stat { font-size: 2.6rem; }
}

/* Section CTA row (centered, below grids) */
.section-cta-row { display: flex; justify-content: center; margin-top: 2rem; }
.section-cta-row--dark { --btn-fg: #fff; }

/* Ghost button (light bg) */
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--green-600); color: var(--green-600);
  background: rgba(91, 189, 63, .06); transform: translateY(-1px);
}
.btn-ghost svg { width: 18px; height: 18px; margin-left: .35rem; transition: transform .18s ease; }
.btn-ghost:hover svg { transform: translateX(3px); }
.btn-ghost-light svg { width: 18px; height: 18px; margin-left: .35rem; transition: transform .18s ease; }
.btn-ghost-light:hover svg { transform: translateX(3px); }

/* Service card -- interactive link variant */
.service-card--link { text-decoration: none; color: inherit; }
.service-card--link:hover { border-color: var(--green-600); }
.service-card--dark.service-card--link:hover { border-color: rgba(91, 189, 63, .55); }
.service-card-cta {
  color: var(--green-600); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .6rem;
}
.service-card-cta svg { width: 15px; height: 15px; transition: transform .18s ease; }
.service-card--link:hover .service-card-cta svg { transform: translateX(3px); }
.service-card--dark .service-card-cta { color: #a3e07f; }

/* Awards badge row */
.awards-section { text-align: center; }
.badge-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.75rem; margin-top: 1.75rem;
}
.badge-row img {
  height: 110px; width: auto; max-width: 130px;
  filter: none; opacity: .92; transition: opacity .2s ease, transform .2s ease;
}
.badge-row img:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 700px) {
  .badge-row { gap: 1.1rem; }
  .badge-row img { height: 82px; max-width: 96px; }
}

/* Team teaser grid */
.team-teaser-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.team-teaser-card {
  display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.team-teaser-card:hover { border-color: #c3d0dc; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-teaser-card img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  background: #f5f7fa;
}
@media (max-width: 900px) {
  .team-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .team-teaser-card img { height: 170px; }
}

/* Chip list -- link variant */
.chip-list li:has(a) { padding: 0; background: transparent; border: none; overflow: visible; }
.chip-list li a {
  display: inline-block; padding: .45rem .95rem; border-radius: 999px;
  color: var(--ink-2); text-decoration: none; font-size: .92rem;
  background: var(--paper); border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.chip-list li a:hover {
  background: var(--green-600); color: #fff; border-color: var(--green-600);
  transform: translateY(-1px);
}

/* 4-column service grid variant */
.service-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .service-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid--4 { grid-template-columns: 1fr; } }

/* Hero inline service links */
.hero-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid rgba(46, 179, 96, .55);
  transition: color .15s ease, border-color .15s ease;
}
.hero-link:hover { color: var(--green-500); border-bottom-color: var(--green-500); }

/* Combined reviews card (replaces the old total card in hero) */
.metric-card--reviews {
  background: var(--navy-700);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.metric-card--reviews .metric-value { color: var(--green-500); }
.metric-detail--platforms {
  font-size: .82rem;
  opacity: .78;
  letter-spacing: .02em;
  margin-top: .1rem;
}
.metric-review-cta {
  margin-top: auto;
  padding-top: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--green-500);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  transition: gap .15s ease, color .15s ease;
}
.metric-review-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform .15s ease;
}
.metric-review-cta:hover { color: #fff; }
.metric-review-cta:hover svg { transform: translateX(3px); }
@media (max-width: 780px) {
  .metric-card--reviews { grid-column: 1 / -1; }
}

/* Platform logo in review cards */
.metric-platform--logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1.02rem;
}
.metric-platform--logo .platform-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.metric-platform--logo span {
  line-height: 1;
}

/* ============ BATCH 3 additions ============ */

/* Google + Clutch PNG logos in review cards */
.platform-logo-img {
  height: 28px;
  width: auto;
  max-width: 130px;
  display: block;
  object-fit: contain;
}

/* Blue button variant */
.btn-blue {
  background: #1a73e8;
  color: #ffffff;
  border: 1px solid #1a73e8;
}
.btn-blue:hover {
  background: #1558b0;
  border-color: #1558b0;
  color: #ffffff;
}
.btn-blue svg {
  fill: currentColor;
}

/* Industry icon-card grid (replaces chip list) */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .industry-grid { grid-template-columns: 1fr; }
}
.industry-card {
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: 1.05rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.industry-card:hover {
  transform: translateY(-2px);
  border-color: #1a73e8;
  box-shadow: 0 4px 12px rgba(15,41,66,.08);
}
.industry-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a73e8;
}
.industry-icon svg {
  width: 100%;
  height: 100%;
}
/* Legacy stock icons (fill-based) need currentColor to inherit the blue */
.industry-icon svg:not([fill="none"]) {
  fill: currentColor;
}
.industry-name {
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--ink);
}

/* Service-card icons in the process section */
.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #1a73e8;
  margin-bottom: .75rem;
}
.service-card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.service-card--icon h3 { margin-top: 0; }

/* Prevent View All Industries button from wrapping */
.btn.btn-blue {
  white-space: nowrap;
}

/* Badge-style hero review cards (Google + Clutch use uploaded review badges) */
.metric-card--badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.review-badge-img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  max-height: 130px;
  object-fit: contain;
}
.metric-card--badge .metric-detail--strong {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
}

/* Expanded services grouped layout */
.services-group { margin: 2.5rem 0; }
.services-group:first-of-type { margin-top: 2rem; }
.services-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.services-group-head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: .01em;
}
.services-group-cta {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.services-group-cta:hover { color: #fff; }
.services-group-cta svg { width: 16px; height: 16px; }
.services-group .service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}

/* Migration tiles (small, all platforms) */
.migration-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px, 1fr)); gap:.5rem; }
.migration-tile { display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding:.75rem 1rem; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius:8px; color:#fff; text-decoration:none; transition:background .15s ease, border-color .15s ease, transform .15s ease; }
.migration-tile:hover { background:rgba(0,214,142,.08); border-color:rgba(0,214,142,.4); transform:translateY(-1px); }
.migration-tile-name { font-weight:600; font-size:.95rem; }
.migration-tile-arrow { opacity:.5; font-size:1.1rem; }
.migration-tile:hover .migration-tile-arrow { opacity:1; color:#00d68e; }

/* Verified reviews card CTA stack */
.metric-cta-stack { display:flex; flex-direction:column; gap:.4rem; margin-top:.75rem; }
.metric-cta-stack .metric-review-cta { margin-top:0; }

/* Hero proof bar (redesigned — replaces 3-card layout) */
.proof-bar { margin-top:2.6rem; display:flex; align-items:center; justify-content:space-between; gap:2rem; padding:1.1rem 1.5rem; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:12px; flex-wrap:wrap; }
.proof-bar-left { display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; }
.proof-rating { display:flex; align-items:center; gap:.55rem; }
.proof-rating-platform { font-weight:600; color:#fff; font-size:.95rem; }
.proof-rating-stars { display:inline-flex; gap:1px; }
.proof-rating-stars svg { width:16px; height:16px; fill:#fbbf24; }
.proof-rating-score { font-weight:700; color:#fff; font-size:1rem; letter-spacing:.02em; }
.proof-divider { width:1px; height:24px; background:rgba(255,255,255,.15); }
.proof-total { display:flex; align-items:baseline; gap:.55rem; }
.proof-total-value { font-weight:800; color:#00d68e; font-size:1.5rem; letter-spacing:-.01em; }
.proof-total-label { color:rgba(255,255,255,.75); font-size:.9rem; max-width:280px; line-height:1.3; }
.proof-bar-right { display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap; }
.proof-cta { display:inline-flex; align-items:center; gap:.35rem; color:#00d68e; font-weight:600; font-size:.9rem; text-decoration:none; }
.proof-cta:hover { color:#fff; }
.proof-cta svg { width:14px; height:14px; fill:currentColor; }

@media (max-width: 900px) {
  .proof-bar { flex-direction:column; align-items:flex-start; gap:1rem; }
  .proof-bar-left { gap:1rem; }
  .proof-divider { display:none; }
  .proof-total-label { max-width:none; }
}

/* Verified Reviews card — v2 redesign (matches badge-card sizing) */
.metric-card--reviews-v2 { display:flex; flex-direction:column; justify-content:space-between; padding:1.25rem 1.4rem 1.4rem; gap:1rem; }
.reviews-v2-top { display:flex; align-items:center; gap:.75rem; }
.reviews-v2-value { font-size:2.75rem; font-weight:800; color:#00d68e; line-height:1; letter-spacing:-.02em; }
.reviews-v2-suffix { font-size:1.75rem; }
.reviews-v2-label { color:#fff; font-weight:600; font-size:.95rem; line-height:1.15; text-transform:uppercase; letter-spacing:.04em; }
.reviews-v2-platforms { color:rgba(255,255,255,.65); font-size:.82rem; letter-spacing:.02em; padding-top:.5rem; border-top:1px solid rgba(255,255,255,.1); }
.reviews-v2-ctas { display:flex; flex-direction:column; gap:.4rem; margin-top:auto; }
.reviews-v2-cta { display:inline-flex; align-items:center; gap:.3rem; color:#00d68e; font-weight:600; font-size:.88rem; text-decoration:none; }
.reviews-v2-cta:hover { color:#fff; }
.reviews-v2-cta svg { width:13px; height:13px; fill:currentColor; }

/* 2-column layout for the reviews-v2 CTA links */
.reviews-v2-ctas--cols { flex-direction:row; gap:1.25rem; padding-top:.75rem; border-top:1px solid rgba(255,255,255,.1); }
.reviews-v2-ctas--cols .reviews-v2-cta { flex:1; }

/* Reviews-v2 bottom rework: stars + solid CTA */
.reviews-v2-stars { display:flex; flex-direction:column; gap:.25rem; padding-top:.9rem; border-top:1px solid rgba(255,255,255,.1); }
.reviews-v2-star-row { display:inline-flex; gap:2px; color:#ffc42a; }
.reviews-v2-star-row svg { width:16px; height:16px; }
.reviews-v2-rating { color:rgba(255,255,255,.7); font-size:.8rem; letter-spacing:.02em; }
.reviews-v2-btn { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; margin-top:.9rem; padding:.55rem 1rem; background:rgba(0,214,142,.12); color:#00d68e; border:1px solid rgba(0,214,142,.35); border-radius:999px; font-weight:600; font-size:.88rem; text-decoration:none; transition:background .15s,color .15s,border-color .15s; }
.reviews-v2-btn:hover { background:#00d68e; color:#0a1f3d; border-color:#00d68e; }
.reviews-v2-btn svg { width:13px; height:13px; fill:currentColor; }

/* Reviews-v2 v3: top row w/ View button, bottom awards block */
.reviews-v2-top--btn { justify-content:space-between; align-items:center; }
.reviews-v2-num { display:flex; align-items:center; gap:.75rem; }
.reviews-v2-view { display:inline-flex; align-items:center; gap:.3rem; padding:.4rem .85rem; background:transparent; color:#00d68e; border:1px solid rgba(0,214,142,.4); border-radius:999px; font-size:.82rem; font-weight:600; text-decoration:none; transition:background .15s,color .15s; }
.reviews-v2-view:hover { background:#00d68e; color:#0a1f3d; }
.reviews-v2-view svg { width:12px; height:12px; fill:currentColor; }

.reviews-v2-awards { display:flex; flex-direction:column; gap:.25rem; padding:.9rem 1rem; margin-top:auto; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; text-decoration:none; transition:background .15s,border-color .15s; }
.reviews-v2-awards:hover { background:rgba(0,214,142,.08); border-color:rgba(0,214,142,.3); }
.reviews-v2-awards-eyebrow { color:#fff; font-weight:700; font-size:.92rem; letter-spacing:.02em; }
.reviews-v2-awards-body { color:rgba(255,255,255,.65); font-size:.78rem; line-height:1.35; }
.reviews-v2-awards-cta { display:inline-flex; align-items:center; gap:.3rem; margin-top:.25rem; color:#00d68e; font-size:.82rem; font-weight:600; }
.reviews-v2-awards-cta svg { width:12px; height:12px; fill:currentColor; }

/* Reviews-v2 bottom: mirror the top row */
.reviews-v2-bottom { padding-top:.9rem; border-top:1px solid rgba(255,255,255,.1); margin-top:auto; }
.reviews-v2-awards-line { color:#fff; font-weight:600; font-size:.95rem; line-height:1.25; text-transform:uppercase; letter-spacing:.03em; }

/* Team teaser: two-column with mascot on right */
.team-teaser-layout { display:grid; grid-template-columns: 1.4fr 1fr; gap:3rem; align-items:center; }
.team-teaser-copy .section-head { max-width:none; }
.team-teaser-copy .prose { max-width:560px; }
.section-cta-row--left { justify-content:flex-start; margin-top:1.5rem; }
.team-teaser-mascot { margin:0 auto; text-align:center; max-width:340px; display:flex; flex-direction:column; align-items:center; }
.team-teaser-mascot img { max-width:100%; width:100%; height:auto; display:block; }
.team-teaser-mascot figcaption { margin-top:1rem; font-family:var(--font-display); font-size:1rem; color:var(--navy-700, #0a1f3d); font-weight:600; letter-spacing:.01em; }
@media (max-width: 820px) {
  .team-teaser-layout { grid-template-columns: 1fr; gap:2rem; }
  .team-teaser-mascot img { max-width:280px; }
}


/* Coming-soon industry card style */
.industry-page-card--soon {
  cursor: default;
  opacity: 0.62;
  background: #f6f9fb;
  border-color: #e6ecf3;
}
.industry-page-card--soon:hover {
  transform: none;
  box-shadow: none;
}
.industry-soon-badge {
  display: inline-block;
  margin-left: .4rem;
  padding: 1px 6px;
  border-radius: 4px;
  background: #dfe9f3;
  color: #556877;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  vertical-align: middle;
}
.mockup-nav-disabled {
  color: #99a4b1 !important;
  cursor: default;
  pointer-events: none;
}

/* ============ CONTACT PAGE (turn 174 -- match live cyberoptik.net/contact/) ============ */

/* Two-column: form on left (wider), sidebar on right (narrower) */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-form-col .section-head { margin-bottom: .75rem; }
.contact-form-col .section-head h2 { margin: 0; }
.contact-form-lede {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 0 2rem;
}

/* Form placeholder box */
.form-placeholder {
  border: 2px dashed #b8c4d1;
  border-radius: var(--radius);
  background: #fbfcfd;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--muted);
}
.form-placeholder-inner { max-width: 320px; }
.form-placeholder-inner svg {
  color: #a3b0be;
  margin-bottom: 1rem;
}
.form-placeholder-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 0 0 .5rem;
}
.form-placeholder-note {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Sidebar with 3 stacked info cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.65rem;
  box-shadow: 0 4px 18px -14px rgba(15, 30, 55, 0.15);
}
.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(75, 170, 46, 0.1);
  color: var(--green-600);
  margin-bottom: 1rem;
}
.contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.contact-info-value {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.2;
}
.contact-info-value a {
  color: var(--ink);
  text-decoration: none;
  transition: color .15s ease;
}
.contact-info-value a:hover { color: var(--green-600); }
.contact-info-value--sm {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ink-2);
  line-height: 1.55;
}
.contact-info-meta {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
  line-height: 1.5;
}

/* Social row inside "Connect With Us" card */
.contact-info-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .65rem;
}
.contact-info-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.contact-info-socials a:hover {
  background: var(--green-600);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-sidebar { position: static; }
  .form-placeholder { min-height: 380px; }
}
@media (max-width: 560px) {
  .form-placeholder { min-height: 300px; padding: 2rem 1rem; }
}

/* ============ MARKETING PARENT (turn 175 -- fix icon-list overlap, add service subheads + resource cards) ============ */

/* Reason list: bold lead-in + inline description; no grid, no columns.
   Used on marketing-parent "Why teams use us" (replaces broken .icon-list). */
.prose .reason-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
}
.prose .reason-list li {
  display: block;
  padding: 1.05rem 1.15rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  color: inherit;
  line-height: 1.55;
}
.prose .reason-list li::before { display: none; }
.prose .reason-list li strong {
  color: #ffffff;
  margin-right: .25rem;
}
/* Light-background variant (section--white / section--intro) */
.section--white .prose .reason-list li,
.section--intro .prose .reason-list li {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink-2);
}
.section--white .prose .reason-list li strong,
.section--intro .prose .reason-list li strong { color: var(--ink); }

/* Section lede paragraph under a section-head H2 */
.section-head .section-lede {
  margin-top: .55rem;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.55;
}
.section-head--dark .section-lede { color: #dfe9f3; }

/* Subhead for a group of service cards within a services section */
.services-subhead {
  font-family: "Cabinet Grotesk", "General Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 2.2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.services-subhead:first-of-type { margin-top: 1.4rem; }

/* Resource cards: KB + Glossary, side by side */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 1.4rem;
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.resource-card:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.resource-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.resource-card p {
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.resource-card .link-internal {
  margin-top: .35rem;
  color: var(--green-600);
  font-weight: 600;
}
.resource-card:hover .link-internal { text-decoration: underline; }

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: 1fr; }
  .services-subhead { margin-top: 1.8rem; }
}
