/* G3 Consulting – main.css v2.0 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0b1f4a;
  --navy2:  #0d2660;
  --blue:   #1a5bbf;
  --sky:    #3b8fe8;
  --accent: #4faeff;
  --light:  #dff0ff;
  --white:  #ffffff;
  --text:   #1a2d4e;
  --muted:  #5a6e8a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #f4f8ff; color: var(--text); overflow-x: hidden; }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 0 0 60px;
}
header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(74,158,255,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 80%, rgba(27,91,191,.25) 0%, transparent 60%);
  pointer-events: none;
}
header::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 7%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-badge {
  background: var(--sky); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  padding: 4px 12px 2px; border-radius: 6px; letter-spacing: .02em;
}
.logo-text {
  color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link {
  color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem;
  font-weight: 500; letter-spacing: .04em; transition: color .2s;
}
.nav-link:hover { color: var(--accent); }
nav a.cta-btn {
  background: var(--sky); color: #fff; text-decoration: none;
  font-weight: 600; font-size: .9rem; padding: 10px 24px;
  border-radius: 50px; letter-spacing: .05em;
  transition: background .2s, transform .15s;
}
nav a.cta-btn:hover { background: var(--accent); transform: translateY(-2px); }

/* ── HERO ── */
.hero-body {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 72px 7% 20px; gap: 40px; flex-wrap: wrap;
}
.hero-copy { max-width: 560px; }
.hero-tag {
  display: inline-block;
  background: rgba(74,174,255,.18); border: 1px solid rgba(74,174,255,.4);
  color: var(--accent); font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px; animation: fadeUp .6s ease both;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800;
  color: #fff; line-height: 1.08; letter-spacing: .01em; text-transform: uppercase;
  animation: fadeUp .7s .1s ease both;
}
.hero-headline span { color: var(--accent); }
.hero-sub {
  margin-top: 18px; color: rgba(255,255,255,.72);
  font-size: 1.1rem; line-height: 1.65; max-width: 480px;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }

.btn-primary {
  background: var(--sky); color: #fff; border: none;
  padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none; letter-spacing: .04em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(59,143,232,.4); display: inline-block;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(79,174,255,.5); }

.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35);
  padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none; letter-spacing: .04em;
  transition: border-color .2s, background .2s, transform .15s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(79,174,255,.1); transform: translateY(-3px); }

.hero-graphic { flex: 0 0 auto; width: 300px; height: 300px; position: relative; animation: fadeUp .8s .2s ease both; }
.circle-bg {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,143,232,.22) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .7; } }
.hero-icon-grid { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hero-icon-grid svg { width: 180px; height: 180px; opacity: .85; }

/* ── STRIP ── */
.strip {
  background: var(--sky); color: #fff; text-align: center; padding: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}

/* ── SECTIONS ── */
section { padding: 80px 7%; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sky); margin-bottom: 10px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--navy); text-transform: uppercase; line-height: 1.1;
}

/* ── WHO ── */
.who { background: #fff; display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.who-text { flex: 1 1 320px; }
.who-text p { margin-top: 16px; font-size: 1.08rem; line-height: 1.7; color: #3a4e6a; }
.who-cards { flex: 1 1 320px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card {
  background: var(--light); border-radius: 14px; padding: 22px 18px;
  border: 1px solid rgba(59,143,232,.2); transition: transform .2s, box-shadow .2s;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(27,91,191,.12); }
.mini-card .icon { font-size: 2rem; margin-bottom: 10px; }
.mini-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy2); text-transform: uppercase; letter-spacing: .05em; }
.mini-card p { margin-top: 6px; font-size: .88rem; color: #4a5e7a; line-height: 1.5; }

/* ── SERVICES ── */
.services { background: #f4f8ff; }
.services-intro { max-width: 560px; margin-bottom: 48px; }
.services-intro p { margin-top: 14px; font-size: 1.05rem; color: #3a4e6a; line-height: 1.7; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: 18px; padding: 32px 26px;
  border: 1px solid rgba(59,143,232,.15); transition: transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,91,191,.12); }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 56px; height: 56px; background: var(--light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 18px; }
.card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; }
.card p { margin-top: 10px; font-size: .95rem; color: #3a4e6a; line-height: 1.65; }

/* ── WHY ── */
.why { background: var(--navy); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,158,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.why h2 { color: #fff; }
.why .section-label { color: var(--accent); }
.why-intro { color: rgba(255,255,255,.7); margin-top: 14px; font-size: 1.05rem; line-height: 1.7; max-width: 540px; }
.why-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.why-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 28px 22px; transition: background .2s, transform .2s;
}
.why-item:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.why-item h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .05em; }
.why-item p { margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── HEALTHCARE CTA BANNER ── */
.hc-banner { background: var(--light); padding: 48px 7%; }
.hc-banner-inner {
  background: var(--navy); border-radius: 20px; padding: 40px 48px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.hc-banner-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,158,255,.15) 0%, transparent 60%);
}
.hc-banner-icon { font-size: 3rem; flex-shrink: 0; }
.hc-banner-copy { flex: 1 1 260px; }
.hc-banner-copy h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .04em; }
.hc-banner-copy p { margin-top: 8px; color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; }

