/* ============================================================
   WizQuest WordPress Theme — Main Stylesheet
   Theme: Warm Professional
   ============================================================ */

:root {
  --navy:      #1e3a5f;
  --navy-dark: #0f2040;
  --navy-mid:  #2a4a72;
  --amber:     #f59e0b;
  --amber-lt:  #fef3c7;
  --amber-md:  #fde68a;
  --amber-dk:  #d97706;
  --cream:     #fffdf7;
  --cream2:    #fffbf0;
  --cream3:    #fef6e4;
  --warm-line: #f0e8d8;
  --warm-line2:#e8dcc8;
  --text:      #1a1207;
  --text2:     #4a4032;
  --text3:     #78716c;
  --text4:     #a8967c;
  --white:     #ffffff;
  --green:     #10b981;
  --red:       #ef4444;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-h:     72px;
  --shadow-sm: 0 2px 8px rgba(30,58,95,.08);
  --shadow:    0 8px 32px rgba(30,58,95,.12);
  --shadow-lg: 0 20px 60px rgba(30,58,95,.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
p { color: var(--text2); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Utility ── */
.amber-text  { color: var(--amber-dk); }
.navy-text   { color: var(--navy); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber-dk);
  background: var(--amber-lt); border: 1px solid var(--amber-md);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 16px;
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { font-size: 1.05rem; color: var(--text3); margin-top: 12px; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; padding: 13px 26px;
  border-radius: var(--radius); cursor: pointer;
  transition: all .2s; white-space: nowrap; border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--amber); color: var(--navy);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-primary:hover { background: var(--amber-dk); box-shadow: 0 6px 20px rgba(245,158,11,.45); transform: translateY(-1px); }
.btn-secondary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 14px rgba(30,58,95,.25);
}
.btn-secondary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--warm-line2);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber-dk); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,247,.95); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--warm-line);
  transition: box-shadow .3s;
  height: var(--nav-h);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(30,58,95,.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > span {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-size: .875rem; font-weight: 500;
  color: var(--text2); border-radius: var(--radius);
  cursor: pointer; transition: .2s;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover { color: var(--navy); background: var(--cream3); }
.nav-links > li > a.active { color: var(--amber-dk); font-weight: 600; }
.nav-chev { font-size: .7rem; transition: transform .2s; }
.has-dropdown:hover .nav-chev { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 280px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .25s; z-index: 101;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius);
  transition: .2s; color: var(--text);
}
.dd-item:hover { background: var(--cream3); }
.dd-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content:center;
  font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.dd-icon.c1 { background: var(--amber-lt); color: var(--amber-dk); }
.dd-icon.c2 { background: #e0f2fe; color: #0369a1; }
.dd-icon.c3 { background: #dcfce7; color: #15803d; }
.dd-text strong { display: block; font-size: .875rem; color: var(--navy); margin-bottom: 2px; }
.dd-text span { font-size: .78rem; color: var(--text3); line-height: 1.4; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right .btn { padding: 9px 20px; font-size: .85rem; }

/* Hamburger */
.hamb {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius);
}
.hamb span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.hamb.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamb.open span:nth-child(2) { opacity: 0; }
.hamb.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99;
  padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  display: block; padding: 13px 16px; font-size: 1rem; font-weight: 500;
  color: var(--navy); border-radius: var(--radius);
  border-bottom: 1px solid var(--warm-line); transition: .2s;
}
.mobile-menu a:hover { background: var(--cream3); }
.m-acc-btn {
  width: 100%; text-align: left; padding: 13px 16px;
  font-size: 1rem; font-weight: 500; color: var(--navy);
  border-radius: var(--radius); border-bottom: 1px solid var(--warm-line);
  display: flex; align-items: center; justify-content: space-between;
}
.m-acc-body { display: none; padding-left: 16px; }
.m-acc.open .m-acc-body { display: block; }
.m-acc.open .m-acc-btn .nav-chev { transform: rotate(180deg); }
.m-acc-body a { font-size: .9rem; border-bottom: none; }
.m-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.m-cta .btn { width: 100%; justify-content: center; }

@media(max-width:980px) { .nav-links, .nav-right .btn-outline { display: none; } .hamb { display: flex; } }

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(245,158,11,.08), transparent 70%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30,58,95,.05), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--warm-line2);
  border-radius: 20px; padding: 6px 16px;
  font-size: .78rem; font-weight: 600; color: var(--amber-dk);
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--amber); }
.hero h1 { font-size: clamp(2.2rem,4.5vw,3.6rem); margin-bottom: 20px; }
.hero h1 .highlight {
  position: relative; display: inline-block; color: var(--amber-dk);
}
.hero h1 .highlight::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--amber); border-radius: 2px;
}
.hero-sub { font-size: 1.1rem; color: var(--text3); line-height: 1.75; margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-proof-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text3); }
.hero-proof-item i { color: var(--green); font-size: 14px; }
.hero-visual {
  background: var(--white); border: 1px solid var(--warm-line);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-lg); position: relative;
}
.hero-visual::before {
  content: ''; position: absolute; top: -1px; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--navy));
  border-radius: 0 0 3px 3px;
}
.hv-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hv-title { font-size: .85rem; font-weight: 700; color: var(--navy); }
.live-chip {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--green); font-weight: 600;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.5)} 70%{box-shadow:0 0 0 6px rgba(16,185,129,0)} }
.hv-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--warm-line);
}
.hv-row:last-child { border: none; }
.hv-label { font-size: .82rem; color: var(--text3); }
.hv-val { font-size: .82rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.badge-g { font-size: .68rem; background: #dcfce7; color: #15803d; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.badge-b { font-size: .68rem; background: var(--amber-lt); color: var(--amber-dk); padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.hv-quote { margin-top: 16px; padding: 14px; background: var(--cream3); border-radius: var(--radius); font-size: .8rem; color: var(--text3); line-height: 1.6; font-style: italic; }

@media(max-width:900px) { .hero-grid { grid-template-columns: 1fr; } .hero-visual { display: none; } }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy); padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border: none; }
.stat-num { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--amber); font-family: 'Bricolage Grotesque',sans-serif; letter-spacing: -.03em; line-height: 1; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 6px; font-weight: 500; }
@media(max-width:640px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; } .stat-item:nth-child(2) { border-right: none; } .stat-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.1); } }

