
    /* =====================================================================
   HIRE ACCOUNTANT (UK) — PAGE-SCOPED CSS
   Built on the existing theme root variables:
   --navy --navy-dark --navy-deep --blue-mid --sky --sky-light
   --gold --gold-soft --white --off-white --text-dark --text-mid
   --text-light --border --green --shadow --shadow-md --shadow-lg
   --transition --radius --radius-sm --radius-lg
   Plus a small set of NEW accent colors, deliberately scoped to
   .huk-page only (never written to the site's global :root), used
   for the live/interactive accents on this page.
   All classes prefixed "huk-".
===================================================================== */

.huk-page {
  --huk-coral: #ff5d6c;
  --huk-coral-soft: #ff8a94;
  --huk-violet: #7c5cff;
  --huk-teal: #17d6a8;
}


/* ---------------- HERO ---------------- */
.huk-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.huk-hero .huk-orb {
  position: absolute;
  inset: auto -60px -60px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(111, 205, 246, .35), rgba(111, 205, 246, 0));
  filter: blur(2px);
  border-radius: 50%;
  animation: huk-float 6s ease-in-out infinite;
  pointer-events: none;
}

.huk-hero .huk-orb-gold {
  position: absolute;
  inset: -40px auto auto -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, .25), rgba(255, 215, 0, 0));
  border-radius: 50%;
  pointer-events: none;
}

@keyframes huk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.huk-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  color: var(--sky-light);
  padding: .35rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.huk-hero-cta .btn {
  border-radius: 50px;
  padding: .9rem 1.4rem;
  font-weight: 700;
}

.btn-huk-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  box-shadow: 0 6px 20px rgba(255, 215, 0, .35);
  transition: var(--transition);
}

.btn-huk-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 215, 0, .45); }

.btn-huk-outline {
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: var(--white);
  background: transparent;
  transition: var(--transition);
}

.btn-huk-outline:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .7); }

/* ---------------- HERO ENQUIRY FORM ---------------- */
.huk-hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.huk-hero-form-overlay {
  content: "";
  position: absolute;
  width: 220%;
  height: 220%;
  top: -60%;
  left: -60%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  opacity: .06;
  transform: rotate(20deg);
  pointer-events: none;
}

.huk-hero-form-card h3 {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.huk-hero-form-sub {
  color: var(--text-mid);
  font-size: .88rem;
  margin-bottom: 20px;
}

.huk-hero-form .huk-form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}

.huk-hero-form .huk-form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(111, 205, 246, .25);
  background: var(--white);
}

select.huk-form-control { appearance: auto; }

.huk-hero-form-submit {
  width: 100%;
  border: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep);
  font-weight: 800;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}

.huk-hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 215, 0, .35);
}

/* ---------------- TRUST STRIP ---------------- */
.huk-trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.huk-trust-strip .huk-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  padding: 18px 0;
}

.huk-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--navy-deep);
}

.huk-trust-chip i { color: var(--gold); font-size: 1rem; }

/* ---------------- SECTION HEADERS ---------------- */
.huk-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  background: rgba(16, 1, 144, .07);
  border: 1px solid rgba(16, 1, 144, .15);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ---------------- PASSPORT (signature section) ---------------- */
.huk-passport-section { background: var(--off-white); position: relative; overflow: hidden; }

.huk-passport-section::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: var(--sky);
  opacity: .14;
  border-radius: 50%;
}

.huk-passport-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  margin-top: 14px;
}

/* Lanyard punch-hole notch at the top, ID-badge style */
.huk-id-notch {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  z-index: 2;
}

.huk-id-notch::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.huk-passport-head {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--huk-violet) 130%);
  background-size: 220% 220%;
  animation: huk-gradient-shift 9s ease infinite;
  color: var(--white);
  padding: 22px 26px 26px;
  position: relative;
  overflow: hidden;
}

/* Security-print diagonal watermark, like a real ID card */
.huk-id-watermark {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 2px,
    transparent 2px,
    transparent 14px
  );
  pointer-events: none;
}

