/* ===========================
   Design tokens — Joab Garibay
   =========================== */
:root {
  /* Brand */
  --c-primary: #0C447C;
  --c-primary-700: #093460;
  --c-primary-900: #062544;
  --c-primary-50: #EAF1F8;
  --c-gold: #B8860B;
  --c-gold-600: #9c7008;
  --c-gold-50: #FBF4E1;

  /* Neutrals */
  --c-bg: #F6F7FB;
  --c-surface: #ffffff;
  --c-surface-2: #FBFBFD;
  --c-border: #E5E8EE;
  --c-border-strong: #CCD2DA;
  --c-text: #0E1726;
  --c-text-muted: #5B6473;
  --c-text-soft: #8A92A1;

  /* Status */
  --c-success: #1F8A5B;
  --c-success-50: #E5F5EC;
  --c-warn: #C2410C;
  --c-warn-50: #FDECDD;
  --c-danger: #B42318;
  --c-danger-50: #FEE4E2;

  /* Radii & shadow */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(13,28,55,.06), 0 1px 3px rgba(13,28,55,.04);
  --shadow-md: 0 4px 12px rgba(13,28,55,.08), 0 2px 4px rgba(13,28,55,.04);
  --shadow-lg: 0 20px 40px -12px rgba(13,28,55,.18), 0 8px 20px -8px rgba(13,28,55,.10);
  --shadow-pop: 0 10px 30px -8px rgba(12,68,124,.35);

  /* Type */
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* Dark mode */
html[data-theme="dark"] {
  --c-bg: #0A1220;
  --c-surface: #111B2D;
  --c-surface-2: #0E1729;
  --c-border: #1F2B40;
  --c-border-strong: #2A3954;
  --c-text: #E6ECF5;
  --c-text-muted: #98A4B8;
  --c-text-soft: #6B7790;
  --c-primary-50: #11243A;
  --c-gold-50: #2A2110;
  --c-success-50: #0F2A1F;
  --c-warn-50: #2A1A0E;
  --c-danger-50: #2A1414;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 40px -12px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: pretty;
  color: var(--c-text);
}
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.15; }
h3 { font-size: 20px; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===========================
   Layout primitives
   =========================== */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px){ .container { padding: 0 16px; } }

/* ===========================
   Navbar
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  background: color-mix(in oklab, var(--c-surface) 90%, transparent);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--c-primary);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:auto -3px -3px auto;
  width:14px;height:14px;
  background:var(--c-gold);
  border-radius:4px;
  border: 2px solid var(--c-surface);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; white-space: nowrap; }
.brand-role { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--c-text); background: var(--c-bg); }
.nav-link.is-active { color: var(--c-primary); background: var(--c-primary-50); }
html[data-theme="dark"] .nav-link.is-active { color: #7FB1EC; }

.nav-utils { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--c-text-muted);
  transition: all .15s ease;
}
.icon-btn:hover { color: var(--c-text); border-color: var(--c-border-strong); }
.lang-toggle {
  height: 38px;
  padding: 0 4px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  display: flex; align-items: center; gap: 2px;
  font-size: 12px; font-weight: 600;
}
.lang-toggle button {
  border: none; background: transparent;
  padding: 6px 10px; border-radius: 4px;
  cursor: pointer; color: var(--c-text-muted);
}
.lang-toggle button.on { background: var(--c-primary); color: #fff; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-700); box-shadow: var(--shadow-pop); }
.btn-gold { background: var(--c-gold); color: #fff; }
.btn-gold:hover { background: var(--c-gold-600); box-shadow: 0 10px 24px -8px rgba(184,134,11,.45); }
.btn-outline { background: var(--c-surface); color: var(--c-text); border-color: var(--c-border-strong); }
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-ghost { background: transparent; color: var(--c-text-muted); }
.btn-ghost:hover { background: var(--c-bg); color: var(--c-text); }
.btn-danger { background: var(--c-danger-50); color: var(--c-danger); }
.btn-danger:hover { background: var(--c-danger); color: #fff; }
.btn-sm { height: 34px; padding: 0 12px; font-size: 13px; }

/* ===========================
   Cards / generic surfaces
   =========================== */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--c-gold);
}