/* ── TOOLS / TRUST BAR ── */
.tools-bar { background: var(--white); padding: 48px 0; border-bottom: 1px solid var(--warm-line); }
.tools-label { text-align: center; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text4); margin-bottom: 28px; }
.tools-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tool-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--cream2);
  border: 1px solid var(--warm-line); border-radius: 40px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  transition: .2s;
}
.tool-chip:hover { border-color: var(--amber); background: var(--amber-lt); color: var(--amber-dk); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tool-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── SERVICES ── */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg); padding: 30px;
  transition: .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--warm-line2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--amber-lt); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; color: var(--amber-dk);
}
.service-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: .88rem; color: var(--text3); line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: .82rem; font-weight: 600; color: var(--amber-dk); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.service-card:hover .service-link { gap: 9px; }
@media(max-width:900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px) { .services-grid { grid-template-columns: 1fr; } }

/* ── HOW WE'RE DIFFERENT ── */
.diff-section { background: var(--white); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.diff-list { display: flex; flex-direction: column; gap: 20px; }
.diff-item { display: flex; gap: 16px; }
.diff-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--amber-lt); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--amber-dk);
}
.diff-item h5 { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.diff-item p { font-size: .875rem; color: var(--text3); line-height: 1.6; }
.diff-visual {
  background: var(--cream); border: 1px solid var(--warm-line);
  border-radius: var(--radius-xl); padding: 32px;
}
.compare-row {
  display: grid; grid-template-columns: 1fr 28px 1fr; gap: 10px;
  align-items: center; margin-bottom: 12px;
}
.compare-old {
  padding: 10px 14px; background: #fff1f1; border: 1px solid #fecaca;
  border-radius: var(--radius); font-size: .82rem; color: #dc2626;
}
.compare-new {
  padding: 10px 14px; background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: var(--radius); font-size: .82rem; color: #15803d;
}
.compare-arrow { text-align: center; font-size: .75rem; color: var(--text4); }
@media(max-width:820px) { .diff-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── WHY WIZQUEST CALLOUT ── */
.callout-section { background: var(--navy); padding: 80px 0; }
.callout-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.callout-inner h2 { color: var(--white); margin-bottom: 16px; }
.callout-inner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.75; }
.callout-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.callout-btns .btn-primary { background: var(--amber); color: var(--navy); }
.callout-btns .btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.callout-btns .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 14px; transition: .3s;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; color: var(--amber); font-size: .8rem; }
.testi-quote { font-size: .9rem; color: var(--text2); line-height: 1.7; font-style: italic; flex: 1; }
.testi-quote::before { content: '\201C'; font-size: 2rem; color: var(--amber-md); line-height: 0; vertical-align: -.4rem; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--warm-line); }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber-lt); display: flex; align-items: center;
  justify-content: center; font-size: .85rem; font-weight: 700;
  color: var(--amber-dk); flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--text4); }
