/* ═══════════════════════════════════════
   HAFSA B2B — COMPLETE DESIGN SYSTEM
   Navy #2F4A9D · Gold #b8915a · Dark bg
═══════════════════════════════════════ */
:root {
  --gold:    #b8915a; --gold2: #d4a96a;
  --navy:    #2F4A9D; --navy2: #1e3178;
  --dark:    #0d0d0d; --dark2: #111111;
  --dark3:   #181818; --dark4: #1e1e1e;
  --white:   #ffffff;
  --gray:    rgba(255,255,255,.55);
  --gray2:   rgba(255,255,255,.35);
  --border:  rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.13);
  --f: 'Manrope', system-ui, sans-serif;
  --r: 6px; --r2: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 70px;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: all .25s; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--f); cursor: pointer; }
input, textarea, select { font-family: var(--f); }

/* ── Layout ── */
.w   { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.wsm { max-width: 780px;  margin: 0 auto; padding: 0 40px; }
.wmd { max-width: 960px;  margin: 0 auto; padding: 0 48px; }
.sec { padding: 100px 0; }

/* ── Typography ── */
h1 { font-size: clamp(2.6rem,5.5vw,4.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; color: var(--white); }
h2 { font-size: clamp(2rem,3.5vw,3rem);     font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: var(--white); }
h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); }
p  { color: var(--gray); font-size: 15px; line-height: 1.85; }

/* ── Pill label ── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(184,145,90,.1); border: 1px solid rgba(184,145,90,.25);
  color: var(--gold); padding: 6px 16px; border-radius: 40px;
  font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 16px;
}
.pill-w { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; font-family: var(--f);
  border: none; cursor: pointer; transition: all .25s; white-space: nowrap;
}
.btn-gold    { background: var(--gold);  color: #fff; }
.btn-gold:hover   { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,145,90,.35); }
.btn-navy    { background: var(--navy);  color: #fff; }
.btn-navy:hover   { background: var(--navy2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.22); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark    { background: var(--dark4); color: #fff; border: 1px solid var(--border2); }
.btn-dark:hover   { border-color: var(--gold); color: var(--gold); }
.btn-lg  { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ════════════ HEADER ════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 70px; background: rgba(13,13,13,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.hdr { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 38px; height: 38px; background: var(--navy);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: var(--gold);
}
.logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; display: block; line-height: 1.1; }
.logo-sub  { font-size: 10px; color: rgba(255,255,255,.38); letter-spacing: .1em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.65);
  padding: 7px 13px; border-radius: var(--r); transition: all .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { background: var(--gold) !important; color: #fff !important; padding: 9px 20px !important; margin-left: 8px; }
.nav-cta:hover { background: var(--gold2) !important; }
.hdr-ham { display: none; background: none; border: 1px solid var(--border2); border-radius: var(--r); padding: 7px 9px; color: #fff; font-size: 20px; }
/* Mobile */
.mob-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--dark2); z-index: 9998;
  flex-direction: column; padding: 24px 32px; gap: 2px;
  border-top: 1px solid var(--border); overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.72);
  padding: 13px 0; border-bottom: 1px solid var(--border); transition: all .2s;
}
.mob-nav a:hover { color: var(--gold); padding-left: 6px; }

/* ════════════ PAGE HERO ════════════ */
.page-hero {
  background: var(--dark2); border-bottom: 1px solid var(--border);
  padding: 72px 0 60px; text-align: center;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 540px; margin: 0 auto; font-size: 16px; }