/* Holographic sweep across the header */
.huk-passport-head::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  animation: huk-id-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes huk-id-sweep {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

.huk-id-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.huk-id-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--sky-light);
  display: flex; align-items: center; gap: 6px;
}

.huk-id-chip {
  width: 26px; height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  position: relative;
}

.huk-id-chip::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 2px;
}

.huk-id-mainrow {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.huk-passport-avatar {
  width: 78px; height: 78px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* Photo-ID corner brackets */
.huk-passport-avatar::before,
.huk-passport-avatar::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.huk-passport-avatar::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.huk-passport-avatar::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.huk-wave-avatar { width: 100%; height: 100%; }

.huk-wave-body { animation: huk-avatar-bob 3s ease-in-out infinite; transform-origin: 50% 90%; }

@keyframes huk-avatar-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.huk-wave-arm { transform-origin: 67px 66px; animation: huk-avatar-wave 2.2s ease-in-out infinite; }

@keyframes huk-avatar-wave {
  0%, 100% { transform: rotate(0deg); }
  20%      { transform: rotate(-18deg); }
  40%      { transform: rotate(4deg); }
  60%      { transform: rotate(-14deg); }
  80%      { transform: rotate(0deg); }
}

.huk-passport-head h4 { margin: 0 0 4px; font-weight: 800; font-size: 1.2rem; }
.huk-passport-head p { margin: 0; color: rgba(255,255,255,.75); font-size: .88rem; }

.huk-passport-seal {
  margin-left: auto;
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  transform: rotate(-8deg);
  position: relative;
  background: conic-gradient(from 0deg, rgba(255,215,0,.15), rgba(111,205,246,.15), rgba(124,92,255,.15), rgba(255,215,0,.15));
  animation: huk-hologram-spin 6s linear infinite;
}

@keyframes huk-hologram-spin {
  to { filter: hue-rotate(360deg); }
}

.huk-passport-body { padding: 26px 30px 22px; }

.huk-passport-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.huk-pstat { text-align: center; padding: 14px 6px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); }
.huk-pstat .huk-pstat-num { font-size: 1.5rem; font-weight: 900; color: var(--navy); display: block; }
.huk-pstat .huk-pstat-label { font-size: .78rem; color: var(--text-mid); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }

.huk-passport-sub { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--text-light); margin-bottom: 10px; }

.huk-badge-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

.huk-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(111, 205, 246, .15);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.huk-badge-chip.huk-chip-gold { background: rgba(255, 215, 0, .18); color: #8a6d00; }

.huk-passport-footnote {
  border-top: 1px dashed var(--border);
  padding-top: 16px;
  font-size: .85rem;
  color: var(--text-mid);
  font-style: italic;
}

/* Barcode + serial footer, ID-card style */
.huk-id-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.huk-id-barcode { display: flex; align-items: flex-end; gap: 2px; height: 22px; }

.huk-id-barcode span { display: block; width: 2px; background: var(--text-dark); }
.huk-id-barcode span:nth-child(odd)  { height: 100%; }
.huk-id-barcode span:nth-child(3n)   { width: 3px; height: 70%; }
.huk-id-barcode span:nth-child(4n)   { height: 55%; }
.huk-id-barcode span:nth-child(5n)   { width: 1px; height: 90%; }

.huk-id-serial {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  letter-spacing: .5px;
  color: var(--text-light);
  white-space: nowrap;
}

/* Vetting list beside the passport card */
.huk-vet-list { list-style: none; padding: 0; margin: 0; }

.huk-vet-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.huk-vet-list li:last-child { border-bottom: none; }

.huk-vet-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
}

.huk-vet-list h6 { font-weight: 800; color: var(--navy-deep); margin-bottom: 3px; }
.huk-vet-list p { margin: 0; color: var(--text-mid); font-size: .92rem; }