/* ===========================
   Hero (home)
   =========================== */
.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  /* En móvil la tarjeta va primero (orden visual invertido) */
  .hero-grid > div:last-child { order: -1; }
  .profile-card-wrap::before { width: 72px; height: 72px; }
  .profile-card-wrap::after  { width: 48px; height: 48px; }
  .profile-card { padding: 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 36px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { font-size: 13.5px; padding: 10px 16px; }
  .hero-meta { gap: 20px; margin-top: 24px; padding-top: 20px; }
  .profile-card-wrap { padding: 8px 8px 10px 10px; }
  .profile-card-wrap::before { width: 56px; height: 56px; }
  .profile-card-wrap::after  { width: 36px; height: 36px; }
  .profile-card { padding: 16px; }
}
.hero h1 .accent { color: var(--c-gold); }
.hero-lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--c-text-muted);
  max-width: 56ch;
}
.hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-item .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
}
.hero-meta-item .l {
  font-size: 12px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero portrait card */
/* Wrapper que contiene la tarjeta + los acentos decorativos sin romper el flujo */
.profile-card-wrap {
  position: relative;
  /* Espacio para que los acentos que salen de la tarjeta no tapen otros elementos */
  padding: 12px 12px 14px 14px;
}
/* Acento dorado — esquina superior derecha */
.profile-card-wrap::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 96px; height: 96px;
  background: var(--c-gold);
  border-radius: var(--r-xl);
  opacity: .88;
  z-index: 0;
}
/* Acento azul — esquina inferior izquierda */
.profile-card-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 64px; height: 64px;
  background: var(--c-primary);
  border-radius: var(--r-xl);
  z-index: 0;
}
.profile-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  z-index: 1; /* siempre encima de los ::before / ::after del wrapper */
}
.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 30% 20%, #1f5fa3 0%, #0C447C 55%, #062544 100%);
  position: relative;
  overflow: hidden;
  display:grid; place-items:center;
  color: rgba(255,255,255,.6);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 84px;
  letter-spacing: -0.04em;
}
.profile-photo::before{
  content:"";
  position:absolute; inset:0;
  background:
   radial-gradient(circle at 80% 90%, rgba(184,134,11,.3), transparent 50%);
}
.profile-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--c-primary-50);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid color-mix(in oklab, var(--c-primary) 15%, transparent);
}
html[data-theme="dark"] .tag { color: #9CC3EE; }
.tag.gold { background: var(--c-gold-50); color: var(--c-gold); border-color: color-mix(in oklab, var(--c-gold) 25%, transparent); }
.tag.muted { background: var(--c-bg); color: var(--c-text-muted); border-color: var(--c-border); }

/* Background grid pattern */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top right, #000 10%, transparent 70%);
  opacity: .5;
  z-index: -2;
  pointer-events: none;
}

/* ===========================
   Section header
   =========================== */
.section { padding: 72px 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px;
}
.section-head h2 { max-width: 22ch; }
.section-head p { color: var(--c-text-muted); max-width: 48ch; margin-top: 8px; }

/* Service categories */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .categories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .categories { grid-template-columns: 1fr; } }
.cat-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  overflow: hidden;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.cat-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--c-primary-50);
  color: var(--c-primary);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
html[data-theme="dark"] .cat-icon { color: #7FB1EC; }
.cat-card h3 { font-size: 16px; margin-bottom: 4px; }
.cat-card p { font-size: 13px; color: var(--c-text-muted); }
.cat-card .count {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; font-weight: 700;
  color: var(--c-text-soft);
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--c-bg);
}
.cat-card.gold .cat-icon { background: var(--c-gold-50); color: var(--c-gold); }
.cat-card.gold:hover { border-color: var(--c-gold); }