/* ════════════ HERO (homepage) ════════════ */
.hero {
  min-height: calc(100vh - 70px); display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 50%, rgba(47,74,157,.16), transparent 60%),
    radial-gradient(ellipse 45% 55% at 5% 20%, rgba(184,145,90,.08), transparent 55%);
}
.hero-grid {
  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: 60px 60px;
}
.hero-body { position: relative; z-index: 2; padding: 100px 0 80px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,145,90,.08); border: 1px solid rgba(184,145,90,.22);
  color: var(--gold); padding: 7px 18px; border-radius: 40px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 { max-width: 860px; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.58); max-width: 580px; margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border2); border-radius: var(--r2);
  overflow: hidden; max-width: 600px;
}
.hs { padding: 22px 18px; text-align: center; border-right: 1px solid var(--border2); background: rgba(255,255,255,.02); }
.hs:last-child { border-right: none; }
.hs-n { font-size: 2.2rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; margin-bottom: 5px; letter-spacing: -.03em; }
.hs-l { font-size: 10px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* ════════════ TRUST BAR ════════════ */
.trust-bar { background: rgba(255,255,255,.022); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-lbl { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-right: 16px; white-space: nowrap; }
.trust-tag { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.42); padding: 5px 13px; border: 1px solid var(--border); border-radius: 40px; transition: all .2s; }
.trust-tag:hover { border-color: var(--gold); color: var(--gold); }
.trust-tag i { color: var(--gold); }

/* ════════════ SPLIT / ABOUT ════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vis {
  position: relative; border-radius: var(--r2); overflow: hidden;
  min-height: 460px; display: flex; align-items: center; justify-content: center;
}
.vis-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy), rgba(184,145,90,.4)); }
.vis-txt { position: relative; z-index: 1; font-size: 5.5rem; font-weight: 900; color: rgba(255,255,255,.06); letter-spacing: -.06em; user-select: none; }
.vis-badge {
  position: absolute; bottom: 24px; right: -18px;
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 16px 22px; text-align: center;
  min-width: 158px; box-shadow: var(--shadow);
}
.vb-n { font-size: 2rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; letter-spacing: -.04em; }
.vb-l { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 4px; display: block; text-transform: uppercase; letter-spacing: .07em; }
.chk { list-style: none; margin: 22px 0 30px; }
.chk li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: rgba(255,255,255,.72); }
.chk li:last-child { border-bottom: none; }
.chk li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════ SECTION HEAD ════════════ */
.sh { text-align: center; max-width: 640px; margin: 0 auto 60px; }

/* ════════════ SERVICES ════════════ */
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.srv-card { background: var(--dark2); padding: 38px 30px; border-top: 2px solid transparent; transition: all .3s; }
.srv-card:hover { background: var(--dark3); border-top-color: var(--gold); }
.srv-num { font-size: 11px; font-weight: 800; letter-spacing: .12em; color: rgba(184,145,90,.45); margin-bottom: 18px; display: block; }
.srv-icon { font-size: 28px; color: rgba(47,74,157,.8); margin-bottom: 16px; display: block; transition: color .3s; }
.srv-card:hover .srv-icon { color: var(--gold); }
.srv-card h4 { margin-bottom: 9px; }
.srv-card p { font-size: 13px; line-height: 1.75; margin-bottom: 18px; }
.srv-lnk { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); display: inline-flex; align-items: center; gap: 6px; transition: all .25s; }
.srv-card:hover .srv-lnk { color: var(--gold); gap: 10px; }

/* ════════════ WHY / FEATURES ════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.why-card { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); padding: 28px 22px; transition: border-color .3s, transform .3s; }
.why-card:hover { border-color: rgba(184,145,90,.28); transform: translateY(-3px); }
.why-icon { font-size: 26px; color: var(--gold); margin-bottom: 14px; display: block; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 13px; line-height: 1.75; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border2); border-radius: var(--r2); overflow: hidden; }
.stat-box { text-align: center; padding: 26px 18px; border-right: 1px solid var(--border2); background: rgba(255,255,255,.018); }
.stat-box:last-child { border-right: none; }
.stat-n { font-size: 2.8rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; letter-spacing: -.04em; }
.stat-l { font-size: 10px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* ════════════ PROCESS STEPS ════════════ */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.proc-step { background: var(--dark2); padding: 32px 22px; border-right: 1px solid var(--border); transition: background .3s; }
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: var(--dark3); }
.proc-step.hot { background: var(--navy); }
.proc-step.hot:hover { background: var(--navy2); }
.proc-n { font-size: 2.8rem; font-weight: 900; color: rgba(184,145,90,.18); line-height: 1; margin-bottom: 16px; }
.proc-step.hot .proc-n { color: rgba(255,255,255,.12); }
.proc-step h4 { margin-bottom: 8px; }
.proc-step p { font-size: 13px; line-height: 1.7; }
.proc-step.hot p { color: rgba(255,255,255,.6); }

