/* ============================================================
   ICFC Consulting — main.css
   ============================================================ */
:root {
  --blue:      #10639e;
  --blue-dk:   #0b4a78;
  --blue-lt:   #1a7bc4;
  --yellow:    #ffd321;
  --yellow-dk: #e6bc00;
  --white:     #ffffff;
  --off:       #f5f6fa;
  --border:    #e2e6f0;
  --gray:      #8892a4;
  --text:      #0d1b2e;
  --soft:      #4a5568;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--blue); text-decoration: none; }

/* ── NAV ──────────────────────────────────────────────────── */
#icfc-nav {
  position: fixed; top: 14px; left: 0; right: 0; margin: 0 auto;
  width: min(900px, 90vw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.6rem; height: 56px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px) saturate(2);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(16,99,158,.12);
  z-index: 200;
  transition: top .3s ease, opacity .3s ease;
}
#icfc-nav.hidden { top: -80px; opacity: 0; pointer-events: none; }
.nav-logo { font-weight: 900; font-size: 1.25rem; color: var(--blue); letter-spacing: -.03em; text-decoration: none; }
.nav-logo span { color: var(--yellow-dk); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a { font-size: .8rem; font-weight: 600; color: var(--soft); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--yellow); color: var(--text); font-weight: 700; font-size: .8rem; text-decoration: none; padding: .5rem 1.2rem; border-radius: 100px; transition: background .2s, transform .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--yellow-dk); transform: translateY(-1px); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ── HERO ─────────────────────────────────────────────────── */
.icfc-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 6% 70px;
  background: var(--blue); position: relative; overflow: hidden;
}
.icfc-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 75% 40%, rgba(255,211,33,.1) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 90%,  rgba(11,74,120,.7)  0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-left  { position: relative; z-index: 2; }
.hero-right { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,211,33,.12); border: 1px solid rgba(255,211,33,.28);
  color: var(--yellow); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .32rem .85rem; border-radius: 100px; margin-bottom: 1.6rem;
}
.hero-badge i { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; display: inline-block; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-left h1 { font-weight: 900; font-size: clamp(2.2rem,4vw,3.8rem); line-height: 1.07; letter-spacing: -.04em; color: #fff; margin-bottom: 1.3rem; }
.hero-left h1 em { font-style: normal; color: var(--yellow); display: block; }
.hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 460px; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }
.stat-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.3rem; width: 100%; max-width: 380px;
}
.stat-row { display: flex; align-items: center; gap: 1.1rem; }
.stat-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(255,211,33,.13); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-val { font-weight: 900; font-size: 1.5rem; color: var(--yellow); line-height: 1; letter-spacing: -.02em; }
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 300; margin-top: .15rem; }
.stat-div { height: 1px; background: rgba(255,255,255,.07); }
@media (max-width: 820px) { .icfc-hero { grid-template-columns: 1fr; } .hero-right { display: none; } }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-y { background: var(--yellow); color: var(--text); font-weight: 800; font-size: .88rem; text-decoration: none; padding: .82rem 1.9rem; border-radius: 9px; transition: all .25s; display: inline-block; }
.btn-y:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,211,33,.3); }
.btn-ghost { background: transparent; color: #fff; font-weight: 600; font-size: .88rem; text-decoration: none; padding: .82rem 1.9rem; border-radius: 9px; border: 1.5px solid rgba(255,255,255,.22); transition: all .25s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); }
.btn-blue { background: var(--blue); color: #fff; font-weight: 700; font-size: .88rem; text-decoration: none; padding: .85rem 2rem; border-radius: 10px; transition: all .25s; display: inline-block; }
.btn-blue:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(16,99,158,.22); }
.btn-blue:hover { color: #fff; }

/* ── PROMISE BAND ─────────────────────────────────────────── */
.icfc-promise { background: var(--yellow); padding: 1.4rem 5%; text-align: center; }
.icfc-promise p { font-weight: 700; font-size: .95rem; color: var(--text); }

/* ── SHARED SECTION ───────────────────────────────────────── */
.icfc-section { padding: 88px 6%; }
.sec-label { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); margin-bottom: .9rem; position: relative; padding-left: 1.1rem; }
.sec-label::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; }
.sec-title { font-weight: 900; font-size: clamp(1.8rem,3vw,2.7rem); line-height: 1.13; letter-spacing: -.03em; color: var(--text); margin-bottom: .9rem; }
.sec-title em { font-style: normal; color: var(--blue); }
.sec-sub { font-size: .98rem; font-weight: 300; color: var(--soft); line-height: 1.75; max-width: 540px; }
.sec-head { margin-bottom: 3.2rem; }