/* ---------------- KNOWLEDGE GRID ---------------- */
.huk-knowledge-section { background: var(--white); }

.huk-know-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) { .huk-know-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .huk-know-grid { grid-template-columns: 1fr; } }

.huk-know-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--off-white);
  transition: var(--transition);
  position: relative;
}

.huk-know-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: var(--white); }

.huk-know-check {
  position: absolute;
  top: 16px; right: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  box-shadow: 0 3px 8px rgba(14,188,64,.35);
}

.huk-know-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}

.huk-know-card h6 { font-weight: 800; color: var(--navy-deep); margin-bottom: 6px; padding-right: 18px; }
.huk-know-card p { color: var(--text-mid); font-size: .88rem; margin-bottom: 14px; }

.huk-level-pill {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 4px 12px;
  border-radius: 999px;
}

.huk-level-core { background: rgba(111, 205, 246, .2); color: var(--navy); }
.huk-level-advanced { background: rgba(255, 215, 0, .22); color: #8a6d00; }
.huk-level-specialist { background: rgba(14, 188, 64, .16); color: #0a7a2c; }

/* ---------------- CADENCE (what they do) ---------------- */
.huk-cadence-section { background: var(--off-white); }

.huk-cadence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.huk-cadence-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow);
  padding: 22px;
  height: 100%;
}

.huk-cadence-card.huk-cd-weekly { border-top-color: var(--sky); }
.huk-cadence-card.huk-cd-month { border-top-color: var(--gold); }
.huk-cadence-card.huk-cd-year { border-top-color: var(--green); }

.huk-cadence-tag {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-light);
  margin-bottom: 6px;
  display: block;
}

.huk-cadence-card h6 { font-weight: 800; color: var(--navy-deep); margin-bottom: 12px; font-size: 1.05rem; }

.huk-cadence-card ul { list-style: none; padding: 0; margin: 0; }

.huk-cadence-card ul li {
  font-size: .88rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  margin-bottom: 9px;
}

.huk-cadence-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy);
}

/* ---------------- TOOL GRID (their world / software) ---------------- */
.huk-stack-section { background: var(--white); }

.huk-tool-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

@media (max-width: 992px) { .huk-tool-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .huk-tool-grid { grid-template-columns: repeat(2, 1fr); } }

.huk-tool-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 10px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.huk-tool-tile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: var(--white);
}

.huk-tool-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  transition: transform .3s ease;
}

.huk-tool-tile:hover .huk-tool-icon { transform: rotate(-8deg) scale(1.1); }

.huk-tool-tile span { font-weight: 700; font-size: .88rem; color: var(--text-dark); text-align: center; }

.huk-tool-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .88rem;
  color: var(--text-mid);
}

.huk-tool-note i { color: var(--gold); }

/* ---------------- EXPERIENCE TIERS (CSS-only tabs) ---------------- */
.huk-tier-section { background: var(--off-white); }


.huk-tier-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }

.huk-tier-tabs input[type="radio"],
input[name="huk-tier"] { display: none; }

.huk-tier-tabs label {
  cursor: pointer;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-weight: 800;
  color: var(--text-mid);
  transition: var(--transition);
  font-size: .95rem;
}

#huk-tab-junior:checked ~ .huk-tier-tabs label[for="huk-tab-junior"] {
  background: var(--sky); border-color: var(--sky); color: var(--navy-deep);
}
#huk-tab-senior:checked ~ .huk-tier-tabs label[for="huk-tab-senior"] {
  background: var(--gold); border-color: var(--gold); color: var(--navy-deep);
}
#huk-tab-experienced:checked ~ .huk-tier-tabs label[for="huk-tab-experienced"] {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}

.huk-tier-panel { display: none; }

#huk-tab-junior:checked ~ .huk-tier-panels .huk-tier-panel-junior,
#huk-tab-senior:checked ~ .huk-tier-panels .huk-tier-panel-senior,
#huk-tab-experienced:checked ~ .huk-tier-panels .huk-tier-panel-experienced {
  display: block;
}

