/* ============================================================
   MEDDELA — Design System v2 (restored)
   Deep navy + orange/red gradient brand
   Plus Jakarta Sans + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #1A1A2E;
  --slate:   #16213E;
  --mid:     #243447;
  --orange:  #ED683C;
  --red:     #D41B22;
  --warm:    #F5F0EC;
  --surface: #F7F9FC;
  --white:   #FFFFFF;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --text:    #1A1A2E;

  --grad:   linear-gradient(135deg, #ED683C 0%, #D41B22 100%);
  --grad-h: linear-gradient(135deg, #f07a52 0%, #e02428 100%);
  --shadow-brand: 0 8px 28px rgba(237,104,60,.28);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 4px rgba(26,26,46,.06);
  --shadow-md: 0 6px 24px rgba(26,26,46,.10);
  --shadow-lg: 0 20px 56px rgba(26,26,46,.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: #374151; line-height: 1.7; }

/* White headings on dark backgrounds */
.page-header h1,.page-header h2,.page-header h3,
.page-header h4,.page-header h5 { color: #fff; }
.page-header p { color: rgba(255,255,255,.72); }

.hero h1,.hero h2,.hero h3 { color: #fff; }
.hero p { color: rgba(255,255,255,.75); }

.band-dark h1,.band-dark h2,.band-dark h3,
.band-dark h4,.band-dark h5 { color: #fff; }
.band-dark p { color: rgba(255,255,255,.65); }

.cta-band h1,.cta-band h2,.cta-band h3 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .8rem;
}

/* ── LAYOUT ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ── LOGO ── */
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0; line-height: 1;
}
.nav-logo img        { height: 54px; width: auto; display: block; }
.nav-logo-footer img { height: 36px; width: auto; display: block; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26,26,46,.07);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 2rem;
  flex-wrap: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin-left: auto; margin-right: 2rem; flex-shrink: 0; }
.nav-links a {
  font-size: 1rem; font-weight: 600;
  color: var(--ink); text-decoration: none; transition: color .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }
.nav-ctas { display: flex; gap: .65rem; flex-shrink: 0; }

/* On desktop the mobile panel wrapper must not affect layout — it simply
   passes through as a flex container so nav-links + nav-ctas sit side by
   side exactly as if the wrapper weren't there. Without this rule the div
   defaults to display:block and stacks its two flex children vertically,
   which is what caused the two-row nav bug regardless of viewport width. */
.nav-mobile-panel { display: flex; align-items: center; flex: 1; min-width: 0; }

/* ── MOBILE NAV TOGGLE (hamburger) ── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0; z-index: 101;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .25s; margin: 0 auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DROPDOWN ── */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a {
  display: flex; align-items: center; gap: .3rem; cursor: pointer;
}
.nav-links .has-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .5; transition: transform .2s;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); opacity: .9; }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(26,26,46,.13);
  min-width: 210px;
  /* padding-top creates visual gap without a hover dead-zone */
  padding: 10px 0 .5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 200;
}
/* Invisible bridge fills the gap between nav link and dropdown panel
   so the mouse never leaves the hover area */
.dropdown::after {
  content: '';
  position: absolute; top: -10px; left: 0;
  width: 100%; height: 10px;
  background: transparent;
}
.dropdown::before {
  content: '';
  position: absolute; top: 2px; left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--white);
  filter: drop-shadow(0 -2px 1px rgba(26,26,46,.06));
  z-index: 1;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Keyboard accessibility: dropdowns must also open on focus, not just
   mouse hover, or keyboard-only users can never reach the submenu items */
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem 1.25rem;
  font-size: .875rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  transition: background .15s, color .15s; white-space: nowrap;
}
.dropdown a:hover { background: var(--surface); color: var(--orange); }

