/* ============================================================
   ANIBA SOLAR DOCTOR — COMPONENTS
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn > * { position: relative; z-index: 1; }
/* subtle glass sheen sweep on hover */
.btn::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
  z-index: 0; pointer-events: none;
}
.btn:hover::after { left: 120%; }
.btn-primary {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 14px 32px rgba(15,154,168,.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(15,154,168,.4); }
.btn-dark { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { transform: translateY(-3px); background: var(--navy-900); box-shadow: 0 18px 40px rgba(10,37,64,.28); }
.btn-ghost {
  background: rgba(255,255,255,.75);
  color: var(--navy-800);
  border: 1.5px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--green-500); color: var(--green-700); box-shadow: 0 14px 34px rgba(10,37,64,.12); }
.btn-outline-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.26);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55); }
.btn-lg { min-height: 60px; padding: 0 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
/* header CTA sizing (compact) */
.header-cta .btn { min-height: 46px; padding: 0 24px; font-size: .95rem; }

/* ---------- Glass card ---------- */
.glass {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.6);
  border-radius: var(--r-lg);
}
.glass-dark {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: var(--r-lg);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 8px 30px rgba(10,37,64,.07);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; }
.brand-divider { width: 1.5px; height: 32px; background: rgba(120,140,160,.4); border-radius: 2px; flex-shrink: 0; }
.footer-brand .brand-divider { background: rgba(255,255,255,.22); }
.footer-brand .brand-logo { height: 58px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
  color: var(--navy-800);
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 600;
  margin-top: 4px;
}

/* ---- Primary nav: perfectly aligned, no-wrap, animated underline ---- */
.nav { display: flex; align-items: center; gap: 2px; height: 100%; }
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  color: var(--ink-700);
  padding: 0 clamp(9px, 0.78vw, 14px);
  border-radius: 10px;
  transition: color .25s ease;
}
.nav a::before {
  content: "";
  position: absolute;
  left: clamp(9px, 0.78vw, 14px);
  right: clamp(9px, 0.78vw, 14px);
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .3s var(--ease), opacity .25s ease;
}
.nav a:hover { color: var(--green-700); }
.nav a:hover::before { transform: scaleX(1); opacity: 1; }
.nav a.active { color: var(--navy-800); font-weight: 600; }
.nav a.active::before { transform: scaleX(1); opacity: 1; }
.nav .has-menu { position: relative; display: inline-flex; align-items: center; }
.nav .has-menu > a { padding-right: clamp(20px, 1.8vw, 28px); }
.nav .has-menu > a::after {
  content: "";
  position: absolute;
  right: clamp(8px, 0.9vw, 13px);
  top: 50%;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  opacity: .45;
  transition: transform .25s ease, opacity .25s ease;
}
.nav .has-menu:hover > a::after { transform: translateY(-30%) rotate(225deg); opacity: .8; }

/* invisible hover bridge so the dropdown doesn't close in the gap */
.nav .has-menu::before {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px;
}
/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(.98);
  transform-origin: top center;
  min-width: 268px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.has-menu:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px; width: 100%;
  font-size: .92rem; color: var(--ink-700);
}
.dropdown a:hover { background: var(--gray-50); color: var(--green-700); }
.dropdown a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); flex-shrink: 0; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 13px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  color: var(--navy-800);
  place-items: center;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.nav-toggle:hover { background: #fff; border-color: var(--green-500); color: var(--green-700); }
.nav-toggle svg { width: 23px; height: 23px; display: block; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* ---------- Service / feature cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(23,177,105,.12), rgba(29,111,192,.12));
  color: var(--green-700);
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}
.card-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; color: var(--green-700);
}
.card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card with image */
.svc-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,27,48,.55), transparent 55%);
}
.svc-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.85); color: var(--navy-800);
  backdrop-filter: blur(6px);
}
.svc-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 1.18rem; margin-bottom: 9px; }
.svc-body p { font-size: .93rem; flex: 1; }