@media(max-width:900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── BLOG / INSIGHTS ── */
.blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg); overflow: hidden; transition: .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-thumb {
  height: 160px; background: var(--cream3); display: flex;
  align-items: center; justify-content: center; font-size: 36px;
  position: relative; overflow: hidden;
}
.blog-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--amber); color: var(--navy);
  font-size: .68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; letter-spacing: .04em; text-transform: uppercase;
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .75rem; color: var(--text4); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); line-height: 1.4; }
.blog-card h4 a:hover { color: var(--amber-dk); }
.blog-card p { font-size: .85rem; color: var(--text3); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-read { font-size: .8rem; font-weight: 600; color: var(--amber-dk); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.blog-card:hover .blog-read { gap: 9px; }
@media(max-width:900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── CAREERS ── */
.job-grid { display: flex; flex-direction: column; gap: 14px; }
.job {
  background: var(--white); border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg); overflow: hidden; transition: .2s;
}
.job:hover { border-color: var(--warm-line2); }
.job.open { border-color: var(--amber); }
.job-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 16px;
}
.job-title-row { flex: 1; }
.job-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: .72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; letter-spacing: .04em;
}
.tag-remote { background: #e0f2fe; color: #0369a1; }
.tag-fulltime { background: #dcfce7; color: #15803d; }
.tag-hot { background: var(--amber-lt); color: var(--amber-dk); }
.job-chev { color: var(--text4); font-size: .8rem; transition: transform .3s; flex-shrink: 0; }
.job.open .job-chev { transform: rotate(180deg); }
.job-body { display: none; padding: 0 24px 24px; border-top: 1px solid var(--warm-line); }
.job.open .job-body { display: block; }
.job-body h5 { font-size: .85rem; font-weight: 700; color: var(--navy); margin: 16px 0 8px; text-transform: uppercase; letter-spacing: .06em; }
.job-body ul { display: flex; flex-direction: column; gap: 5px; padding-left: 4px; }
.job-body li { font-size: .875rem; color: var(--text3); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.job-body li::before { content: '→'; color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.job-body p { font-size: .875rem; color: var(--text3); line-height: 1.65; margin-bottom: 16px; }
.job-apply { margin-top: 20px; }

/* ── WHY WORK HERE ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }
.why-card {
  background: var(--cream); border: 1px solid var(--warm-line);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.why-card p { font-size: .82rem; color: var(--text3); line-height: 1.55; }
@media(max-width:860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .why-grid { grid-template-columns: 1fr; } }

/* ── INSIGHTS PAGE ── */
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filter {
  padding: 7px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--warm-line2); color: var(--text3);
  cursor: pointer; transition: .2s; background: var(--white);
}
.blog-filter:hover, .blog-filter.active {
  background: var(--amber); border-color: var(--amber);
  color: var(--navy);
}
.featured-post {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--cream); border: 1px solid var(--warm-line);
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 52px;
  align-items: center;
}
.featured-thumb {
  height: 100%; min-height: 260px; background: var(--cream3);
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.featured-body { padding: 32px 32px 32px 0; }
.featured-body .eyebrow { margin-bottom: 12px; }
.featured-body h3 { margin-bottom: 12px; }
.featured-body p { margin-bottom: 20px; font-size: .95rem; color: var(--text3); }
@media(max-width:760px) { .featured-post { grid-template-columns: 1fr; } .featured-body { padding: 24px; } }

/* ── NEWSLETTER ── */
.newsletter { background: var(--cream3); border-top: 1px solid var(--warm-line); border-bottom: 1px solid var(--warm-line); padding: 60px 0; }
.newsletter-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.newsletter-inner h3 { margin-bottom: 10px; }
.newsletter-inner p { color: var(--text3); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 12px 18px; border: 1.5px solid var(--warm-line2);
  border-radius: var(--radius); font-size: .9rem; background: var(--white);
  color: var(--text); outline: none; font-family: inherit;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--amber); }
@media(max-width:500px) { .newsletter-form { flex-direction: column; } }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--cream); padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--warm-line);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text3); max-width: 560px; line-height: 1.75; }

