*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #00A896;
  --orange-h: #00C4B0;
  --orange-pale: #E8FAF8;
  --orange-pale2: #C0EDE8;
  --cream: #FAFAF8;
  --off: #F3F3F1;
  --border: #E6E6E2;
  --text: #0D1B3E;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --font-d: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r: 16px;
  --rs: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
input, select, textarea, button { font-family: var(--font-b) !important; }

/* ── HERO ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.07; }
  50%       { transform: translateY(-50%) scale(1.08); opacity: 0.11; }
}

/* Hero elements start hidden, JS adds .anim-in to trigger */
.hero-anim { opacity: 0; }
.hero-anim.anim-in.anim-fadeup   { animation: fadeUp .7s ease forwards; }
.hero-anim.anim-in.anim-fadein   { animation: fadeIn .8s ease forwards; }
.hero-anim.anim-in.anim-slideright { animation: slideRight .6s ease forwards; }

/* Hero card - no animation */
.hero-card {
  transition: none;
}
.hero-card button,
.hero-card .btn { opacity: 1 !important; visibility: visible !important; }

/* floating glow pulse */
.hero::before { animation: floatGlow 6s ease-in-out infinite; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(0.22,1,0.36,1), transform .55s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children — transition only opacity+translateY, NOT scale/box-shadow so hover still works */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s cubic-bezier(0.22,1,0.36,1), transform .5s cubic-bezier(0.22,1,0.36,1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .5s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
/* After reveal is done, let hover transitions take over cleanly */
.reveal-stagger.visible > *:hover {
  transition: border-color .25s, transform .25s, box-shadow .25s !important;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,250,248,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 64px;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; justify-self: start; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-logo-icon { display: none; }
.nav-logo-text { display: none; }
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
  justify-self: center;
}
.nav-links a {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 14px; font-weight: 500; padding: 8px 13px; border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative; text-decoration: none; display: inline-block;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 13px; right: 13px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text); background: rgba(0,168,150,.06); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%); background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rs); box-shadow: 0 10px 28px rgba(0,0,0,.12); padding: 8px;
  min-width: 220px; z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-menu:hover { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 14px; color: var(--text);
  text-decoration: none; border-radius: 8px; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(0,168,150,.08); color: var(--orange); }
.nav-cta-wrap { justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  font-weight: 600 !important; font-size: 13px !important;
  padding: 8px 16px !important; border-radius: var(--rs) !important;
  transition: background .2s, transform .15s !important; text-decoration: none;
}
.nav-cta:hover { background: var(--orange-h) !important; transform: translateY(-1px) !important; }
.nav-phone { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 8px 0 20px; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; width: 100%; text-align: left;
  color: var(--text); font-size: 16px; font-weight: 500;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  text-decoration: none; box-sizing: border-box;
}
.mob-cta {
  display: block; margin: 16px 24px 0;
  background: var(--orange) !important; color: #fff !important;
  text-align: center; padding: 13px 20px !important; border-radius: var(--rs);
  font-weight: 700 !important; font-size: 15px !important;
  text-decoration: none; box-sizing: border-box;
}

/* SHARED */
.page-wrap { padding-top: 64px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section.alt { background: var(--off); }
.section.white { background: var(--white); }
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
  background: var(--orange-pale); padding: 5px 12px; border-radius: 20px;
}
.page-title {
  font-family: var(--font-d); font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800; color: var(--text); line-height: 1.1; letter-spacing: -1.5px;
}
.page-title em { color: var(--orange); font-style: italic; }
.rule { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 18px 0 28px; }
.lead { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 580px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--rs);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: background .2s, transform .15s; text-decoration: none;
  font-family: var(--font-b); line-height: 1;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
/* Ghost button on dark backgrounds */
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.btn-ghost-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.15); }

/* Hover highlights for cards */
.aud-card {
  background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 28px; cursor: pointer;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  text-align: left;
  display: block; text-decoration: none; color: inherit;
}
.aud-card:hover, .aud-card.active {
  border-color: var(--orange); background: var(--orange-pale);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,168,150,.15);
}