.huk-tier-panel-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px;
  border: 1px solid var(--border);
}

.huk-tier-panel-inner .row { align-items: flex-start; }

.huk-tier-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

.huk-tier-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.huk-tier-junior .huk-tier-icon { background: var(--sky); color: var(--navy-deep); }
.huk-tier-senior .huk-tier-icon { background: var(--gold); color: var(--navy-deep); }
.huk-tier-experienced .huk-tier-icon { background: var(--navy-deep); }

.huk-tier-heading h5 { margin: 0; font-weight: 900; font-size: 1.35rem; color: var(--navy-deep); }
.huk-tier-heading span { color: var(--text-mid); font-size: .95rem; }

.huk-tier-meter { display: flex; gap: 6px; flex-shrink: 0; }

.huk-tier-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.huk-tier-junior .huk-dot-on { background: var(--sky); }
.huk-tier-senior .huk-dot-on { background: var(--gold); }
.huk-tier-experienced .huk-dot-on { background: var(--navy); }

.huk-tier-col-title {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.huk-tier-col-title i { color: var(--gold); font-size: .95rem; }

.huk-tier-panel-inner ul { list-style: none; padding: 0; margin: 0 0 20px; }

.huk-tier-panel-inner ul li {
  padding-left: 26px;
  position: relative;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.huk-tier-panel-inner ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* ---------------- FREE-TRIAL / VALUE STRIP ---------------- */
.huk-trial-cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--blue-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 24px;
  text-align: center;
}

.huk-trial-cta h2 { font-weight: 900; margin-bottom: 14px; }
.huk-trial-cta p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 26px; }

.huk-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 12px 26px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.huk-trial-badge .huk-trial-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.huk-trial-badge .huk-trial-label {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align: left;
  line-height: 1.3;
  color: rgba(255, 255, 255, .85);
}

/* ---------------- IN-HOUSE VS OFFSHORE COMPARISON ---------------- */
.huk-compare-section { background: var(--off-white); }

.huk-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}

.huk-compare-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  background: var(--white);
}

.huk-compare-card.huk-compare-featured {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  border: none;
  color: var(--white);
  box-shadow: 0 30px 70px rgba(16, 1, 144, .3);
  position: relative;
  overflow: hidden;
}

.huk-compare-card.huk-compare-featured::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,215,0,.18), transparent 70%);
  border-radius: 50%;
}

.huk-compare-tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(192, 57, 43, .1);
  color: #c0392b;
  margin-bottom: 14px;
}

.huk-compare-tag-gold { background: rgba(255, 215, 0, .18); color: var(--gold); }

.huk-compare-card h5 { font-weight: 900; font-size: 1.6rem; margin-bottom: 6px; color: var(--navy-deep); }
.huk-compare-card.huk-compare-featured h5 { color: var(--white); }

.huk-compare-card .huk-compare-sub { font-size: 1rem; color: var(--text-mid); margin-bottom: 26px; }
.huk-compare-card.huk-compare-featured .huk-compare-sub { color: rgba(255,255,255,.75); }

.huk-compare-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }

.huk-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

.huk-compare-card.huk-compare-featured .huk-compare-list li { border-bottom-color: rgba(255,255,255,.15); color: rgba(255,255,255,.92); }

.huk-compare-list li:last-child { border-bottom: none; }

.huk-compare-list li i { flex-shrink: 0; margin-top: 3px; font-size: 1.3rem; }
.huk-compare-list li i.bi-x-circle-fill { color: #c0392b; }
.huk-compare-list li i.bi-check-circle-fill { color: var(--gold); }

.huk-compare-vs {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -18px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .huk-compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .huk-compare-vs { margin: -10px auto; }
}

/* ---------------- WHY OUTSOURCE (condensed) ---------------- */
.huk-why-outsource { background: var(--white); }

.huk-outsource-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.huk-outsource-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 26px;
}