/* ── HEALTHCARE COMPLIANCE SECTION ── */
.hc-compliance { background: var(--navy); position: relative; overflow: hidden; }
.hc-compliance::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(74,158,255,.15) 0%, transparent 55%);
}
.hc-compliance-inner { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; position: relative; z-index: 1; }
.hc-compliance-left { flex: 1 1 300px; }
.hc-compliance-right { flex: 1 1 300px; display: flex; flex-direction: column; gap: 14px; }
.compliance-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: background .2s, transform .2s;
}
.compliance-badge:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
.compliance-badge > span {
  width: 32px; height: 32px; border-radius: 50%; background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.compliance-badge strong { display: block; color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: 3px; }
.compliance-badge p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.4; }

/* ── CONTACT ── */
.contact { background: #fff; display: flex; gap: 60px; flex-wrap: wrap; align-items: flex-start; }
.contact-left { flex: 1 1 300px; }
.contact-left p { margin-top: 14px; font-size: 1.05rem; color: #3a4e6a; line-height: 1.7; }
.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color .2s; }
.contact-item:hover { color: var(--sky); }
.contact-icon { width: 44px; height: 44px; background: var(--light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-right { flex: 1 1 300px; background: var(--navy); border-radius: 22px; padding: 40px 36px; color: #fff; }
.contact-right h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.form-group label span { color: var(--accent); }
.form-group input, .form-group textarea {
  width: 100%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 12px 16px; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: .95rem; outline: none;
  transition: border-color .2s, background .2s; resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: rgba(255,255,255,.12); }
.form-submit {
  width: 100%; background: var(--sky); color: #fff; border: none;
  border-radius: 50px; padding: 14px;
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer; margin-top: 6px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(59,143,232,.35);
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(79,174,255,.45); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-feedback { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: .95rem; font-weight: 500; }
.form-feedback.success { background: rgba(40,167,69,.2); border: 1px solid rgba(40,167,69,.4); color: #7fffb0; }
.form-feedback.error { background: rgba(220,53,69,.2); border: 1px solid rgba(220,53,69,.4); color: #ffb0b7; }

/* ── FOOTER ── */
footer { background: var(--navy2); color: rgba(255,255,255,.5); text-align: center; padding: 24px 7%; font-size: .85rem; }
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .hero-body { flex-direction: column; padding: 50px 6% 20px; }
  .hero-graphic { width: 200px; height: 200px; }
  nav a.cta-btn { display: none; }
  section { padding: 60px 6%; }
  .who-cards { grid-template-columns: 1fr; }
  .contact-right { padding: 28px 22px; }
  .hc-banner-inner { padding: 28px 24px; }
  .hc-compliance-inner { gap: 36px; }
  .nav-link { display: none; }
}

/* ══════════════════════════════════════
   HEALTHCARE PAGE — Additional Styles
══════════════════════════════════════ */

/* ── PAIN POINTS ── */
.hc-pain { background: #fff; padding: 80px 7%; }
.hc-pain-header { max-width: 680px; margin-bottom: 52px; }
.hc-pain-header p { margin-top: 14px; font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.pain-card {
  border-radius: 18px; padding: 32px 28px;
  border: 1.5px solid rgba(59,143,232,.15);
  background: var(--grey);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #dc3545, #e8724a);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(27,91,191,.1); border-color: rgba(59,143,232,.3); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.pain-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px;
}
.pain-card p { font-size: .95rem; color: var(--muted); line-height: 1.68; }
.pain-card strong { color: var(--navy); font-weight: 700; }

/* ── COST COMPARISON ── */
.hc-cost { background: var(--navy); padding: 80px 7%; position: relative; overflow: hidden; }
.hc-cost::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 20%, rgba(74,158,255,.14) 0%, transparent 60%);
}
.hc-cost-header { max-width: 580px; margin-bottom: 52px; position: relative; z-index: 1; }
.hc-cost-header h2 { color: #fff; }
.hc-cost-header p { margin-top: 12px; color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; }

.cost-compare {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}

.cost-col {
  flex: 1 1 280px;
  border-radius: 20px; overflow: hidden;
}
.cost-col-bad { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.cost-col-good { background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.3); }

.cost-col-head { padding: 32px 30px 24px; }
.cost-col-bad .cost-col-head { border-bottom: 1px solid rgba(255,255,255,.08); }
.cost-col-good .cost-col-head { border-bottom: 1px solid rgba(59,143,232,.12); }

.cost-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.cost-badge-red { background: rgba(220,53,69,.15); color: #ff8a94; border: 1px solid rgba(220,53,69,.25); }
.cost-badge-blue { background: var(--light); color: var(--blue); border: 1px solid rgba(59,143,232,.3); }

.cost-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.4rem;
  line-height: 1; letter-spacing: .02em;
}
.cost-col-bad .cost-price { color: rgba(255,255,255,.7); }
.cost-col-good .cost-price { color: var(--navy); }
.cost-price span {
  font-size: .9rem; font-weight: 600; font-family: 'Barlow', sans-serif;
  letter-spacing: .04em; display: block; margin-top: 4px;
}
.cost-col-bad .cost-price span { color: rgba(255,255,255,.45); }
.cost-col-good .cost-price span { color: var(--muted); }

.cost-note {
  font-size: .82rem; margin-top: 10px; line-height: 1.5;
}
.cost-col-bad .cost-note { color: rgba(255,255,255,.4); }
.cost-col-good .cost-note { color: var(--muted); }

.cost-list { list-style: none; padding: 20px 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.cost-list li {
  font-size: .92rem; line-height: 1.5; padding-left: 24px; position: relative;
}
.cost-list li::before {
  position: absolute; left: 0; top: 1px; font-size: 1rem; line-height: 1;
}
.cost-no { color: rgba(255,255,255,.5); }
.cost-no::before { content: '✕'; color: rgba(220,53,69,.6); }
.cost-yes { color: var(--text); font-weight: 500; }
.cost-yes::before { content: '✓'; color: #28a745; font-weight: 700; }
.neutral { color: rgba(255,255,255,.5); }
.neutral::before { content: '✓'; color: rgba(255,255,255,.3); }

.cost-vs {
  display: flex; align-items: center; justify-content: center;
  width: 56px; flex-shrink: 0; align-self: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem;
  color: rgba(255,255,255,.25); letter-spacing: .1em;
}

.cost-savings-bar { margin-top: 36px; position: relative; z-index: 1; }
.csb-inner {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 22px 28px;
  color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.65;
}
.csb-inner strong { color: #fff; }
.csb-highlight {
  color: var(--accent); font-weight: 700;
  background: rgba(79,174,255,.12); padding: 2px 8px; border-radius: 6px;
}

/* ── EXECUTIVE SECTION ── */
.hc-executive { background: var(--navy2); padding: 80px 7%; position: relative; overflow: hidden; }
.hc-executive::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,158,255,.12) 0%, transparent 55%);
}
.hc-exec-header { max-width: 680px; margin-bottom: 52px; position: relative; z-index: 1; }

.exec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 20px; position: relative; z-index: 1;
}
.exec-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 28px 24px; transition: background .2s, transform .2s;
}
.exec-item:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.exec-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.exec-item h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px;
}
.exec-item p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .cost-compare { flex-direction: column; }
  .cost-vs { width: 100%; padding: 12px 0; }
  .hc-cost-header, .hc-pain-header { max-width: 100%; }
}

/* ── NAV LINK (homepage nav) ── */
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  transition: color .2s;
}
.nav-link:hover { color: var(--accent); }

/* ── HC BANNER (homepage teaser) ── */
.hc-banner { background: var(--light); padding: 48px 7%; }
.hc-banner-inner {
  background: var(--navy); border-radius: 20px; padding: 40px 48px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.hc-banner-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,158,255,.15) 0%, transparent 60%);
}
.hc-banner-icon { font-size: 3rem; flex-shrink: 0; }
.hc-banner-copy { flex: 1 1 260px; }
.hc-banner-copy h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem;
  font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .04em;
}
.hc-banner-copy p { margin-top: 8px; color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; }