.proc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px; text-align: center;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.proc-card:hover {
  border-color: var(--orange); transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,168,150,.12);
}
.proc-card:hover .proc-num { transform: scale(1.1); }
.proc-num { transition: transform .3s cubic-bezier(.22,1,.36,1); }

.svc-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 32px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.svc-card:hover {
  border-color: var(--orange); box-shadow: 0 12px 32px rgba(0,168,150,.1);
  transform: translateY(-4px);
}

.feat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px; transition: all .3s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover {
  border-color: var(--orange); box-shadow: 0 10px 28px rgba(0,168,150,.1);
  transform: translateY(-4px);
}
.feat-card:hover .feat-icon { background: var(--orange-pale2); transform: scale(1.1); }
.feat-icon { transition: all .3s ease; }

.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px; transition: all .3s cubic-bezier(.22,1,.36,1);
}
.review-card:hover {
  border-color: var(--orange-pale2);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.mod-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 26px; display: flex; gap: 16px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.mod-card:hover {
  border-color: var(--orange); box-shadow: 0 8px 24px rgba(0,168,150,.1);
  transform: translateY(-3px);
}

.situ {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rs);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text); font-weight: 500;
  transition: all .25s cubic-bezier(.22,1,.36,1);
}
.situ:hover {
  border-color: var(--orange); background: var(--orange-pale);
  transform: translateX(4px);
}

/* Stat counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.stat-val { animation: none; }
.stats-bar.revealed .stat-val { animation: countUp .5s ease both; }
.stats-bar.revealed .stat-item:nth-child(1) .stat-val { animation-delay: .05s; }
.stats-bar.revealed .stat-item:nth-child(2) .stat-val { animation-delay: .15s; }
.stats-bar.revealed .stat-item:nth-child(3) .stat-val { animation-delay: .25s; }
.stats-bar.revealed .stat-item:nth-child(4) .stat-val { animation-delay: .35s; }

.hero { background: var(--text); padding: 100px 0 80px; position: relative; overflow: hidden; }

/* Video background */
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
/* Dark overlay so text stays readable over video */
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,0.82) 0%,
    rgba(13,27,62,0.60) 60%,
    rgba(13,27,62,0.35) 100%
  );
  z-index: 1; pointer-events: none;
}
/* Bring all content above video/overlay */
.hero-inner { position: relative; z-index: 2; }