.huk-outsource-points { display: flex; flex-direction: column; gap: 20px; }

.huk-outsource-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
}

.huk-outsource-point:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--navy); }

.huk-outsource-point-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.huk-outsource-point:nth-child(2) .huk-outsource-point-icon { background: var(--gold); color: var(--navy-deep); }
.huk-outsource-point:nth-child(3) .huk-outsource-point-icon { background: var(--huk-teal); }

.huk-outsource-point h6 { font-weight: 800; color: var(--navy-deep); margin-bottom: 3px; font-size: 1rem; }
.huk-outsource-point p { margin: 0; color: var(--text-mid); font-size: .9rem; }

@media (max-width: 768px) {
  .huk-outsource-card { padding: 30px 24px; }
}

/* ---------------- TIMELINE ---------------- */
.huk-timeline-section { position: relative; background: var(--off-white); padding: 70px 0; overflow-x: auto; }

.huk-timeline-h {
  display: flex; align-items: center; justify-content: flex-start;
  position: relative; gap: 80px; padding: 60px 0; min-width: 900px;
}

.huk-timeline-h::before {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 6px;
  background: linear-gradient(to right, var(--navy), var(--sky));
  box-shadow: 0 0 15px rgba(16, 1, 144, .3);
  transform: translateY(-50%); z-index: 0;
}

.huk-t-item { position: relative; flex: 0 0 auto; width: 150px; }
.huk-t-item.up { display: flex; flex-direction: column-reverse; align-items: center; margin-bottom: 40px; }
.huk-t-item.down { display: flex; flex-direction: column; align-items: center; margin-top: 40px; }

.huk-t-circle {
  width: 55px; height: 55px; background: var(--navy); color: var(--white); font-size: 22px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  box-shadow: 0 4px 15px rgba(16, 1, 144, .4); animation: huk-pulse 2s infinite; z-index: 2;
}

.huk-t-content {
  background: var(--white); padding: 18px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow); display: inline-block; max-width: 200px; text-align: center;
  transition: var(--transition);
}

.huk-t-content:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.huk-t-content h5 { margin-bottom: 6px; font-weight: 800; color: var(--navy-deep); }
.huk-t-content p { margin: 0; color: var(--text-mid); font-size: 15px; }

@keyframes huk-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 1, 144, .5); }
  70% { box-shadow: 0 0 0 15px rgba(16, 1, 144, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 1, 144, 0); }
}

@media (max-width: 768px) {
  .huk-timeline-h { flex-direction: column; min-width: auto; gap: 40px; }
  .huk-timeline-h::before { width: 6px; height: 100%; left: 8px; top: 0; transform: none; }
  .huk-t-item { margin-top: 0 !important; margin-bottom: 0 !important; width: 100%; }
  .huk-t-item.up, .huk-t-item.down { flex-direction: row; align-items: center; text-align: left; }
  .huk-t-content { max-width: calc(100% - 70px); }
}

/* ---------------- FAQ ---------------- */
.huk-faq { background: var(--white); }

.huk-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--off-white);
}

.huk-faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 18px 20px; font-weight: 800; color: var(--navy-deep);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1rem;
}

.huk-faq-q .huk-faq-icon { transition: transform .3s ease; color: var(--navy); }
.huk-faq-item.active .huk-faq-icon { transform: rotate(45deg); }

.huk-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 20px; color: var(--text-mid); }
.huk-faq-item.active .huk-faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ---------------- HOURS PACKAGES (no pricing, detailed scope) ---------------- */
.huk-hours-section { background: var(--off-white); }

.huk-hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }

.huk-hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.huk-hours-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--navy); }

.huk-hours-card.huk-hours-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, rgba(255,215,0,.04) 100%);
  transform: scale(1.03);
}

.huk-hours-card.huk-hours-featured:hover { transform: scale(1.03) translateY(-6px); }

.huk-hours-ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255,215,0,.4);
}

.huk-hours-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(16, 1, 144, .07);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 16px;
  width: fit-content;
}