/* ── VISIBLE FOCUS STATES (keyboard navigation) ──
   Browsers' default focus ring is suppressed by some reset styles in
   practice; restoring an explicit, visible focus style on every
   interactive element ensures keyboard and switch-device users can
   always see where they are on the page. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.dropdown a:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.dropdown a:focus-visible { background: var(--surface); color: var(--orange); outline-offset: -2px; }
.dropdown-icon {
  width: 28px; height: 28px;
  background: rgba(237,104,60,.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.4rem; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; font-family: var(--font-display);
  text-decoration: none; cursor: pointer; border: none;
  transition: all .18s ease; white-space: nowrap;
}
.btn-primary  { background: var(--grad); color: #fff; }
.btn-primary:hover { background: var(--grad-h); transform: translateY(-1px); box-shadow: var(--shadow-brand); }

.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--slate); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

.btn-lg { padding: .875rem 2rem; font-size: .95rem; border-radius: 10px; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 46px; height: 46px;
  background: rgba(237,104,60,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.3rem; flex-shrink: 0;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }

@media(max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }

  /* ── NAV: switch to hamburger earlier than the content breakpoint,
     because "Products / Services / Company" + two CTA buttons need
     roughly 950-1050px of clear width to sit on one line without
     wrapping. Gating this at 768px (like the content rules below)
     left a wrap-prone gap between ~769px and ~1024px. ── */
  .nav-toggle { display: flex; }
  .nav-links, .nav-ctas {
    /* Moved into the slide-out panel below instead of simply hidden */
    display: none;
  }
  .nav-mobile-panel.open .nav-links,
  .nav-mobile-panel.open .nav-ctas {
    display: flex;
  }
  .nav-mobile-panel {
    display: block; flex: none;
    position: fixed; top: 68px; left: 0; right: 0;
    height: calc(100vh - 68px);
    background: var(--white);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 99; overflow-y: auto;
    padding: 1.5rem 1.25rem 2.5rem;
  }
  .nav-mobile-panel.open { transform: translateX(0); }
  .nav-mobile-panel .nav-links {
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; width: 100%;
  }
  .nav-mobile-panel .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-mobile-panel .nav-links > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem .25rem; font-size: 1.05rem;
  }
  .nav-mobile-panel .has-dropdown > a::after { margin-left: auto; }
  .nav-mobile-panel .dropdown,
  .nav-mobile-panel .has-dropdown:hover .dropdown,
  .nav-mobile-panel .has-dropdown.mobile-open .dropdown {
    position: static !important; transform: none !important; opacity: 1; visibility: visible; pointer-events: auto;
    display: none; box-shadow: none; border: none; min-width: 0;
    padding: 0 0 .5rem; background: var(--surface); border-radius: var(--radius-sm);
  }
  .nav-mobile-panel .dropdown::before, .nav-mobile-panel .dropdown::after { display: none; }
  .nav-mobile-panel .has-dropdown.mobile-open .dropdown { display: block; }
  .nav-mobile-panel .has-dropdown.mobile-open > a::after { transform: rotate(180deg); }
  .nav-mobile-panel .nav-ctas {
    flex-direction: column; width: 100%; gap: .75rem; margin-top: 1.5rem;
  }
  .nav-mobile-panel .nav-ctas .btn { width: 100%; justify-content: center; }
}
@media(max-width:768px) {
  .grid-2,.grid-3,.grid-4,.grid-5 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }

  /* ── NAV bar sizing at phone widths (toggle/panel mechanics above already apply) ── */
  .nav-inner { padding: 0 1.25rem; height: 68px; }
  .nav-logo img, .nav-logo svg { height: 42px !important; }

  /* ── INLINE TWO-COLUMN BLOCKS THAT BYPASS .grid-N ── */
  /* Most content sections use inline grid-template-columns:1fr 1fr (or similar
     two/four-column splits) directly in style="" attributes, which the
     .grid-N media queries above cannot reach. This rule forces ANY inline
     multi-column grid to collapse to a single column on mobile. */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  /* Exception: small icon/stat tiles meant to stay side-by-side even on
     mobile (e.g. 2x2 stat boxes inside dark cards) opt back in via this class */
  .keep-cols-mobile {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

@media(max-width:480px) {
  .hero { padding: 5.5rem 0 3.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-band .container > div[style*="justify-content:center"] {
    flex-direction: column;
  }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ── BANDS ── */
.band-dark    { background: var(--ink); }
.band-surface { background: var(--surface); }
.band-warm    { background: var(--warm); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── TAGS ── */
.tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .22rem .75rem; border-radius: 99px;
  background: rgba(237,104,60,.1); color: var(--orange);
  margin-right: .4rem; margin-bottom: .4rem;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, #162d4a 60%, #1a3a5c 100%);
  color: var(--white); padding: 5rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 90% 10%, rgba(237,104,60,.18) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 75% 85%, rgba(212,27,34,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-sub { font-size: 1.1rem; max-width: 720px; margin: 1.25rem 0 2.5rem; line-height: 1.75; color: rgba(255,255,255,.8); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%);
  padding: 5rem 0 4rem; color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 95% 50%, rgba(237,104,60,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }

/* ── SECTION ACCENT ── */
.section-accent {
  width: 44px; height: 4px;
  background: var(--grad);
  border-radius: 2px; margin: .5rem 0 2rem;
}

/* ── CHECK ITEMS ── */
.check-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.check-dot {
  width: 24px; height: 24px; background: rgba(237,104,60,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .15rem; color: var(--orange); font-size: .75rem; font-weight: 700;
}

/* ── STATS ── */
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: .4rem; }

/* ── ARTICLE PAGE ── */
.article-header { background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%); padding: 3.5rem 0 3rem; color: var(--white); position: relative; overflow: hidden; }
.article-header::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 50% 80% at 95% 50%, rgba(237,104,60,.15) 0%, transparent 65%); pointer-events:none; }
.article-header .container { position: relative; z-index: 1; max-width: 760px; }
.article-back { display:inline-flex; align-items:center; gap:.4rem; color: rgba(255,255,255,.6); text-decoration:none; font-size:.85rem; font-weight:600; margin-bottom:1.5rem; transition: color .18s; }
.article-back:hover { color: var(--orange); }
.article-meta-row { display:flex; align-items:center; gap:1rem; margin-top:1.25rem; font-size:.85rem; color: rgba(255,255,255,.55); }
.article-body { max-width: 720px; margin: 0 auto; padding: 3.5rem 0; }
.article-body p { font-size: 1.02rem; line-height: 1.8; color: var(--text); margin-bottom: 1.4rem; }
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 .85rem; }
.article-body ul, .article-body ol { margin: 0 0 1.4rem 1.25rem; }
.article-body li { font-size: 1.02rem; line-height: 1.75; color: var(--text); margin-bottom: .6rem; }
.article-body strong { color: var(--ink); }
.article-cta-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; margin-top: 2.5rem; text-align: center; }
.article-share { display:flex; align-items:center; justify-content:space-between; margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid var(--border); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--grad);
  padding: 5.5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