.hero::before { display: none; } /* remove old glow orb, video replaces it */
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); border: 1px solid var(--orange-pale2);
  color: var(--orange); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero h1 {
  font-family: var(--font-d); font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 em { color: var(--orange); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 28px; margin-top: 40px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 20px; }
.trust-text { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; line-height: 1.4; }
.trust-text strong { color: #fff; display: block; font-size: 14px; font-weight: 700; }
/* Ghost button needs white border on dark bg */
.hero .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.hero-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
}
.hero-card h3 { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.4px; }
.hero-card > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.hero-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.hero-steps li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); font-weight: 500; }
.snum { width: 26px; height: 26px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
.hero-card .btn { width: 100%; justify-content: center; padding: 15px; }
.hero-card .btn-primary { background: var(--orange); color: #fff; }
.hero-card .btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); }
.card-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* AUDIENCE */
.audience-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; }
.audience-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 20px;
  justify-content: center;
}
.aud-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.aud-card h3 { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.aud-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.aud-link { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }

/* STATS */
.stats-bar { background: var(--text); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-d); font-size: 40px; font-weight: 800;
  color: var(--orange); line-height: 1; letter-spacing: -2px; margin-bottom: 6px;
  display: inline-block;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-val { opacity: 0; }
.stats-bar.counted .stat-val { opacity: 1; animation: countUp .5s cubic-bezier(.22,1,.36,1) both; }
.stats-bar.counted .stat-item:nth-child(1) .stat-val { animation-delay: .0s; }
.stats-bar.counted .stat-item:nth-child(2) .stat-val { animation-delay: .12s; }
.stats-bar.counted .stat-item:nth-child(3) .stat-val { animation-delay: .24s; }
.stats-bar.counted .stat-item:nth-child(4) .stat-val { animation-delay: .36s; }

/* RESCUE BANNER */
.rescue-banner {
  background: linear-gradient(135deg, #0D1B3E 0%, #0A2A4A 100%);
  border-radius: var(--r); padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.rescue-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,168,150,.2); color: var(--orange);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.rescue-banner h2 { font-family: var(--font-d); font-size: clamp(22px,3vw,34px); font-weight: 800; color: #fff; letter-spacing: -0.8px; margin-bottom: 10px; }
.rescue-banner p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 500px; }
.rescue-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 16px 32px; border-radius: var(--rs); font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: background .2s, transform .15s; white-space: nowrap; text-decoration: none; }
.rescue-btn:hover { background: var(--orange-h); transform: translateY(-2px); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo {
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--orange-pale2) 100%);
  border-radius: 20px; aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center;
  padding: 32px; border: 1.5px solid var(--orange-pale2);
}
.initials { width: 88px; height: 88px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 30px; font-weight: 800; color: #fff; }
.about-photo p { font-size: 16px; color: var(--text); font-weight: 700; }
.about-photo span { font-size: 13px; color: var(--muted); }
.about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.about-content strong { color: var(--text); }
.license-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.lpill { background: var(--off); border: 1px solid var(--border); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--muted); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.review-stars { color: #F59E0B; font-size: 15px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-meta { font-size: 12px; color: var(--muted); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.svc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 32px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.svc-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,168,150,.1); }
.svc-icon { font-size: 32px; margin-bottom: 16px; }
.svc-card h3 { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.4px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--off); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--muted); }