/* ── FAQ ── */
.faq { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--warm-line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 10px; transition: .2s; }
.faq-item.open { border-color: var(--amber); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .95rem; font-weight: 600; color: var(--navy); gap: 16px;
  background: var(--white); transition: background .2s;
}
.faq-item.open .faq-q { background: var(--amber-lt); }
.faq-chev { flex-shrink: 0; font-size: .75rem; transition: transform .3s; color: var(--text4); }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--amber-dk); }
.faq-a { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .9rem; color: var(--text3); line-height: 1.7; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--cream); padding: 80px 0;
  border-top: 1px solid var(--warm-line);
}
.cta-inner {
  background: var(--white); border: 1px solid var(--warm-line2);
  border-radius: var(--radius-xl); padding: 64px 48px; text-align: center;
  max-width: 680px; margin: 0 auto;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--navy));
}
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: var(--text3); font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-trust span { font-size: .8rem; color: var(--text4); display: flex; align-items: center; gap: 5px; }
.cta-trust i { color: var(--green); }
@media(max-width:600px) { .cta-inner { padding: 40px 20px; } }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 64px 0 32px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand .logo-img { filter: brightness(0) invert(1); height: 28px; margin-bottom: 14px; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.5); max-width: 280px; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .9rem; transition: .2s;
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-badge { font-size: .75rem; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 5px; }
.footer-badge i { color: var(--green); font-size: .7rem; }
@media(max-width:820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-top { flex-direction: column; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── SINGLE POST ── */
.post-content { max-width: 760px; margin: 0 auto; }
.post-content h2 { font-size: 1.8rem; margin: 40px 0 16px; }
.post-content h3 { font-size: 1.4rem; margin: 32px 0 12px; }
.post-content p { font-size: 1.025rem; line-height: 1.8; margin-bottom: 20px; color: var(--text2); }
.post-content ul, .post-content ol { padding-left: 20px; margin-bottom: 20px; }
.post-content li { font-size: 1rem; line-height: 1.75; color: var(--text2); margin-bottom: 6px; }
.post-content blockquote { border-left: 4px solid var(--amber); padding: 16px 20px; background: var(--cream3); border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0; }
.post-content blockquote p { color: var(--navy); font-weight: 600; margin: 0; }
.post-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.post-meta span { font-size: .82rem; color: var(--text4); display: flex; align-items: center; gap: 5px; }
@media(max-width:640px) { section { padding: 56px 0; } .container { padding: 0 18px; } }