/* ---------- Pills / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--gray-50); border: 1px solid var(--line);
  font-size: .88rem; font-weight: 500; color: var(--ink-700);
}
.chip svg { width: 16px; height: 16px; color: var(--green-600); }

/* ---------- Stat counters ---------- */
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num .suffix { -webkit-text-fill-color: initial; color: var(--green-600); }
.stat-label { margin-top: 12px; font-size: .92rem; color: var(--ink-500); font-weight: 500; }
.section-dark .stat-label { color: rgba(255,255,255,.6); }

/* ---------- Accordion (FAQ) ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 6px; font-family: var(--font-head); font-weight: 600;
  font-size: 1.08rem; color: var(--navy-800);
}
.acc-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  position: relative; transition: .3s var(--ease);
}
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: var(--green-600);
  border-radius: 2px; transition: .3s var(--ease);
}
.acc-icon::before { width: 13px; height: 2px; }
.acc-icon::after { width: 2px; height: 13px; }
.acc-item.open .acc-icon { background: var(--grad-brand); border-color: transparent; }
.acc-item.open .acc-icon::before, .acc-item.open .acc-icon::after { background: #fff; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-a-inner { padding: 0 6px 28px; max-width: 760px; color: var(--ink-500); }

/* ---------- Testimonials (premium) ---------- */
.tcard {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: 24px; padding: 40px 36px 32px; height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(10,37,64,.05);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
  overflow: hidden;
}
.tcard::before {
  content: "\201C";
  position: absolute; top: 14px; right: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem; line-height: 1; color: rgba(15,154,168,.12);
  pointer-events: none;
}
.tcard::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.tcard:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tcard:hover::after { transform: scaleX(1); }
.tcard .stars { display: flex; gap: 4px; color: var(--solar-500); margin-bottom: 20px; position: relative; z-index: 1; }
.tcard .stars svg { width: 19px; height: 19px; }
.tcard blockquote { font-size: 1.09rem; line-height: 1.72; color: var(--navy-700); font-weight: 500; flex: 1; position: relative; z-index: 1; letter-spacing: -0.006em; }
.tcard .who { display: flex; align-items: center; gap: 15px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.tcard .avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .01em; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15,154,168,.3);
  border: 2px solid #fff; outline: 1px solid rgba(15,154,168,.2);
}
.tcard .who b { color: var(--navy-800); font-family: var(--font-head); font-size: 1.02rem; }
/* target ONLY the job-title span (inside the div), not the .avatar span */
.tcard .who div span { display: block; font-size: .85rem; color: var(--ink-400); margin-top: 2px; }
/* make sure the avatar keeps its centered white initials on the gradient */
.tcard .who .avatar { display: grid; place-items: center; color: #fff; -webkit-text-fill-color: #fff; font-size: 1.05rem; margin-top: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--grad-navy);
  padding: clamp(40px, 6vw, 74px);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(23,177,105,.3), transparent 60%),
              radial-gradient(500px 400px at 0% 100%, rgba(29,111,192,.28), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
/* CTA headings/text are always light on the dark band */
.cta-band h1, .cta-band h2, .cta-band h3, .cta-band .h1, .cta-band .h2 { color: #fff; }
.cta-band p, .cta-band .on-dark { color: rgba(255,255,255,.82); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.62); padding-top: clamp(60px, 8vw, 100px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name { color: #fff; }
.footer-about { margin-top: 20px; font-size: .95rem; max-width: 320px; color: rgba(255,255,255,.55); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; padding: 7px 0; font-size: .94rem; color: rgba(255,255,255,.6); transition: color .2s ease, padding .2s ease; }
.footer-col a:hover { color: var(--emerald-400); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 13px; margin-top: 18px; font-size: .93rem; line-height: 1.6; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--emerald-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { line-height: 1.6; }
.footer-contact-item > span:first-of-type,
.footer-contact-item > a { padding-top: 0; }
.newsletter { display: flex; gap: 10px; margin-top: 18px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 13px 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #fff;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.newsletter button svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  padding-block: 28px; font-size: .86rem; color: rgba(255,255,255,.45);
}
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .25s ease; }
.social a:hover { background: var(--grad-brand); border-color: transparent; color: #fff; transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }

/* ---------- Floating action (emergency) ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px; border-radius: var(--r-pill);
  background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  box-shadow: var(--shadow-glow);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.03); }
.fab svg { width: 20px; height: 20px; }
.fab .pulse { position: relative; display: grid; place-items: center; }
.fab .pulse::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6); animation: pulse-ring 2s var(--ease) infinite;
}

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 70px); }
.logo-strip .lg { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink-400); letter-spacing: -0.02em; opacity: .8; transition: .3s ease; }
.logo-strip .lg:hover { color: var(--navy-700); opacity: 1; }

/* ---------- Badge row ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .86rem; font-weight: 500; color: var(--ink-700);
}
.badge svg { width: 20px; height: 20px; color: var(--green-600); }

/* ============================================================
   REFINEMENT ADD-ONS (v2 polish)
   ============================================================ */

/* ---- Feature stack (replaces "Portfolio Management") ---- */
.feature-stack { display: grid; gap: 14px; }
.feat-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.feat-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.09);
  border-color: rgba(23,177,105,.45);
  box-shadow: -8px 12px 34px rgba(0,0,0,.22);
}
.feat-check {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(23,177,105,.28), rgba(29,111,192,.24));
  border: 1px solid rgba(53,208,138,.3);
  color: var(--emerald-400);
  transition: transform .4s var(--ease);
}
.feat-check svg { width: 22px; height: 22px; stroke-width: 2.4; }
.feat-card:hover .feat-check { transform: scale(1.12) rotate(-6deg); }
.feat-card b { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; letter-spacing: -0.01em; }
.feat-card span { display: block; color: rgba(255,255,255,.62); font-size: .85rem; margin-top: 2px; }
/* light-surface variant */
.feature-stack--light .feat-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.feature-stack--light .feat-card:hover { background: #fff; border-color: rgba(23,177,105,.4); box-shadow: var(--shadow-md); }
.feature-stack--light .feat-check { background: linear-gradient(135deg, rgba(23,177,105,.14), rgba(29,111,192,.12)); border-color: rgba(23,177,105,.2); color: var(--green-700); }
.feature-stack--light .feat-card b { color: var(--navy-800); }
.feature-stack--light .feat-card span { color: var(--ink-400); }

/* ---- Certification card (About) — compact ~1:1 floating card ---- */
/* BOTTOM-RIGHT widget — Preventive-first (near-square, premium) */
/* moved to the BOTTOM-LEFT corner of the image, compact */
.cert-card {
  position: absolute; left: -50px; right: auto; bottom: -38px; z-index: 3;
  width: 194px; padding: 18px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -24px rgba(10,37,64,.34), 0 16px 34px -14px rgba(10,37,64,.18); }
.cert-ic {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(15,154,168,.32);
  margin-bottom: 13px;
}
.cert-ic svg { width: 22px; height: 22px; }
.cert-card b { font-family: var(--font-head); font-size: 1.13rem; font-weight: 700; color: var(--navy-800); line-height: 1.2; letter-spacing: -0.02em; }
.cert-card .cert-sub { font-size: .84rem; color: var(--ink-500); margin-top: 6px; line-height: 1.45; }
.cert-divider { height: 1px; background: var(--line); margin: 13px 0 12px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 7px; align-self: stretch;
  padding: 8px 13px; border-radius: 12px;
  background: rgba(23,177,105,.1); border: 1px solid rgba(23,177,105,.2);
  font-size: .8rem; font-weight: 700; color: var(--green-700); letter-spacing: .01em;
}
.cert-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); flex-shrink: 0; }

/* ---- Unified card hover accents (consistency) ---- */
.value-card, .card, .svc-card, .plan, .blog-card, .industry-card, .job-card { border-radius: 24px; }
.card:focus-within, .value-card:focus-within { box-shadow: var(--shadow-lg); }