.huk-hours-badge span { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.huk-hours-badge-gold { background: rgba(255, 215, 0, .18); color: #8a6d00; }

.huk-hours-card h5 { font-weight: 900; color: var(--navy-deep); margin-bottom: 8px; font-size: 1.2rem; }

.huk-hours-ideal {
  font-size: .85rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 18px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.huk-hours-ideal i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.huk-hours-list { list-style: none; padding: 0; margin: 0 0 22px; flex-grow: 1; }

.huk-hours-list li {
  position: relative;
  padding-left: 24px;
  font-size: .92rem;
  color: var(--text-dark);
  margin-bottom: 11px;
  line-height: 1.4;
}

.huk-hours-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--green);
  font-weight: 800;
}

.huk-hours-card .huk-final-btn { width: 100%; text-align: center; }


/* ---------------- FINAL CTA ---------------- */
.huk-final-cta {
  display: flex; justify-content: center; align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--off-white), var(--sky-light));
}

.huk-final-cta .huk-final-box {
  background: var(--white); border-radius: var(--radius); padding: 50px 40px;
  max-width: 800px; width: 100%; text-align: center; box-shadow: var(--shadow-md);
}

.huk-final-cta .huk-final-box h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--navy); font-weight: 900; }

.huk-final-cta .huk-final-box p {
  font-size: 1.1rem; margin-bottom: 30px; line-height: 1.7; color: var(--navy-deep);
  max-width: 650px; margin-left: auto; margin-right: auto;
}

.huk-final-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.huk-final-btn {
  background: var(--gold); color: var(--navy-deep); padding: 14px 36px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition);
  min-width: 180px; display: inline-block;
}

.huk-final-btn:hover { background: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.huk-final-btn.huk-secondary { background: var(--off-white); color: var(--navy); border: 2px solid var(--navy); }
.huk-final-btn.huk-secondary:hover { background: var(--navy); color: var(--white); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .huk-passport-stats { grid-template-columns: 1fr 1fr; }
  .huk-id-mainrow { flex-wrap: wrap; }
  .huk-tier-panel-inner { padding: 22px; }
}

/* =====================================================================
   MAKE IT ALIVE — animated / interactive layer
===================================================================== */

/* Hero: animated mesh background + extra coral orb */
.huk-hero-live { background-size: 200% 200%; animation: huk-gradient-shift 12s ease infinite; }

@keyframes huk-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.huk-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(124, 92, 255, .25), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(255, 93, 108, .18), transparent 38%),
    radial-gradient(circle at 60% 90%, rgba(111, 205, 246, .22), transparent 42%);
  pointer-events: none;
}

.huk-orb-coral {
  position: absolute;
  inset: 20% auto auto 40%;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 93, 108, .3), rgba(255, 93, 108, 0));
  border-radius: 50%;
  animation: huk-float 8s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Live status badge */
.huk-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(23, 214, 168, .12);
  border: 1px solid rgba(23, 214, 168, .4);
  color: var(--huk-teal);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
}

.huk-live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--huk-teal);
  box-shadow: 0 0 0 0 rgba(23, 214, 168, .6);
  animation: huk-pulse-dot 1.8s ease-out infinite;
}

@keyframes huk-pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(23, 214, 168, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(23, 214, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 214, 168, 0); }
}

/* Shine-sweep on buttons */
.huk-shine { position: relative; overflow: hidden; isolation: isolate; }

.huk-shine::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  z-index: -1;
}

.huk-shine:hover::after { left: 130%; }

/* Tilt / gloss hover on the hero form card */
.huk-tilt-card { transition: transform .35s ease, box-shadow .35s ease; }
.huk-tilt-card:hover { transform: translateY(-6px) rotate(-0.3deg); box-shadow: 0 30px 60px rgba(16, 1, 144, .28); }