/* ════════════ PRICING ════════════ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pc { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); padding: 40px 34px; transition: border-color .3s, transform .3s; position: relative; }
.pc:hover { border-color: rgba(184,145,90,.28); transform: translateY(-4px); }
.pc.hot { background: var(--navy); border-color: rgba(47,74,157,.5); margin-top: -16px; box-shadow: 0 24px 64px rgba(47,74,157,.25); }
.pc.hot::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; padding: 4px 18px; border-radius: 40px; font-size: 11px; font-weight: 800; white-space: nowrap; }
.p-tier { font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.p-name { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 20px; letter-spacing: -.02em; }
.p-amt  { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; letter-spacing: -.04em; }
.p-amt sub { font-size: 1.1rem; font-weight: 400; vertical-align: super; }
.p-per  { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.pc.hot .p-per { color: rgba(255,255,255,.5); }
.p-hr   { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.pc.hot .p-hr { border-color: rgba(255,255,255,.1); }
.p-desc { font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.pc.hot .p-desc { color: rgba(255,255,255,.65); }
.p-ul { list-style: none; margin: 0 0 26px; }
.p-ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.65); padding: 8px 0; border-bottom: 1px solid var(--border); }
.pc.hot .p-ul li { border-color: rgba(255,255,255,.1); }
.p-ul li:last-child { border-bottom: none; }
.p-ul li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.inc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: var(--r2); overflow: hidden; }
.inc-card { background: var(--dark3); padding: 28px 20px; text-align: center; }
.inc-icon { font-size: 28px; color: var(--gold); display: block; margin-bottom: 12px; }
.inc-card h5 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 8px; letter-spacing: 0; text-transform: none; }
.inc-card p { font-size: 13px; line-height: 1.7; }

/* ════════════ CTA BANNER ════════════ */
.cta-banner { background: var(--navy); border-radius: var(--r2); padding: 68px; text-align: center; position: relative; overflow: hidden; border: 1px solid rgba(47,74,157,.4); }
.cta-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cta-banner::after  { content: ''; position: absolute; left: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(184,145,90,.05); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 28px; font-size: 16px; }