/* ===========================
   Projects
   =========================== */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px){ .projects { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .projects { grid-template-columns: 1fr; } }

.project-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.project-thumb-inner {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.92);
}
.project-thumb svg { width: 60%; height: 60%; opacity:.92; }
.project-body { padding: 18px 20px 20px; }
.project-cat { font-size: 11px; color: var(--c-text-soft); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.project-card h3 { margin-top: 6px; margin-bottom: 6px; font-size: 17px; }
.project-card p { font-size: 13.5px; color: var(--c-text-muted); }
.project-tech { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.project-tech span {
  font-size: 11px; font-weight: 600;
  padding: 3px 8px;
  background: var(--c-bg);
  border-radius: 4px;
  color: var(--c-text-muted);
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px){ .testimonials { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}
.testimonial .quote-mark {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 56px; line-height: 1;
  color: var(--c-gold);
  opacity: .25;
  font-weight: 800;
}
.testimonial-text { font-size: 14.5px; color: var(--c-text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testimonial-author .who strong { display: block; font-size: 13.5px; font-weight: 600; }
.testimonial-author .who span { font-size: 12px; color: var(--c-text-muted); }

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--c-primary-900);
  color: #cfd8e3;
  margin-top: auto;
}
.footer-inner {
  padding: 64px 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-inner { grid-template-columns: 1fr; gap: 28px;} }
.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer a { display: block; padding: 4px 0; color: #cfd8e3; font-size: 14px; }
.footer a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  color: #8fa2b8;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer .footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.footer .footer-logo .brand-mark { background: var(--c-gold); }
.footer .footer-logo .brand-mark::after { background: #fff; }
.footer-desc { font-size: 14px; max-width: 36ch; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  padding: 0;
}
.footer-socials a:hover { background: var(--c-gold); color: #fff; }

/* ===========================
   WhatsApp FAB
   =========================== */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  display: flex; align-items: center; gap: 12px;
}
.wa-fab-msg {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: waBob 3s ease-in-out infinite;
}
.wa-fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
  position: relative;
}
.wa-fab-btn::before {
  content:""; position:absolute; inset:-4px;
  border-radius: 50%;
  background: #25D366;
  opacity: .25;
  animation: waPing 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPing {
  0% { transform: scale(1); opacity:.4 }
  100% { transform: scale(1.6); opacity: 0 }
}
@keyframes waBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (max-width: 540px){ .wa-fab-msg { display: none; } }

/* ===========================
   Page transitions
   =========================== */
.page-enter {
  animation: pageIn .35s cubic-bezier(.16,.84,.34,1.01) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn .5s ease both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.slide-up { animation: slideUp .45s cubic-bezier(.16,.84,.34,1.01) both; }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   Profile card — mobile responsive
   =========================== */
.profile-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 16px 0 9px;
}
.profile-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--c-border) 0%, transparent 100%);
}
.profile-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.profile-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-surface);
  box-shadow: 0 0 0 2px var(--c-primary), 0 8px 18px -6px rgba(12,68,124,.4);
  display: block;
}
.profile-avatar-fallback {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-gold));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px; color: #fff;
}
.profile-status-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--c-success);
  border: 2.5px solid var(--c-surface);
  box-shadow: 0 0 0 2px rgba(31,138,91,.25);
  animation: waBob 2s infinite;
}
.profile-socials {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.psoc {
  display: flex; flex-direction: column; align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  font-size: 11px; font-weight: 600;
  color: var(--c-text-muted);
  cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  flex: 1; min-width: 60px; text-align: center;
}
.psoc:hover { background: var(--c-surface); color: var(--c-text); transform: translateY(-2px); }
.psoc.github:hover  { color: #333; border-color: #333; }
.psoc.linkedin:hover{ color: #0077b5; border-color: #0077b5; }
.psoc.mail:hover    { color: var(--c-primary); border-color: var(--c-primary); }
.psoc.wa:hover      { color: #25d366; border-color: #25d366; }
.psoc img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }
.psoc-label { font-size: 10.5px; }

/* Hero actions mobile */
@media (max-width: 480px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }
  .hero-msg-btn {
    font-size: 12.5px;
    padding: 9px 12px;
  }
}