/* ── HIGHLIGHT BAR ── */
.highlight-bar { border-left: 3px solid var(--orange); padding-left: 1.2rem; margin: 1.25rem 0; }

/* ── INDUSTRY CARD ── */
.industry-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 1.75rem; text-align: center;
  transition: all .2s;
}
.industry-card:hover { border-color: rgba(237,104,60,.3); background: rgba(237,104,60,.05); }
.industry-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.industry-name { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .92rem; }
.industry-sub  { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .3rem; }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md); padding: 1.75rem 2rem;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer h4 { color: var(--white); font-family: var(--font-display); font-size: .9rem; margin-bottom: 1.2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .6rem; }
.footer ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer ul li a:hover { color: var(--orange); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: .85rem; max-width: 260px; color: rgba(255,255,255,.5); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ── CONTACT FORM ── */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .92rem; color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(237,104,60,.12); }
.contact-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--slate); margin-bottom: .35rem; }
.form-group { margin-bottom: 1.25rem; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ── INSIGHTS / BLOG ── */
.insight-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.insight-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; flex-shrink: 0; }
.insight-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.insight-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }
.insight-card-body h3 { font-size: 1rem; line-height: 1.4; color: var(--ink); margin-bottom: .6rem; }
.insight-card-body p { font-size: .875rem; flex: 1; }
.insight-meta { margin-top: 1rem; font-size: .78rem; color: var(--muted); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: .75rem; }
.read-link { color: var(--orange); font-weight: 600; text-decoration: none; font-size: .82rem; }

.filter-btn {
  padding: .38rem 1rem; border-radius: 99px; font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--border); background: none; cursor: pointer;
  color: var(--muted); transition: all .15s; font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(237,104,60,.06); }

/* ── RICH DROPDOWN (Company menu) ── */
.dropdown-rich {
  min-width: 260px;
  padding: .6rem 0;
}