/* ════════════ FAQ ════════════ */
.faq-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-vis { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); min-height: 440px; position: relative; overflow: hidden; }
.faq-vis-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy), rgba(184,145,90,.25)); }
.faq-badge { position: absolute; bottom: 24px; right: 24px; background: var(--dark2); border: 1px solid var(--border2); border-radius: var(--r); padding: 18px 22px; text-align: center; box-shadow: var(--shadow); }
.faq-badge-n { font-size: 2rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; letter-spacing: -.04em; }
.faq-badge-l { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 5px; display: block; text-transform: uppercase; letter-spacing: .07em; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-size: 15px; font-weight: 600; color: #fff; font-family: var(--f); transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-q .faq-ic { font-size: 18px; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-ans { max-height: 300px; }
.faq-ans p { font-size: 14px; padding-bottom: 20px; line-height: 1.85; }

/* ════════════ CONTACT ════════════ */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-icon { width: 44px; height: 44px; background: rgba(47,74,157,.14); border: 1px solid rgba(47,74,157,.28); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.ci-lbl { display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: rgba(255,255,255,.8); }
.ci-val a { color: inherit; } .ci-val a:hover { color: var(--gold); }
.soc-row { display: flex; gap: 10px; margin-top: 24px; }
.soc-btn { width: 40px; height: 40px; background: var(--dark4); border: 1px solid var(--border2); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 17px; color: rgba(255,255,255,.38); transition: all .2s; }
.soc-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.form-box { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); padding: 40px; }
.form-box h3 { font-size: 1.5rem; margin-bottom: 24px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--dark4); border: 1px solid var(--border2); border-radius: var(--r); padding: 11px 14px; font-size: 14px; color: #fff; outline: none; transition: border-color .2s; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.22); }
.fg select { color: rgba(255,255,255,.45); }
.fg select option { background: var(--dark3); color: #fff; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,145,90,.1); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-msg { display: none; padding: 12px 15px; border-radius: var(--r); font-size: 14px; margin-bottom: 14px; }
.form-ok  { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.28); color: #4ade80; }
.form-err { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.28); color: #f87171; }

/* ════════════ EDU / TIMELINE ════════════ */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.edu-card { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); padding: 28px 22px; transition: border-color .3s, transform .3s; }
.edu-card:hover { border-color: rgba(184,145,90,.28); transform: translateY(-3px); }
.edu-year { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.edu-card h4 { margin-bottom: 4px; }
.edu-school { font-size: 13px; color: #7a9fd4; font-weight: 600; margin-bottom: 8px; }
.edu-card p { font-size: 13px; line-height: 1.7; }
.timeline { border-left: 2px solid rgba(184,145,90,.28); padding-left: 28px; margin-left: 8px; }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item::before { content: ''; width: 11px; height: 11px; background: var(--gold); border-radius: 50%; position: absolute; left: -35px; top: 5px; box-shadow: 0 0 0 3px rgba(184,145,90,.2); }
.tl-period { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.tl-role { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.tl-company { font-size: 13px; color: #7a9fd4; font-weight: 600; margin-bottom: 9px; }
.tl-item p { font-size: 13px; line-height: 1.8; }

/* ════════════ BLOG ════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); overflow: hidden; transition: border-color .3s, transform .3s; }
.blog-card:hover { border-color: rgba(184,145,90,.25); transform: translateY(-4px); }
.blog-thumb { aspect-ratio: 16/9; background: var(--navy); position: relative; overflow: hidden; display: block; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; padding: 3px 12px; border-radius: 40px; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.blog-body { padding: 22px; }
.blog-meta { font-size: 11px; color: rgba(255,255,255,.32); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h4 { color: #fff; margin-bottom: 9px; line-height: 1.4; }
.blog-card h4 a { color: inherit; } .blog-card h4 a:hover { color: var(--gold); }
.blog-card p { font-size: 13px; line-height: 1.75; margin-bottom: 14px; }
.read-more { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.blog-card:hover .read-more { gap: 9px; }
.pagi { margin-top: 48px; }
.pagi .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagi .nav-links a, .pagi .nav-links span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); text-decoration: none; padding: 0 12px; transition: all .25s; }
.pagi .nav-links a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.pagi .nav-links .current { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ════════════ SINGLE POST ════════════ */
.post-layout { display: grid; grid-template-columns: 1fr 220px; gap: 60px; align-items: start; padding: 60px 0 80px; }
.post-content { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,.7); }
.post-content h2 { font-size: 1.8rem; margin: 40px 0 16px; }
.post-content h3 { font-size: 1.4rem; margin: 32px 0 14px; }
.post-content p  { margin-bottom: 20px; color: rgba(255,255,255,.7); }
.post-content a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul { list-style: disc; padding-left: 22px; margin-bottom: 20px; }
.post-content ol { list-style: decimal; padding-left: 22px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; color: rgba(255,255,255,.7); }
.post-content blockquote { border-left: 3px solid var(--gold); margin: 28px 0; padding: 16px 24px; background: rgba(255,255,255,.02); border-radius: 0 var(--r) var(--r) 0; font-size: 1.05rem; }
.post-content img { border-radius: var(--r2); margin: 24px 0; }
.post-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--r2); padding: 24px; margin-bottom: 20px; }
.sidebar-avatar { width: 60px; height: 60px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: rgba(255,255,255,.8); margin: 0 auto 14px; }
.sidebar-card .sb-name { color: #fff; font-weight: 700; text-align: center; display: block; font-size: 14px; margin-bottom: 4px; }
.sidebar-card .sb-role { color: var(--gold); font-size: 12px; text-align: center; display: block; margin-bottom: 10px; }
.sidebar-card p { font-size: 12px; text-align: center; line-height: 1.7; }
.sidebar-cta { background: var(--navy); border: 1px solid rgba(47,74,157,.4); }
.sidebar-cta h5 { color: #fff; font-weight: 700; text-align: center; margin-bottom: 8px; font-size: .95rem; letter-spacing: 0; text-transform: none; }
.sidebar-cta p { color: rgba(255,255,255,.6); }

/* ════════════ FOOTER ════════════ */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 68px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ft-logo-icon { width: 36px; height: 36px; background: var(--navy); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); }
.ft-logo-name { font-size: 1rem; font-weight: 800; color: #fff; display: block; line-height: 1.1; }
.ft-logo-sub  { font-size: 9px; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; }
.ft-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.38); }
.ft-col h5 { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a { font-size: 13px; color: rgba(255,255,255,.38); transition: color .2s; }
.ft-col ul li a:hover { color: var(--gold); }
.ft-ci { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.38); margin-bottom: 10px; }
.ft-ci i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ft-ci a { color: rgba(255,255,255,.38); transition: color .2s; } .ft-ci a:hover { color: var(--gold); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; font-size: 12px; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: 10px; }
.ft-social { display: flex; gap: 12px; }
.ft-social a { font-size: 16px; color: rgba(255,255,255,.28); transition: color .2s; } .ft-social a:hover { color: var(--gold); }

/* ════════════ ANIMATIONS ════════════ */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade:nth-child(2) { transition-delay: .1s; }
.fade:nth-child(3) { transition-delay: .2s; }
.fade:nth-child(4) { transition-delay: .3s; }
.fade:nth-child(5) { transition-delay: .4s; }
.fade:nth-child(6) { transition-delay: .5s; }

/* ════════════ RESPONSIVE ════════════ */
@media(max-width:1024px) {
  .split, .faq-split { grid-template-columns: 1fr; gap: 48px; }
  .vis { min-height: 280px; }
  .vis-badge { right: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pc.hot { margin-top: 0; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .w, .wsm, .wmd { padding: 0 28px; }
}
@media(max-width:768px) {
  body { padding-top: 64px; }
  .nav { display: none; }
  .hdr-ham { display: flex; align-items: center; }
  .sec { padding: 64px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 22px; }
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .form-row2 { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr 1fr; }
  .w { padding: 0 20px; }
}
@media(max-width:480px) { .inc-grid { grid-template-columns: 1fr; } }