/* RESCUE PAGE */
.situations-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 40px 0; }
.situ { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rs); padding: 18px 22px; display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text); font-weight: 500; transition: border-color .2s, transform .2s, box-shadow .2s; }
.situ:hover { border-color: var(--orange); transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,168,150,.1); }
.situ-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.proc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 30px; text-align: center; transition: border-color .25s, transform .25s, box-shadow .25s; }
.proc-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,168,150,.12); }
.proc-num { width: 48px; height: 48px; background: var(--orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 20px; font-weight: 800; color: #fff; margin: 0 auto 16px; transition: transform .25s; }
.proc-card:hover .proc-num { transform: scale(1.1) rotate(-4deg); }
.proc-card h4 { font-family: var(--font-d); font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.proc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* REALTORS */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.feat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.feat-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,168,150,.1); }
.feat-icon { width: 48px; height: 48px; background: var(--orange-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; transition: background .25s, transform .25s; }
.feat-card:hover .feat-icon { background: var(--orange-pale2); transform: scale(1.1); }
.feat-card h4 { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.quote-block {
  background: var(--orange-pale); border: 1.5px solid var(--orange-pale2);
  border-radius: var(--r); padding: 36px; margin-top: 40px;
  display: flex; gap: 20px; align-items: flex-start;
}
.q-mark { font-family: var(--font-d); font-size: 64px; color: var(--orange); line-height: .8; flex-shrink: 0; }
.q-text { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.5; letter-spacing: -0.3px; }
.q-attr { font-size: 13px; color: var(--muted); margin-top: 10px; }


.vs-hero { background: linear-gradient(135deg, #0D1B3E 0%, #0A2A4A 100%); padding: 80px 0; }
.vs-hero .eyebrow { background: rgba(0,168,150,.2); }
.pipeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin: 40px 0; }
.pipe-step { background: var(--white); border: 1px solid var(--border); padding: 22px 16px; text-align: center; position: relative; }
.pipe-step:not(:last-child)::after { content: '→'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: var(--orange); font-size: 16px; font-weight: 700; z-index: 1; background: var(--white); padding: 4px 2px; }
.pipe-step:first-child { border-radius: var(--rs) 0 0 var(--rs); }
.pipe-step:last-child { border-radius: 0 var(--rs) var(--rs) 0; }
.pipe-n { width: 30px; height: 30px; background: linear-gradient(135deg, #0D1B3E 0%, #00A896 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; margin: 0 auto 10px; }
.pipe-step h4 { font-family: var(--font-d); font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pipe-step p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.modules { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px; }
.mod-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 26px; display: flex; gap: 16px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.mod-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,168,150,.1); }
.mod-dot { width: 12px; height: 12px; background: var(--orange); border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.mod-card h4 { font-family: var(--font-d); font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.mod-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* REVIEW CARD HOVER */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.review-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,168,150,.1); }

/* REVIEW MARQUEE — continuous infinite scroll */
.review-marquee-wrap {
  width: 100%; overflow: hidden; margin-top: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.review-marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marqueeScroll 120s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.review-marquee-reverse { animation-direction: reverse; animation-duration: 140s; }
.review-marquee-wrap:hover .review-marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-card {
  flex: 0 0 320px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px; display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.mq-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,168,150,.1); }
.mq-stars { color: #F59E0B; font-size: 14px; margin-bottom: 10px; }
.mq-text { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.mq-author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mq-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.mq-name { font-size: 12px; font-weight: 700; color: var(--text); }
.mq-meta { font-size: 11px; color: var(--muted); }
.mq-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 12px; border-top: 1px solid var(--border); }
.mq-tag { background: var(--off); border: 1px solid var(--border); padding: 3px 9px; border-radius: 20px; font-size: 10px; font-weight: 600; color: var(--muted); }

/* Mobile: static scrollable list instead of marquee (mask causes blank on Safari iOS) */
@media (max-width: 960px) {
  .review-marquee-wrap {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .review-marquee-track {
    animation: none !important;
    width: max-content;
    transform: none !important;
  }
  /* Hide the duplicate set (second half used for seamless loop) */
  .review-marquee-track .mq-card:nth-child(n+14) {
    display: none;
  }
  .mq-card {
    flex: 0 0 260px;
  }
}
.mod-card h4 { font-family: var(--font-d); font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.mod-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.split-b { background: var(--orange-pale); border: 1.5px solid var(--orange-pale2); border-radius: var(--r); padding: 32px; }
.split-i { background: var(--text); border-radius: var(--r); padding: 32px; }
.split-b h4, .split-i h4 { font-family: var(--font-d); font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.split-b h4 { color: var(--text); }
.split-i h4 { color: #fff; }
.split-b p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.split-i p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; margin-top: 48px; }
.cf-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.05); }
.cf-card h3 { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.5px; }
.cf-card > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; color: var(--text); background: var(--cream); transition: border-color .2s; -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--orange); }
.fg textarea { height: 100px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-legal { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }
.c-sidebar { display: flex; flex-direction: column; gap: 16px; }
.c-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.c-card h4 { font-family: var(--font-d); font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.c-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.c-item:last-child { margin-bottom: 0; }
.c-item-i { font-size: 18px; width: 22px; text-align: center; }
.c-item-t { font-size: 14px; color: var(--muted); }
.c-item-t a { color: var(--orange); text-decoration: none; font-weight: 600; }
.lic-list { list-style: none; }
.lic-list li { font-size: 13px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.lic-list li:last-child { border-bottom: none; }
.lic-list li::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* FAQ */
.faq-wrap { max-width: 720px; margin: 48px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--rs); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--text); transition: color .2s; }
.faq-q:hover { color: var(--orange); }
.faq-plus { font-size: 20px; color: var(--orange); flex-shrink: 0; transition: transform .2s; font-weight: 700; }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-plus { transform: rotate(45deg); }

/* LEGAL */
.legal-body { max-width: 760px; }
.legal-body h3 { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--text); margin: 36px 0 12px; }
.legal-body h3:first-of-type { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-notice { background: var(--orange-pale); border: 1px solid var(--orange-pale2); border-radius: var(--rs); padding: 18px 24px; margin-bottom: 32px; font-size: 14px; color: var(--muted); }

/* FOOTER */
footer { background: var(--text); color: rgba(255,255,255,.55); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { margin-bottom: 0; }
.footer-brand .x { display: none; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; margin-bottom: 18px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.fbadge { font-size: 11px; color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); padding: 4px 10px; border-radius: 20px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: rgba(255,255,255,.5); font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s; }
.footer-col li a:hover { color: var(--orange); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,.28); line-height: 1.7; max-width: 700px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); white-space: nowrap; }
.footer-links { display: flex; gap: 16px; margin-top: 10px; }
.footer-links a { background: none; border: none; cursor: pointer; font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; text-decoration: none; }
.footer-links a:hover { color: #fff; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .audience-grid, .about-grid, .reviews-grid, .services-grid, .feat-grid, .situations-grid, .process-grid, .modules, .split, .contact-layout { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; justify-content: unset; }
  .pipeline { grid-template-columns: 1fr; }
  .pipe-step::after { display: none; }
  .pipe-step:first-child, .pipe-step:last-child { border-radius: 0; }
  .rescue-banner { grid-template-columns: 1fr; }
  .quote-block { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .frow { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta-wrap { display: flex; justify-self: end; }
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: 0; }

  /* About photo — constrain height on mobile so it doesn't overflow */
  .about-photo {
    aspect-ratio: unset !important;
    height: 320px !important;
    min-height: unset !important;
  }
  .about-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 16px !important;
  }
}

/* ── RATES PAGE ── */
.rates-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.rate-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.rate-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,168,150,.1); }
.rate-card.featured { border-color: var(--orange); background: var(--orange-pale); }
.rate-card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 10px; }
.rate-card-rate { font-family: var(--font-d); font-size: 44px; font-weight: 800; color: var(--text); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.rate-card.featured .rate-card-rate { color: var(--orange); }
.rate-card-trend { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.rate-card-trend.down { color: #16a34a; }
.rate-card-trend.up { color: #dc2626; }
.rate-card-trend.neutral { color: var(--muted); }
.rate-card-apr { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.rate-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Calculator */
.calc-wrap { margin-top: 40px; }
.calc-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.05); }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.calc-input-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--cream); transition: border-color .2s; }
.calc-input-wrap:focus-within { border-color: var(--orange); }
.calc-prefix { padding: 12px 14px; font-size: 14px; font-weight: 600; color: var(--muted); background: var(--off); border-right: 1px solid var(--border); }
.calc-field input, .calc-field select { flex: 1; border: none; background: transparent; padding: 12px 14px; font-size: 14px; color: var(--text); outline: none; width: 100%; }
.calc-field select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; background: var(--cream); -webkit-appearance: none; }
.calc-field select:focus { border-color: var(--orange); outline: none; }
.calc-pct { font-size: 12px; color: var(--orange); font-weight: 700; margin-top: 4px; }
.calc-result { display: flex; flex-direction: column; justify-content: center; }
.calc-result-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 10px; }
.calc-result-amount { font-family: var(--font-d); font-size: 56px; font-weight: 800; color: var(--orange); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.calc-result-sub { font-size: 12px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.calc-breakdown { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.cb-item { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.cb-item span:last-child { font-weight: 700; color: var(--text); }

@media (max-width: 960px) {
  .rates-grid { grid-template-columns: 1fr 1fr; }
  .calc-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rates-grid { grid-template-columns: 1fr; }
}

/* ── LOAN TYPES PAGE ── */
.loan-jumps { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.loan-jump {
  background:rgba(255,255,255,.1); color:#fff; text-decoration:none;
  padding:8px 18px; border-radius:20px; font-size:13px; font-weight:600;
  border:1px solid rgba(255,255,255,.2);
  transition:background .2s, border-color .2s;
}
.loan-jump:hover { background:rgba(0,168,150,.3); border-color:#00A896; }

.loan-intro-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.loan-intro-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r); padding:28px; }
.loan-intro-card span { display:block; margin-bottom:14px; }
.loan-intro-card h3 { font-family:var(--font-d); font-size:17px; font-weight:800; color:var(--text); margin-bottom:10px; }
.loan-intro-card p { font-size:14px; color:var(--muted); line-height:1.75; }

.loan-type-header { margin-bottom:36px; }
.loan-type-badge { display:inline-block; padding:5px 14px; border-radius:20px; font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:14px; }
.loan-type-tagline { font-size:17px; color:var(--muted); font-style:italic; margin-top:8px; }

.loan-explainer-grid { display:grid; grid-template-columns:1fr 280px; gap:48px; align-items:start; }
.loan-explainer-main h3 { font-family:var(--font-d); font-size:18px; font-weight:800; color:var(--text); margin-bottom:12px; }
.loan-explainer-main p { font-size:15px; color:var(--muted); line-height:1.8; margin-bottom:14px; }
.loan-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:0; padding:0; }
.loan-list li { font-size:15px; color:var(--muted); line-height:1.7; padding-left:20px; position:relative; }
.loan-list li::before { content:'→'; position:absolute; left:0; color:var(--orange); font-weight:700; }
.loan-list li strong { color:var(--text); }

.loan-callout {
  background:var(--orange-pale); border:1.5px solid var(--orange-pale2);
  border-radius:var(--rs); padding:18px 22px; margin-top:28px;
  font-size:14px; color:var(--muted); line-height:1.7;
}

.loan-stat-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--rs); padding:18px 20px; margin-bottom:12px;
}
.loan-stat-card.good { border-color:var(--orange); background:var(--orange-pale); }
.loan-stat-card.warn { border-color:#F59E0B; background:#FFFBEB; }
.loan-stat-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:6px; }
.loan-stat-val { font-family:var(--font-d); font-size:30px; font-weight:800; color:var(--text); letter-spacing:-0.5px; line-height:1.2; }
/* Smaller text inside stat cards shouldn't use tight letter-spacing */
.loan-stat-val[style*="font-size:22px"], .loan-stat-val[style*="font-size:18px"] { letter-spacing:-0.2px; }
.loan-stat-note { font-size:11px; color:var(--muted); margin-top:4px; }

/* Comparison table */
.loan-table { width:100%; border-collapse:collapse; font-size:14px; min-width:620px; }
.loan-table th { background:var(--text); color:rgba(255,255,255,.8); font-weight:700; padding:14px 16px; text-align:left; font-size:12px; text-transform:uppercase; letter-spacing:1px; }
.loan-table th:first-child { border-radius:var(--rs) 0 0 0; }
.loan-table th:last-child { border-radius:0 var(--rs) 0 0; }
.loan-table td { padding:14px 16px; border-bottom:1px solid var(--border); color:var(--muted); vertical-align:top; }
.loan-table td strong { color:var(--text); }
.loan-table .alt-row td { background:var(--off); }
.loan-table tr:last-child td { border-bottom:none; }
.loan-table tr:hover td { background:var(--orange-pale); }

@media (max-width:960px) {
  .loan-intro-grid { grid-template-columns:1fr; }
  .loan-explainer-grid { grid-template-columns:1fr; }
  .loan-explainer-sidebar { order:-1; display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
  .loan-explainer-sidebar .btn { grid-column:1/-1; }
}

/* ── ENHANCED CALCULATOR ── */
.cb-main span { font-weight: 700 !important; color: var(--text) !important; }
.cb-main span:last-child { color: var(--orange) !important; font-size: 16px; }
.cb-divider { height: 1px; background: var(--border); margin: 8px 0; }
.calc-pmi-note {
  background: #FEF9C3; border: 1px solid #F59E0B; border-radius: var(--rs);
  padding: 10px 14px; font-size: 12px; color: #78350F; line-height: 1.6; margin-top: 14px;
}

/* ── FOOTER SOCIAL ICONS ── */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  text-decoration: none; border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  flex-shrink: 0;
}
.social-link:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