/* ── TARGETS ──────────────────────────────────────────────── */
.icfc-targets { background: var(--off); }
.targets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.4rem; }
a.target-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: 16px; padding: 2rem 1.8rem;
  border: 1.5px solid var(--border); transition: all .3s; position: relative; overflow: hidden;
}
a.target-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
a.target-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(16,99,158,.1); transform: translateY(-3px); }
a.target-card:hover::after { transform: scaleX(1); }
.t-emoji { font-size: 1.9rem; margin-bottom: .9rem; display: block; }
.t-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
.t-title { font-weight: 800; font-size: 1.15rem; color: var(--text); margin-bottom: .65rem; line-height: 1.3; letter-spacing: -.01em; }
.t-msg { font-size: .85rem; color: var(--soft); line-height: 1.65; font-style: italic; font-weight: 300; margin-bottom: 1rem; }
.t-arrow { font-size: .78rem; font-weight: 700; color: var(--blue); letter-spacing: .02em; transition: letter-spacing .2s; }
a.target-card:hover .t-arrow { letter-spacing: .06em; }

/* ── ACCORDION ────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: .9rem; }
.acc-item { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--white); transition: border-color .3s, box-shadow .3s; }
.acc-item.open { border-color: var(--blue); box-shadow: 0 6px 28px rgba(16,99,158,.1); }
.acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.8rem; background: none; border: none; cursor: pointer; text-align: left; transition: background .2s; }
.acc-btn:hover { background: var(--off); }
.acc-item.open .acc-btn { background: var(--blue); }
.acc-left { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.acc-tag { font-weight: 700; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; background: var(--blue); color: #fff; padding: .28rem .8rem; border-radius: 100px; flex-shrink: 0; transition: background .2s; }
.acc-item.open .acc-tag { background: rgba(255,255,255,.18); }
.acc-sub { font-size: .88rem; font-weight: 500; color: var(--soft); transition: color .2s; }
.acc-item.open .acc-sub { color: rgba(255,255,255,.7); }
.acc-right { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.acc-price { font-size: .82rem; font-weight: 600; color: var(--gray); white-space: nowrap; transition: color .2s; }
.acc-item.open .acc-price { color: rgba(255,255,255,.55); }
.acc-chevron { display: flex; color: var(--gray); transition: transform .38s cubic-bezier(.4,0,.2,1), color .2s; }
.acc-item.open .acc-chevron { transform: rotate(180deg); color: #fff; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.4,0,.2,1); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-inner { overflow: hidden; }
.acc-item.open .acc-inner { padding: 1.6rem; }

/* ── PACK CARDS ───────────────────────────────────────────── */
.packs-row { display: flex; flex-wrap: wrap; gap: 1.3rem; justify-content: center; }
.pack-card { flex: 1 1 260px; max-width: 340px; border-radius: 14px; border: 1.5px solid var(--border); overflow: hidden; display: flex; flex-direction: column; background: var(--white); transition: all .3s; }
.pack-card:hover { border-color: var(--blue-lt); box-shadow: 0 10px 32px rgba(16,99,158,.11); transform: translateY(-3px); }
.pack-card.star { border-color: var(--yellow); box-shadow: 0 4px 16px rgba(255,211,33,.18); }
.pack-top { padding: 1.5rem 1.6rem; background: var(--blue); position: relative; overflow: hidden; }
.pack-top::before { content: ''; position: absolute; top: -30px; right: -30px; width: 110px; height: 110px; background: rgba(255,255,255,.04); border-radius: 50%; }
.pack-badge { font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--yellow); margin-bottom: .65rem; }
.pack-name { font-weight: 900; font-size: 1.35rem; color: #fff; letter-spacing: -.025em; margin-bottom: .2rem; }
.pack-target { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 300; }
.pack-price-row { display: flex; align-items: baseline; gap: .28rem; margin-top: .9rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.09); }
.pack-from  { font-size: .7rem;  color: rgba(255,255,255,.45); }
.pack-price { font-weight: 900;  font-size: 1.65rem; color: var(--yellow); letter-spacing: -.02em; }
.pack-ht    { font-size: .7rem;  color: rgba(255,255,255,.35); }
.pack-body  { padding: 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.pack-desc  { font-size: .82rem; color: var(--soft); line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.pack-features { list-style: none; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.pack-features li { font-size: .82rem; color: var(--text); display: flex; align-items: flex-start; gap: .55rem; line-height: 1.5; }
.pack-features li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: .8rem; flex-shrink: 0; margin-top: .05rem; }
.pack-foot { padding: 1rem 1.6rem; border-top: 1px solid var(--border); background: var(--off); }
.pack-card.star .pack-foot { background: rgba(255,211,33,.05); }
.pack-cta { display: block; text-align: center; text-decoration: none; background: var(--blue); color: #fff; font-weight: 700; font-size: .78rem; padding: .6rem 1rem; border-radius: 8px; transition: all .2s; letter-spacing: .02em; }
.pack-card.star .pack-cta { background: var(--yellow); color: var(--text); }
.pack-cta:hover { opacity: .85; transform: translateY(-1px); }
.pack-cta:hover { color: #fff; }
.pack-card.star .pack-cta:hover { color: var(--text); }

/* ── DIFFERENTIATORS ──────────────────────────────────────── */
.icfc-diff { background: var(--blue); color: #fff; }
.icfc-diff .sec-label { color: var(--yellow); }
.icfc-diff .sec-label::before { background: var(--yellow); }
.icfc-diff .sec-title { color: #fff; }
.icfc-diff .sec-title em { color: var(--yellow); }
.icfc-diff .sec-sub { color: rgba(255,255,255,.6); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 1.3rem; margin-top: 3rem; }
.diff-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 1.8rem 1.6rem; transition: background .3s; }
.diff-card:hover { background: rgba(255,255,255,.1); }
.diff-num   { font-weight: 900; font-size: 2.2rem; color: rgba(255,211,33,.2); line-height: 1; margin-bottom: .9rem; letter-spacing: -.04em; }
.diff-title { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: .55rem; line-height: 1.35; }
.diff-txt   { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; font-weight: 300; }

/* ── CTA ──────────────────────────────────────────────────── */
.icfc-cta { background: var(--off); text-align: center; }
.cta-box { max-width: 660px; margin: 0 auto; background: var(--white); border-radius: 22px; padding: 3.2rem 2.8rem; border: 1.5px solid var(--border); box-shadow: 0 16px 48px rgba(16,99,158,.07); }
.cta-ico { font-size: 3rem; margin-bottom: 1.3rem; display: block; }
.cta-box h2 { font-weight: 900; font-size: clamp(1.6rem,2.5vw,2.1rem); letter-spacing: -.03em; margin-bottom: .7rem; color: var(--text); }
.cta-box h2 span { color: var(--blue); }
.cta-box p { font-size: .92rem; color: var(--soft); line-height: 1.75; font-weight: 300; margin-bottom: 1.9rem; }
.cta-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: .73rem; color: var(--gray); margin-top: 1.1rem; }

/* ── QUIZ ─────────────────────────────────────────────────── */
.icfc-quiz { background: var(--text); padding: 90px 6%; position: relative; overflow: hidden; }
.icfc-quiz::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 80% 50%, rgba(255,211,33,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 55% at 5%  85%, rgba(16,99,158,.25)  0%, transparent 60%);
}
.quiz-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size: 50px 50px; }
.quiz-wrap { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.quiz-head { text-align: center; margin-bottom: 2.8rem; }
.quiz-badge { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,211,33,.1); border: 1px solid rgba(255,211,33,.22); color: var(--yellow); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .32rem .9rem; border-radius: 100px; margin-bottom: 1.3rem; }
.quiz-head h2 { font-weight: 900; font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; letter-spacing: -.03em; line-height: 1.15; margin-bottom: .75rem; }
.quiz-head h2 span { color: var(--yellow); }
.quiz-head p { font-size: .9rem; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.75; max-width: 500px; margin: 0 auto; }
.q-progress { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.8rem; }
.q-bar  { flex: 1; height: 3px; background: rgba(255,255,255,.09); border-radius: 3px; overflow: hidden; }
.q-fill { height: 100%; background: linear-gradient(90deg,var(--blue-lt),var(--yellow)); border-radius: 3px; transition: width .4s cubic-bezier(.4,0,.2,1); width: 0%; }
.q-lbl  { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.35); white-space: nowrap; min-width: 38px; text-align: right; }
.quiz-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 2rem 2.2rem; backdrop-filter: blur(8px); }
.q-step { display: none; }
.q-step.on { display: block; }
.q-question { font-weight: 700; font-size: 1.1rem; color: #fff; line-height: 1.45; margin-bottom: 1.5rem; letter-spacing: -.01em; }
.q-num { display: inline-block; background: var(--yellow); color: var(--text); font-size: .65rem; font-weight: 800; padding: .13rem .45rem; border-radius: 5px; margin-right: .5rem; letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }
.q-opts { display: flex; flex-direction: column; gap: .65rem; }
.q-opt { background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.09); border-radius: 11px; padding: .85rem 1.1rem; display: flex; align-items: center; gap: .8rem; cursor: pointer; transition: all .18s; color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; text-align: left; }
.q-opt:hover { border-color: rgba(255,211,33,.38); background: rgba(255,211,33,.06); color: #fff; }
.q-opt.sel  { border-color: var(--yellow); background: rgba(255,211,33,.1); color: #fff; }
.q-opt-ico  { font-size: 1.15rem; width: 26px; text-align: center; flex-shrink: 0; }
.q-nav { display: flex; justify-content: flex-end; margin-top: 1.4rem; }
.btn-next { background: var(--blue); color: #fff; font-weight: 700; font-size: .83rem; border: none; padding: .7rem 1.7rem; border-radius: 9px; cursor: pointer; transition: all .2s; letter-spacing: .02em; opacity: .38; pointer-events: none; font-family: 'Montserrat', sans-serif; }
.btn-next.on { opacity: 1; pointer-events: auto; }
.btn-next.on:hover { background: var(--blue-dk); transform: translateY(-1px); }
.q-result { display: none; text-align: center; }
.q-result.on { display: block; }
.r-ico   { font-size: 3.2rem; margin-bottom: .9rem; display: block; animation: pop .45s ease both; }
@keyframes pop { 0%{transform:scale(.4);opacity:0} 70%{transform:scale(1.12)} 100%{transform:scale(1);opacity:1} }
.r-badge { display: inline-block; background: var(--yellow); color: var(--text); font-weight: 800; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: .32rem .9rem; border-radius: 100px; margin-bottom: .9rem; }
.r-title { font-weight: 900; font-size: 1.55rem; color: #fff; letter-spacing: -.025em; margin-bottom: .65rem; line-height: 1.2; }
.r-title span { color: var(--yellow); }
.r-desc  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; font-weight: 300; max-width: 460px; margin: 0 auto 1.8rem; }
.r-btns  { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.btn-r-main { background: var(--yellow); color: var(--text); font-weight: 800; font-size: .88rem; text-decoration: none; padding: .85rem 2rem; border-radius: 10px; transition: all .25s; display: inline-block; }
.btn-r-main:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,211,33,.3); color: var(--text); }
.btn-r-sec { background: transparent; color: rgba(255,255,255,.6); font-weight: 600; font-size: .88rem; border: 1.5px solid rgba(255,255,255,.14); padding: .85rem 1.6rem; border-radius: 10px; cursor: pointer; transition: all .25s; font-family: 'Montserrat', sans-serif; }
.btn-r-sec:hover { border-color: rgba(255,255,255,.38); color: #fff; }
.quiz-note { text-align: center; margin-top: 1.4rem; font-size: .72rem; color: rgba(255,255,255,.2); }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.6rem; }
.post-card { background: var(--white); border-radius: 14px; border: 1.5px solid var(--border); overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.post-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(16,99,158,.1); transform: translateY(-3px); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--off); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-cat  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .6rem; }
.post-title { font-weight: 800; font-size: 1.05rem; color: var(--text); line-height: 1.35; margin-bottom: .7rem; letter-spacing: -.01em; text-decoration: none; display: block; }
.post-title:hover { color: var(--blue); }
.post-excerpt { font-size: .82rem; color: var(--soft); line-height: 1.7; font-weight: 300; flex: 1; margin-bottom: 1rem; }
.post-meta { font-size: .72rem; color: var(--gray); font-weight: 500; }
.blog-pagination { display: flex; justify-content: center; gap: .6rem; margin-top: 3rem; }
.blog-pagination a, .blog-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--border); font-size: .85rem; font-weight: 600; color: var(--soft); text-decoration: none; transition: all .2s; }
.blog-pagination a:hover { border-color: var(--blue); color: var(--blue); }
.blog-pagination .current { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-weight: 900; font-size: clamp(1.6rem,2.5vw,2.2rem); letter-spacing: -.03em; margin-bottom: 1rem; color: var(--text); }
.contact-info p { font-size: .95rem; color: var(--soft); line-height: 1.75; font-weight: 300; margin-bottom: 1.8rem; }
.contact-item { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; font-size: .9rem; color: var(--soft); font-weight: 500; }
.contact-item span:first-child { font-size: 1.2rem; width: 32px; text-align: center; flex-shrink: 0; }
.contact-sent { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 1rem 1.4rem; border-radius: 10px; font-size: .9rem; font-weight: 600; margin-bottom: 1.5rem; display: none; }
.contact-sent.show { display: block; }
.form-box { background: var(--white); border-radius: 18px; padding: 2.4rem; border: 1.5px solid var(--border); box-shadow: 0 8px 32px rgba(16,99,158,.07); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Montserrat', sans-serif; font-size: .88rem; color: var(--text);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(16,99,158,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; background: var(--blue); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; padding: .9rem; border: none; border-radius: 10px; cursor: pointer; transition: all .25s; letter-spacing: .02em; }
.form-submit:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(16,99,158,.22); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── LEGAL / CONTENT PAGE ─────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 120px 5% 80px; }
.legal-wrap h1 { font-weight: 900; font-size: clamp(1.8rem,3vw,2.5rem); letter-spacing: -.03em; margin-bottom: 2rem; color: var(--text); }
.legal-wrap h2 { font-weight: 800; font-size: 1.25rem; color: var(--blue); margin: 2.2rem 0 .8rem; letter-spacing: -.01em; }
.legal-wrap p  { font-size: .92rem; color: var(--soft); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.legal-wrap a  { color: var(--blue); text-decoration: underline; }

/* ── SINGLE POST ──────────────────────────────────────────── */
.single-wrap { max-width: 760px; margin: 0 auto; padding: 120px 5% 80px; }
.single-cat  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; display: block; }
.single-wrap h1 { font-weight: 900; font-size: clamp(1.8rem,3vw,2.8rem); letter-spacing: -.03em; margin-bottom: 1rem; color: var(--text); line-height: 1.1; }
.single-meta { font-size: .78rem; color: var(--gray); margin-bottom: 2.5rem; font-weight: 500; }
.single-thumb { border-radius: 14px; overflow: hidden; margin-bottom: 2.5rem; }
.single-content { font-size: .97rem; color: var(--soft); line-height: 1.85; font-weight: 300; }
.single-content h2 { font-weight: 800; font-size: 1.4rem; color: var(--text); margin: 2rem 0 .8rem; }
.single-content h3 { font-weight: 700; font-size: 1.1rem; color: var(--text); margin: 1.5rem 0 .6rem; }
.single-content p  { margin-bottom: 1.2rem; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.single-content li { margin-bottom: .4rem; }
.single-content a  { color: var(--blue); text-decoration: underline; }
.single-content blockquote { border-left: 3px solid var(--yellow); padding-left: 1.2rem; color: var(--soft); font-style: italic; margin: 1.5rem 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.icfc-footer { background: #07111f; padding: 2.2rem 6%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .9rem; }
.footer-logo { font-weight: 900; font-size: 1.1rem; color: #fff; }
.footer-logo span { color: var(--yellow); }
.icfc-footer p { font-size: .75rem; color: rgba(255,255,255,.35); }
.icfc-footer a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.icfc-footer a:hover { color: var(--yellow); }

/* ── UTILITY ──────────────────────────────────────────────── */
.page-header-spacer { height: 84px; }