.dropdown-item-rich {
  display: flex !important;
  align-items: center;
  gap: .875rem;
  padding: .75rem 1.25rem !important;
  transition: background .15s, color .15s;
  text-decoration: none;
  color: var(--ink) !important;
}
.dropdown-item-rich:hover {
  background: var(--surface) !important;
  color: var(--ink) !important;
}
.dropdown-item-rich .dropdown-icon {
  width: 36px; height: 36px;
  background: rgba(237,104,60,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
  transition: background .15s;
}
.dropdown-item-rich:hover .dropdown-icon {
  background: rgba(237,104,60,.18);
}
.dropdown-item-text {
  display: flex; flex-direction: column; gap: .15rem;
}
.dropdown-item-title {
  font-size: .9rem; font-weight: 600;
  color: var(--ink); font-family: var(--font-display);
  line-height: 1.2;
}
.dropdown-item-desc {
  font-size: .775rem; color: var(--muted);
  font-family: var(--font-body); line-height: 1.3;
}
.dropdown-item-rich:hover .dropdown-item-title { color: var(--orange); }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: 1.25rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--ink); cursor: pointer; user-select: none;
  transition: color .18s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  color: var(--orange); font-size: 1.2rem; font-weight: 400;
  flex-shrink: 0; line-height: 1; margin-top: .1rem;
  transition: transform .2s;
}
.faq-a {
  padding-bottom: 1.25rem;
  font-size: .9rem; color: var(--muted); line-height: 1.75;
}

/* ── LUCIDE ICON SYSTEM ── */
.icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1em; height: 1em; stroke: currentColor;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  fill: none; vertical-align: middle; flex-shrink: 0;
}
.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 20px; height: 20px; }
.icon-lg  { width: 24px; height: 24px; }
.icon-xl  { width: 32px; height: 32px; }
.icon-2xl { width: 40px; height: 40px; }

/* Icon inside card-icon container */
.card-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 1.75; }
.card-icon-blue svg { stroke: #3b82f6; }

/* Icon box variants */
.icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box-orange { background: rgba(237,104,60,.12); }
.icon-box-dark   { background: rgba(237,104,60,.15); }
.icon-box svg    { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── ICON SYSTEM v2 ── */
.icon-box {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; }
.icon-box-sm { width: 36px; height: 36px; border-radius: 8px; }
.icon-box-sm svg { width: 16px; height: 16px; }
.icon-box-lg { width: 56px; height: 56px; border-radius: 12px; }
.icon-box-lg svg { width: 26px; height: 26px; }

.icon-orange { background: rgba(237,104,60,.12); color: var(--orange); }
.icon-white  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.icon-dark   { background: var(--ink); color: var(--orange); }
.icon-light  { background: var(--surface); color: var(--ink); }

/* ── SVG ICON SYSTEM ── */
/* Card icons */
.card-icon svg { display:block; }
.card-icon svg[stroke] { stroke: var(--orange); }

/* Dropdown icons — SVG based */
.dropdown-icon { display:flex; align-items:center; justify-content:center; }
.dropdown-icon svg { display:block; }
.dropdown-item-rich:hover .dropdown-icon svg { stroke: var(--orange); }

/* Inline content icons */
.icon-sm  { width:16px; height:16px; display:inline-block; vertical-align:middle; }
.icon-md  { width:20px; height:20px; display:inline-block; vertical-align:middle; }
.icon-lg  { width:24px; height:24px; display:inline-block; vertical-align:middle; }

/* Section-level large icons */
[style*="font-size:1.75rem"] svg,
[style*="font-size:1.3rem"] svg { display:block; }

/* ── ICON SIZE SAFEGUARD ── */
/* Any inline SVG icon (24x24 viewBox) without explicit width/height
   is constrained to a sane default size to prevent oversized rendering */
svg[viewBox="0 0 24 24"]:not([width]) {
  width: 24px;
  height: 24px;
}

/* ── PATHWAY CARDS (contact page) ── */
.pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.pathway-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(237,104,60,.1); transform: translateY(-2px); }
.pathway-icon {
  width: 48px; height: 48px;
  background: rgba(237,104,60,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.pathway-card p { flex-grow: 1; }