/* Scroll-reveal base state (applied broadly via JS selector list) */
.huk-know-card,
.huk-cadence-card,
.huk-passport-card,
.huk-vet-list li,
.huk-compare-card,
.huk-continuity-card,
.huk-hours-card,
.huk-faq-item,
.huk-tool-tile,
.huk-pstat,
.huk-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.huk-in-view { opacity: 1 !important; transform: translateY(0) !important; }

/* Knowledge cards: hover lift + icon spin + animated proficiency bar */
.huk-know-card { position: relative; }
.huk-know-card:hover .huk-know-icon { transform: rotate(-8deg) scale(1.08); }
.huk-know-icon { transition: transform .35s ease; }

.huk-know-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  margin-top: 12px;
}

.huk-know-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
  width: 0;
  transition: width 1.1s cubic-bezier(.2,.8,.2,1) .2s;
}

.huk-know-card.huk-in-view .huk-know-bar-fill { width: var(--huk-fill, 70%); }

.huk-know-card:has(.huk-level-specialist) .huk-know-bar-fill { background: linear-gradient(90deg, var(--huk-teal), var(--sky)); }
.huk-know-card:has(.huk-level-advanced) .huk-know-bar-fill { background: linear-gradient(90deg, var(--gold), var(--gold-soft)); }

/* Cadence cards: shimmering top border + hover tilt */
.huk-cadence-card { position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.huk-cadence-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-md); }

.huk-cadence-card::before {
  content: "";
  position: absolute;
  top: -4px; left: -30%;
  width: 30%; height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  animation: huk-shimmer-line 3.2s linear infinite;
}

@keyframes huk-shimmer-line {
  0%   { left: -30%; }
  100% { left: 130%; }
}

/* Tool tiles: glow ring on hover */
.huk-tool-tile:hover .huk-tool-icon { box-shadow: 0 0 0 6px rgba(16,1,144,.08); }

/* Passport card: gloss sweep + seal spin on hover */
.huk-passport-card { transition: transform .35s ease, box-shadow .35s ease; }
.huk-passport-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(16,1,144,.22); }
.huk-passport-card:hover .huk-passport-seal { transform: rotate(8deg) scale(1.06); }
.huk-passport-seal { transition: transform .4s ease; }
.huk-badge-chip { transition: transform .25s ease; }
.huk-badge-chip:hover { transform: translateY(-3px); }

/* Trial badge: pulsing glow ring */
.huk-trial-badge { position: relative; }
.huk-trial-badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, .5);
  animation: huk-ring-pulse 2.4s ease-out infinite;
}

@keyframes huk-ring-pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Comparison list icons: pop-in on reveal */
.huk-compare-card.huk-in-view .huk-compare-list li { animation: huk-pop-in .4s ease backwards; }
.huk-compare-card.huk-in-view .huk-compare-list li:nth-child(1) { animation-delay: .05s; }
.huk-compare-card.huk-in-view .huk-compare-list li:nth-child(2) { animation-delay: .15s; }
.huk-compare-card.huk-in-view .huk-compare-list li:nth-child(3) { animation-delay: .25s; }
.huk-compare-card.huk-in-view .huk-compare-list li:nth-child(4) { animation-delay: .35s; }

@keyframes huk-pop-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.huk-compare-card { transition: transform .3s ease, box-shadow .3s ease; }
.huk-compare-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Tier tabs: bouncy active state + panel fade-in on switch */
.huk-tier-tabs label { transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .25s ease, color .25s ease, border-color .25s ease; }

#huk-tab-junior:checked ~ .huk-tier-tabs label[for="huk-tab-junior"],
#huk-tab-senior:checked ~ .huk-tier-tabs label[for="huk-tab-senior"],
#huk-tab-experienced:checked ~ .huk-tier-tabs label[for="huk-tab-experienced"] {
  transform: scale(1.06);
}

.huk-tier-panel-inner { animation: huk-fade-up .4s ease; }

