/* ==============================================================
   theme/202605-daylight/css/daylight.css
   Base styles: typography, layout, utilities, page scaffold
   compat class ที่ pages เก่าใช้อยู่ (all-title-box ฯลฯ)
   © 2004–2026 Ideal Creation Center Co., Ltd.
   ============================================================== */

/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--ic-font, 'Quicksand','Prompt','Noto Sans SC',sans-serif);
  font-size: var(--ic-text-base, 1rem);
  line-height: var(--ic-leading-normal, 1.65);
  color: var(--ic-text, #1a1e3c);
  background: var(--ic-bg, #f5f7fc);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ic-navy, #2C3093); transition: color .13s; }
a:hover { color: var(--ic-orange, #FF9900); }
p { color: var(--ic-text-muted, #5a6488); line-height: var(--ic-leading-normal, 1.65); }

/* ── CONTAINER ── */
.container, .ic-container {
  width: 90%;
  max-width: var(--ic-container, 1280px);
  margin-left: auto;
  margin-right: auto;
}
.container-fluid { width: 100%; padding: 0 28px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ic-font, 'Quicksand','Prompt',sans-serif);
  line-height: var(--ic-leading-tight, 1.2);
  color: var(--ic-text, #1a1e3c);
  margin-top: 0;
}

/* ── SECTION DEFAULTS ── */
section { padding: var(--ic-section-v, 96px) 0; }

/* ── BUTTONS ── */
.btn-ic-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ic-navy, #2C3093);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--ic-radius-md, 12px);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .13s, transform .1s;
}
.btn-ic-primary:hover {
  background: var(--ic-navy-light, #3d44b5);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ic-orange {
  background: var(--ic-orange, #FF9900);
  color: #1a1400;
}
.btn-ic-orange:hover {
  background: var(--ic-orange-light, #ffb133);
  color: #1a1400;
}
.btn-ic-outline {
  background: transparent;
  color: var(--ic-navy, #2C3093);
  border: 1.5px solid var(--ic-border-strong, #b8c3de);
}
.btn-ic-outline:hover {
  background: var(--ic-bg-alt, #eef1f8);
  color: var(--ic-navy, #2C3093);
}

/* ── CARDS ── */
.ic-card {
  background: var(--ic-surface, #fff);
  border: 1px solid var(--ic-border, #dde3f0);
  border-radius: var(--ic-radius-xl, 24px);
  padding: 32px;
  box-shadow: var(--ic-shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.ic-card:hover {
  box-shadow: var(--ic-shadow-md);
  transform: translateY(-2px);
}

/* ── SECTION TITLE ── */
.ic-section-title { text-align: center; margin-bottom: 56px; }
.ic-section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
}
.ic-section-title p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* ── HERO ── */
/* section class="ic-sec-s1" = #ffffff */
.ic-sec-s1{background:#ffffff;}
.ic-sec-s2{background:#f7f8fc;}
.ic-sec-s3{background:#eef2ff;}
.ic-sec-s4{background:#e5ebff;}
.ic-sec-s5{background:#dce4ff;}
.ic-sec-s6{background:#cfd8ff;}
.ic-sec-s7{background:#3d4f9f;}
.ic-sec-s7 h2,.ic-sec-s7 h3{color:#fff;}
.ic-sec-s7 p{color:rgba(255,255,255,.75);}

/* body bg ขาว ไม่มีสีพื้น */
body{background:#fff;}
.orange{ color:#ff9900;}
.ic-hero {
  background: linear-gradient(135deg, #021159 0%, #0a1f7a 60%, #0d2a9e 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.ic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 68% 40%, rgba(99,140,255,.16) 0%, transparent 65%);
  pointer-events: none;
}
.ic-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.ic-hero h1 {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.ic-hl { color: #FF9900; }
.ic-hero-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.75;
}
.ic-hero-sub strong { color: #fff; }
.ic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.88);
  margin-bottom: 18px;
}
.ic-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.ic-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: center;
}
.ic-hero-trust-item strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.ic-hero-trust-item span {
  font-size: 12px;
  color: rgba(255,255,255,.52);
}
.ic-trust-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.2);
}
.ic-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ic-hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  padding: 28px;
}
.ic-hero-card-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 16px;
}
.ic-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px;
  gap: 12px;
}
.ic-status-row:last-of-type { border-bottom: none; }
.ic-status-label { color: rgba(255,255,255,.52); }
.ic-status-val { font-weight: 600; color: #fff; text-align: right; }
.ic-status-green { color: #4ade80; }
.ic-hero-card-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ic-stat-mini { text-align: center; }
.ic-stat-mini strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ic-stat-mini span {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
  display: block;
}

/* ── GRID HELPERS ── */
.ic-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.ic-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.ic-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }

/* ── BADGE ── */
.ic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--ic-radius-pill, 999px);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #a8c0ff;
  margin-bottom: 18px;
}

/* ── REFRAME BOX (pricing reframe) ── */
.ic-reframe-box {
  background: var(--ic-navy, #2C3093);
  border-radius: var(--ic-radius-xl, 24px);
  padding: 48px;
  text-align: center;
  color: #fff;
}
.ic-reframe-box .hl { color: var(--ic-orange, #FF9900); }

/* ── TRUST BAR ── */
.ic-trust-bar {
  background: #0a1760;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ic-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  text-align: center;
}
.ic-trust-num {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.ic-trust-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
.ic-trust-logos {
  margin-top: 24px;
  text-align: center;
}
.ic-trust-logos small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.ic-trust-logo-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 22px;
}
.ic-trust-logo-list span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}

/* ── PRICING CARD ── */
.ic-price-card {
  background: var(--ic-surface, #fff);
  border: 1px solid var(--ic-border, #dde3f0);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.ic-price-card:hover { box-shadow: var(--ic-shadow-md); }
.ic-price-card.popular {
  border: 2px solid var(--ic-orange, #FF9900);
  position: relative;
}
.ic-price-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ic-orange, #FF9900);
  color: #1a1400;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--ic-radius-pill, 999px);
  white-space: nowrap;
}
.ic-price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--ic-text, #1a1e3c);
  line-height: 1.1;
}
.ic-price-amount span { font-size: 14px; font-weight: 400; color: var(--ic-text-muted, #5a6488); }
.ic-price-per-mo {
  font-size: 13px;
  color: var(--ic-text-muted, #5a6488);
  margin-bottom: 20px;
}
.ic-price-features { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.ic-price-features li {
  font-size: 14px;
  color: var(--ic-text, #1a1e3c);
  padding: 7px 0;
  border-bottom: 1px solid var(--ic-border, #dde3f0);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ic-price-features li:last-child { border-bottom: none; }
.ic-price-features li::before {
  content: '✓';
  color: var(--ic-success, #16a34a);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── GUARANTEE LINE ── */
.ic-guarantee {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ic-text-muted, #5a6488);
}
.ic-guarantee strong { color: var(--ic-success, #16a34a); }

/* ── FAQ ACCORDION ── */
.ic-faq-item {
  border-bottom: 1px solid var(--ic-border, #dde3f0);
}
.ic-faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ic-text, #1a1e3c);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--ic-font, 'Quicksand','Prompt',sans-serif);
}
.ic-faq-btn::after {
  content: '+';
  font-size: 22px;
  color: var(--ic-navy, #2C3093);
  flex-shrink: 0;
  transition: transform .2s;
}
.ic-faq-item.open .ic-faq-btn::after { transform: rotate(45deg); }
.ic-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s cubic-bezier(.4,0,.2,1);
}
.ic-faq-item.open .ic-faq-body { max-height: 400px; }
.ic-faq-body p {
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--ic-text-muted, #5a6488);
}

/* ── ADDON ACCORDION (compat) ── */
.addon-accordion {
  cursor: pointer;
  padding: 10px 18px;
  border: 1px solid var(--ic-border, #dde3f0);
  border-radius: var(--ic-radius-md, 12px);
  background: var(--ic-surface, #fff);
  font-weight: 600;
  margin-bottom: 4px;
  transition: background .13s;
}
.addon-accordion:hover,
.addon-accordion.active { background: var(--ic-bg-alt, #eef1f8); }
.addon-accordion + div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}
.addon-accordion + div.show { max-height: 1000px; }

/* ── ALL-TITLE-BOX (compat กับ page เก่า) ── */
.all-title-box {
  min-height: 200px;
  padding: 60px 0;
  color: #fff;
  background: linear-gradient(155deg, var(--ic-hero-bg,#0f1535), var(--ic-hero-bg2,#182047));
}
.all-title-box h1 { color:#fff; font-size: clamp(28px,4vw,48px); font-weight:700; }
.all-title-box h2 { color:#fff; font-size: clamp(24px,3vw,44px); font-weight:600; }
.all-title-box h3 { color:#fff; font-size: clamp(18px,2vw,28px); font-weight:400; }
.all-title-box p  { color: rgba(255,255,255,.75); }
.all-title-box .titlebg-sm { padding-top:0; padding-bottom:20px; font-weight:400; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-muted   { color: var(--ic-text-muted, #5a6488); }
.text-orange  { color: var(--ic-orange, #FF9900); }
.text-navy    { color: var(--ic-navy, #2C3093); }
.text-white   { color: #fff; }
.fw-bold      { font-weight: 700; }
.fw-black     { font-weight: 800; }
.clear        { clear: both; height: 1px; }
.mt-auto      { margin-top: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .ic-reframe-box { padding: 28px 20px; }
  .ic-hero { padding: 70px 0 60px; }
}

/* ── IC GUARDIAN PAGE STYLES ── */
.ic-guardian-hero { padding: 80px 0 70px; }
.ic-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.ic-hero-left .ic-badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #a8c0ff; margin-bottom: 20px; }
.ic-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.ic-hero-left h1 { font-size: clamp(32px,4.5vw,58px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; letter-spacing: -.5px; }
.ic-hl { color: var(--ic-orange, #FF9900); }
.ic-hero-sub { font-size: clamp(15px,1.5vw,18px); color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.65; }
.ic-hero-sub strong { color: #fff; }
.ic-hero-trust-row { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.ic-hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.ic-hero-trust-item strong { font-size: 16px; font-weight: 700; color: #fff; }
.ic-hero-trust-item span { font-size: 11px; color: rgba(255,255,255,.55); }
.ic-hero-trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,.2); }
.ic-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ic-hero-outline { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: #fff; }
.ic-hero-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Hero card */
.ic-hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 32px; backdrop-filter: blur(10px); }
.ic-hero-card-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.ic-status-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); gap: 12px; }
.ic-status-row:last-of-type { border-bottom: none; }
.ic-status-label { font-size: 13px; color: rgba(255,255,255,.55); }
.ic-status-val { font-size: 13px; font-weight: 600; color: #fff; text-align: right; }
.ic-status-green { color: #4ade80; }
.ic-hero-card-footer { display: flex; justify-content: space-around; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.ic-stat-mini { text-align: center; }
.ic-stat-mini strong { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.ic-stat-mini span { font-size: 11px; color: rgba(255,255,255,.45); }

/* Trust bar */
.ic-trust-logos { margin-top: 28px; text-align: center; }
.ic-trust-logos small { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 12px; text-transform: uppercase; }
.ic-trust-logo-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 20px; }
.ic-trust-logo-list span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.65); }

/* Reframe section */
.ic-section-reframe { background: var(--ic-navy, #021159); padding: 72px 0; }
.ic-reframe-box { border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 52px; text-align: center; background: rgba(255,255,255,.04); }
.ic-reframe-box h2 { font-size: clamp(22px,3vw,36px); font-weight: 700; color: #fff; margin-bottom: 18px; line-height: 1.3; }
.ic-reframe-box p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* Pain cards */
.ic-pain-card { text-align: center; }
.ic-pain-icon { font-size: 32px; margin-bottom: 14px; display: block; }

/* Included section */
.ic-section-included { background: var(--ic-bg-alt, #eef1f8); }
.ic-included-box { background: #fff; border-radius: 24px; padding: 52px; border: 1px solid var(--ic-border, #dde3f0); }
.ic-included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; margin-top: 8px; }
.ic-included-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--ic-bg, #f5f7fc); border-radius: 10px; }
.ic-included-check { font-size: 18px; color: var(--ic-success, #16a34a); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ic-included-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--ic-text, #1a1e3c); margin-bottom: 2px; }
.ic-included-item span { font-size: 12.5px; color: var(--ic-text-muted, #5a6488); line-height: 1.5; }

/* Pricing section */
.ic-section-pricing { background: #f5f7fc; }
.ic-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; align-items: stretch; }
.ic-price-tier { font-size: 22px; font-weight: 700; color: var(--ic-text, #1a1e3c); margin-bottom: 6px; }
.ic-price-desc { font-size: 13.5px; color: var(--ic-text-muted); min-height: 40px; margin-bottom: 16px; }

/* Infrastructure */
.ic-section-infra { background: #fff; }

/* FAQ */
.ic-section-faq { background: var(--ic-bg, #f5f7fc); }

/* Solutions family */
.ic-section-family { background: var(--ic-navy, #021159); }
.ic-section-family .ic-section-title h2, .ic-section-family .ic-section-title p { color: #fff; }
.ic-section-family .ic-section-title p { color: rgba(255,255,255,.6); }
.ic-solution-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.ic-solution-card h3, .ic-solution-card p { color: rgba(255,255,255,.85); }
.ic-solution-card a { color: var(--ic-orange, #FF9900); font-weight: 600; text-decoration: none; display: inline-block; margin-top: 10px; }
.ic-solution-card a:hover { color: var(--ic-orange-light, #ffb133); }

/* CTA */
.ic-section-cta { background: linear-gradient(155deg, #0f1535, #182047); padding: 100px 0; }
.ic-section-cta h2 { font-size: clamp(26px,4vw,46px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.ic-section-cta p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 620px; margin: 0 auto 36px; }
.ic-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ic-cta-outline { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; }
.ic-cta-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .ic-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .ic-hero-right { order: -1; }
  .ic-included-box { padding: 28px 20px; }
  .ic-reframe-box { padding: 32px 20px; }
}
@media (max-width: 600px) {
  .ic-pricing-grid { grid-template-columns: 1fr; }
  .ic-hero-trust-row { gap: 12px; }
}

/* ================================================================
   IC Service Nav Bar — แถบเมนูสีส้ม (class ใหม่ ไม่พึ่ง deepblue)
   match style เดียวกับ ftco-navbar ใน deepblue theme
   ================================================================ */
.ic-service-nav {
  background: #ff9900 !important;
  width: 100%;
  display: block !important;
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: 0 0 18px 0 rgba(0,0,0,.12);
  z-index: 3; 
    font-size:14px;
    font-weight:700;
}
.ic-service-nav ul {
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
}
.ic-service-nav ul li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.ic-service-nav ul li a,
.ic-service-nav ul li a:link,
.ic-service-nav ul li a:visited {
  display: block !important;
  padding: 8px 16px !important;
  color: #021159 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s;
  font-family: var(--ic-font, 'Prompt', sans-serif);
  background: transparent !important;
  opacity: 1 !important;
}
.ic-service-nav ul li a:hover,
.ic-service-nav ul li a:focus {
  color: #6c757d !important;
  text-decoration: none !important;
  background: transparent !important;
}
.ic-service-nav ul li.ic-nav-active a,
.ic-service-nav ul li.ic-nav-active a:link,
.ic-service-nav ul li.ic-nav-active a:visited {
  color: #fff !important;
}
/* hide บน mobile (< 992px) */
@media (max-width: 991px) {
  .ic-service-nav { display: none !important; }
}

/* ================================================================
   IC Breadcrumbs — #ic-breadcrumbs
   แสดงใต้ .ic-service-nav (orange bar) เหนือ hero ของแต่ละหน้า
   ================================================================ */
#ic-breadcrumbs {
  background: #f0f2f8;
  border-bottom: 1px solid #dde3f0;
  width: 100%;
  font-size: 12.5px;
  font-weight: 500;
}
#ic-breadcrumbs .ic-bc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
#ic-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  min-height: 34px;
}
#ic-breadcrumbs li {
  display: flex;
  align-items: center;
  color: #8a93b8;
  white-space: nowrap;
}
#ic-breadcrumbs li a {
  color: #5a6488;
  text-decoration: none;
  transition: color .13s;
  font-weight: 600;
}
#ic-breadcrumbs li a:hover {
  color: var(--ic-navy, #2C3093);
  text-decoration: underline;
}
/* current page (last item) */
#ic-breadcrumbs li span[aria-current="page"] {
  color: var(--ic-navy, #2C3093);
  font-weight: 700;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}
/* parent without link */
#ic-breadcrumbs .ic-bc-nolink {
  color: #8a93b8;
  font-weight: 500;
}
/* separator › */
#ic-breadcrumbs .ic-bc-sep {
  color: #c4cadf;
  margin: 0 6px;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #ic-breadcrumbs { font-size: 11.5px; }
  #ic-breadcrumbs li span[aria-current="page"] { max-width: 200px; }
  #ic-breadcrumbs .ic-bc-sep { margin: 0 4px; }
}