@keyframes huk-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.huk-tier-icon { transition: transform .3s ease; }
.huk-tier-panel-inner:hover .huk-tier-icon { transform: rotate(-6deg) scale(1.05); }

/* How-to-hire: animated connecting line between the 3 steps + pulsing icon ring */
#how-to-hire .huk-continuity-grid { position: relative; }

@media (min-width: 769px) {
  #how-to-hire .huk-continuity-grid::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 16.5%;
    width: 67%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--navy) 0 10px, transparent 10px 18px);
    background-size: 200% 100%;
    animation: huk-dash-flow 3s linear infinite;
    z-index: 0;
  }
}

@keyframes huk-dash-flow {
  from { background-position: 0 0; }
  to   { background-position: -56px 0; }
}

#how-to-hire .huk-continuity-card { position: relative; z-index: 1; }

.huk-continuity-card { transition: transform .3s ease, box-shadow .3s ease; }
.huk-continuity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.huk-continuity-card:hover .huk-continuity-icon { transform: scale(1.1) rotate(-6deg); }
.huk-continuity-icon { transition: transform .3s ease; position: relative; }

.huk-continuity-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  border: 2px solid rgba(16, 1, 144, .18);
  animation: huk-ring-pulse 2.6s ease-out infinite;
}

/* Engagement cards: hover lift + icon bounce */
.huk-hours-card .huk-hours-badge { transition: transform .3s ease; }
.huk-hours-card:hover .huk-hours-badge { transform: scale(1.08); }

/* FAQ: growing accent bar on hover/active */
.huk-faq-item { position: relative; border-left: 3px solid transparent; transition: border-color .3s ease, transform .2s ease; }
.huk-faq-item:hover { border-left-color: var(--sky); }
.huk-faq-item.active { border-left-color: var(--gold); }

/* Final CTA: slow animated gradient sheen */
.huk-final-cta { background-size: 200% 200%; animation: huk-gradient-shift 10s ease infinite; }
.huk-final-btn { transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease; }

/* Trust strip chips: subtle hover pop */
.huk-trust-chip { transition: transform .2s ease; }
.huk-trust-chip:hover { transform: translateY(-2px); }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .huk-hero-live,
  .huk-orb, .huk-orb-gold, .huk-orb-coral,
  .huk-live-dot,
  .huk-wave-body, .huk-wave-arm,
  .huk-passport-head, .huk-passport-head::after, .huk-passport-seal,
  .huk-cadence-card::before,
  .huk-trial-badge::before,
  .huk-continuity-icon::after,
  .huk-final-cta,
  #how-to-hire .huk-continuity-grid::before {
    animation: none !important;
  }
  .huk-know-card, .huk-cadence-card, .huk-passport-card, .huk-vet-list li,
  .huk-compare-card, .huk-continuity-card, .huk-hours-card, .huk-faq-item,
  .huk-tool-tile, .huk-pstat, .huk-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/*-------------software-----------------*/
.software-expertise-section {
    padding: 60px 0;
    background: #ffffff;
}

.software-tagline {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.software-card {
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 5px;
}

/* NEW CONTAINER FOR SAME SIZE LOGOS */
.software-logo-container {
    width: 100%;
    height: 50px; /* Sabka fixed space */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.software-logo {
    max-height: 100%;
    max-width: 85%; /* Logo width ko bhi control mein rakha hai */
    width: auto;
    object-fit: contain; /* Sabse important: stretches nahi hone dega */
    filter: grayscale(0%); 
    opacity: 1;
    transition: all 0.4s ease;
}

.software-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: block;
    transition: all 0.3s ease;
}

.software-card:hover {
    border-color: var(--second-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.software-card:hover .software-logo {
    filter: grayscale(100%); 
    opacity: 0.5;
}

.software-card:hover .software-name {
    color: #999;
}

.expert-note {
    font-size: 0.85rem;
    color: #777;
    background: #fdfdfd;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .software-card { height: 110px; }
    .software-logo-container { height: 40px; }
}
/*-------------------software end-------------------*/
