/* ==========================================================================
   Hafida Career — main stylesheet
   Palette: navy #071B3A / dark blue #0D2A5A / electric blue #1677FF
            gold #F5C518 / white #FFFFFF / light #F7F9FC
   ========================================================================== */

:root {
  --navy: #071B3A;
  --navy-2: #0D2A5A;
  --navy-3: #123A76;
  --blue: #1677FF;
  --blue-light: #58A0FF;
  --gold: #F5C518;
  --white: #FFFFFF;
  --light: #F7F9FC;
  --line: #E6EDF8;
  --line-2: #DBE5F4;
  --text: #071B3A;
  --text-2: #33456B;
  --text-3: #5B7091;
  --text-4: #7D8EA9;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius: 18px;
  --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease; }
a:hover, a:focus { color: var(--navy-2); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 999;
  background: var(--gold); color: var(--navy);
  padding: 12px 18px; border-radius: 0 0 10px 10px; font-weight: 700;
}
.skip-link:focus { top: 0; }

.shell { max-width: var(--shell); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--tight { padding: clamp(44px, 6vw, 76px) 0; }
.section--white { background: var(--white); border-top: 1px solid #E8EEF8; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  color: var(--blue);
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--muted { color: var(--text-4); }

.h2 {
  margin-top: 16px;
  font-size: clamp(27px, 3.8vw, 43px);
  line-height: 1.07;
  letter-spacing: -.03em;
  font-weight: 800;
  text-wrap: balance;
}
.lede {
  margin-top: 14px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
  text-wrap: pretty;
}
.section--navy .lede { color: rgba(255,255,255,.72); }
.lede--sm { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--text-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800; font-size: 15px; letter-spacing: .01em;
  cursor: pointer; text-align: center;
  min-height: 52px;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 14px 32px rgba(22,119,255,.34); }
.btn--primary:hover, .btn--primary:focus { background: var(--navy-2); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.32); color: #fff; }
.btn--ghost-light:hover, .btn--ghost-light:focus { border-color: var(--gold); color: var(--gold); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover, .btn--gold:focus { background: #fff; color: var(--navy); }
.btn--whatsapp-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); color: #fff; }
.btn--whatsapp-light:hover, .btn--whatsapp-light:focus { background: #25D366; border-color: #25D366; color: var(--navy); }
.btn--sm { padding: 11px 18px; font-size: 13.5px; min-height: 44px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7,27,58,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-header__inner {
  display: flex; align-items: center; gap: 20px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 17px; letter-spacing: -.02em;
}
.brand:hover, .brand:focus { color: #fff; }
.brand__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 500; padding: 12px 2px; }
.nav a:hover, .nav a:focus { color: #fff; }
.nav .nav__linkedin { color: var(--gold); font-weight: 600; }
.nav .nav__linkedin:hover, .nav .nav__linkedin:focus { color: #fff; }

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px; width: 46px; height: 46px;
  cursor: pointer; color: #fff;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 8px 24px 22px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; }
  .nav .btn { margin-top: 16px; justify-content: center; border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-3) 0%, var(--navy-2) 38%, var(--navy) 100%);
}
.hero__grid-bg {
  position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
  gap: clamp(40px, 6vw, 72px); align-items: center;
  padding-top: clamp(48px, 7vw, 100px); padding-bottom: clamp(56px, 7vw, 100px);
}
.status-pill {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(245,197,24,.4); background: rgba(245,197,24,.1);
  color: var(--gold); padding: 8px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em;
}
.status-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,197,24,.18); }

.hero__title {
  margin-top: 24px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.03; letter-spacing: -.035em; font-weight: 800;
}
.hero__title em { font-style: normal; color: var(--blue-light); }
.hero__text {
  margin-top: 22px; max-width: 540px;
  font-size: clamp(16px, 1.9vw, 18.5px); line-height: 1.6;
  color: rgba(255,255,255,.82); text-wrap: pretty;
}
.hero__text--minor { margin-top: 14px; font-size: 16px; line-height: 1.62; color: rgba(255,255,255,.62); }
.hero__availability {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--gold);
}
.hero__availability span { width: 18px; height: 1px; background: var(--gold); display: inline-block; }
.hero__whatsapp {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 6px; min-height: 52px;
  color: rgba(255,255,255,.72); font-weight: 600; font-size: 14.5px;
}
.hero__whatsapp:hover, .hero__whatsapp:focus { color: #25D366; }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__minor {
  display: inline-block; margin-top: 24px;
  color: rgba(255,255,255,.6); font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 3px;
}
.hero__minor:hover, .hero__minor:focus { color: var(--gold); border-color: var(--gold); }

/* Abstract hero dashboard (no performance numbers) */
.dash {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px; padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  animation: floatY 7s ease-in-out infinite;
}
.dash__bar { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; color: rgba(255,255,255,.5); }
.dash__dots { display: flex; gap: 6px; }
.dash__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }
.dash__dots i:last-child { background: var(--gold); }
.dash__grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 14px; }
.dash__card--blue { background: rgba(22,119,255,.16); border-color: rgba(22,119,255,.3); }
.dash__card--wide { grid-column: span 2; padding: 16px; }
.dash__label { font-size: 12.5px; color: rgba(255,255,255,.68); font-weight: 600; }
.dash__bars { margin-top: 12px; display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.dash__bars i { flex: 1; border-radius: 3px; background: rgba(255,255,255,.24); }
.dash__lines { margin-top: 14px; display: grid; gap: 8px; }
.dash__lines i { height: 8px; border-radius: 999px; display: block; }
.dash__chart { margin-top: 12px; width: 100%; height: 62px; display: block; }
.dash__flow { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(255,255,255,.55); }
.dash__flow i { color: rgba(255,255,255,.25); font-style: normal; }
.dash__flow b:last-of-type { color: var(--gold); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  .dash { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.08); }
.trust__inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px; padding-top: 24px; padding-bottom: 24px;
}
.trust__item { display: flex; align-items: center; gap: 12px; color: #fff; }
.trust__item i { width: 6px; height: 26px; border-radius: 4px; background: var(--gold); flex: none; }
.trust__item:nth-child(even) i { background: var(--blue); }
.trust__item span { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(30px, 5vw, 68px); align-items: start; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 1px solid var(--line); background: var(--light); color: var(--navy-2);
  padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
}

/* ---------- Card grid ---------- */
.cards { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(7,27,58,.09); }
.card__num {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(22,119,255,.1); color: var(--blue);
  display: grid; place-items: center; font-weight: 800;
}
.card:nth-child(even) .card__num { background: rgba(245,197,24,.16); color: #A17D00; }
.card h3 { margin-top: 20px; font-size: 18.5px; font-weight: 700; letter-spacing: -.01em; }
.card p { margin-top: 10px; font-size: 14.8px; line-height: 1.6; color: var(--text-3); }

/* ---------- Skills ---------- */
.core { margin-top: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.core__item { color: #fff; border-radius: 16px; padding: 24px; background: linear-gradient(135deg, var(--navy-2), var(--navy)); }
.core__item:nth-child(2) { background: linear-gradient(135deg, var(--blue), #0D5CD0); }
.core__item:nth-child(3) { background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); }
.core__item span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--gold); }
.core__item:nth-child(2) span { color: rgba(255,255,255,.7); }
.core__item strong { display: block; margin-top: 10px; font-size: 21px; font-weight: 700; letter-spacing: -.02em; }

.skills-positioning { margin-top: 26px; font-size: 16.5px; line-height: 1.65; color: var(--text-2); max-width: 640px; text-wrap: pretty; }

.visibility { margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 16px; }
.visibility__item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.visibility__item:hover { border-color: #C9DCFB; box-shadow: 0 14px 30px rgba(7,27,58,.07); }
.visibility__item--gold:hover { border-color: #F0DC9A; }
.visibility__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(22,119,255,.09); display: grid; place-items: center; }
.visibility__item--gold .visibility__icon { background: rgba(245,197,24,.15); }
.visibility__head { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.visibility__head strong { font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }
.visibility__head em { font-style: normal; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--text-4); }
.visibility__text { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-3); }

/* ---------- Core specializations ---------- */
.core { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 18px; }
.core__item {
  color: #fff; border-radius: 18px; padding: 30px;
  background: linear-gradient(135deg, var(--blue), #0D5CD0);
  box-shadow: 0 20px 40px rgba(22,119,255,.2);
}
.core__item:nth-child(2) { background: linear-gradient(135deg, var(--navy-2), var(--navy)); box-shadow: 0 20px 40px rgba(7,27,58,.18); }
.core__item:nth-child(3) { background: linear-gradient(135deg, var(--navy-3), var(--navy-2)); box-shadow: 0 20px 40px rgba(7,27,58,.18); }
.core__item span { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.72); }
.core__item:nth-child(n+2) span { color: var(--gold); }
.core__item strong { display: block; margin-top: 14px; font-size: clamp(22px, 2.4vw, 27px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.core__item p { margin-top: 12px; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.78); }

.skill-group { margin-top: 34px; }
.skill-group h3 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--text-3); font-weight: 500; }

/* ---------- Platforms ---------- */
.platforms { margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(155px, 100%), 1fr)); gap: 14px; }
@media (min-width: 900px) { .platforms { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.platform {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.platform:hover { border-color: #C9DCFB; box-shadow: 0 14px 30px rgba(7,27,58,.07); }
.platform__icon { flex: none; width: 40px; height: 40px; border-radius: 11px; background: rgba(22,119,255,.09); display: grid; place-items: center; }
.platform__name { font-size: 15.5px; font-weight: 700; color: var(--navy-2); }

.skill-groups { margin-top: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 28px; }
.skill-groups h3 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--text-3); font-weight: 500; }
.badges { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 16px;
  font-size: 14.5px; font-weight: 600; color: var(--navy-2); background: #fff;
}
.badges--muted .badge { background: var(--light); }

/* ---------- Industries ---------- */
.industries { margin-top: 42px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: 20px; }
.industry { position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px;
  box-shadow: 0 2px 8px rgba(7,27,58,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.industry:hover { transform: translateY(-5px); box-shadow: 0 24px 46px rgba(7,27,58,.1); border-color: #C9DCFB; }
.industry:nth-child(2):hover { border-color: #F0DC9A; }
.industry__top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.industry__blob { position: absolute; top: -30px; right: -30px; width: 110px; height: 110px; border-radius: 50%; background: rgba(22,119,255,.05); }
.industry:nth-child(2) .industry__blob { background: rgba(245,197,24,.08); }
.industry__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(22,119,255,.09); display: grid; place-items: center;
}
.industry:nth-child(2) .industry__icon { background: rgba(245,197,24,.15); }
.industry__num { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: #C3CFE2; }
.industry h3 { position: relative; margin-top: 22px; font-size: 19px; font-weight: 700; letter-spacing: -.015em; }
.industry p { position: relative; margin-top: 10px; font-size: 14.8px; line-height: 1.62; color: var(--text-3); text-wrap: pretty; }

/* ---------- Experience list ---------- */
.exp { display: grid; }
.exp__row { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.exp__row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.exp__row span { font-family: var(--mono); font-size: 11px; color: var(--blue-light); padding-top: 4px; }
.exp__row strong { display: block; font-size: 17px; }
.exp__row p { margin-top: 5px; font-size: 14.5px; color: rgba(255,255,255,.62); }
.exp__badges { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.exp__badges span {
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 7px 12px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.86);
}

/* ---------- Selected work ---------- */
.work { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.work__item {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.work__item:hover { transform: translateY(-5px); box-shadow: 0 26px 50px rgba(7,27,58,.12); }
.work__head { background: var(--navy-2); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.work__platform { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; }
.work__category { margin-left: auto; font-size: 11.5px; color: rgba(255,255,255,.6); }
.work__shot { aspect-ratio: 16 / 9; background: #fff; overflow: hidden; }
.work__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.work__shot--contain { background: #0F1B2D; }
.work__shot--contain img { object-fit: contain; object-position: center; }
.work__shot--right img { object-position: top right; }
.work__body { padding: 20px; }
.work__body h3 { font-size: 17.5px; font-weight: 700; }
.work__body p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-3); }
.work__note { margin-top: 24px; font-size: 13.5px; color: var(--text-4); }

/* ---------- Fit grid ---------- */
.fit {
  margin-top: 38px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.fit__item { background: #fff; padding: 28px; }
.fit__item i { display: block; width: 28px; height: 4px; border-radius: 2px; background: var(--blue); }
.fit__item:nth-child(even) i { background: var(--gold); }
.fit__item h3 { margin-top: 18px; font-size: 17px; font-weight: 700; }
.fit__item p { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: var(--text-3); }

/* ---------- LinkedIn panel ---------- */
.li-panel {
  background: linear-gradient(120deg, var(--navy-2), var(--navy));
  border-radius: 22px; padding: clamp(26px, 4vw, 46px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 26px;
  box-shadow: 0 24px 50px rgba(7,27,58,.18);
}
.li-panel > div { flex: 1 1 320px; }
.li-panel h2 { font-size: clamp(23px, 3vw, 31px); color: #fff; font-weight: 800; letter-spacing: -.025em; }
.li-panel p { margin-top: 12px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.72); max-width: 520px; }

/* ---------- Availability ---------- */
.avail { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.avail__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.avail__card--navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.avail__card span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--text-3); }
.avail__card--navy span { color: var(--gold); }
.avail__card ul { margin-top: 14px; display: grid; gap: 10px; list-style: none; font-size: 15px; font-weight: 600; color: var(--navy-2); }
.avail__card--navy ul { color: #fff; }
.avail__card li { display: flex; align-items: center; gap: 10px; }
.avail__card li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex: none; }
.avail__card--navy li::before { background: var(--gold); }

/* ---------- Form ---------- */
.form-card {
  background: var(--light); border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(22px, 3vw, 32px);
  display: grid; gap: 18px;
}
.field { display: grid; gap: 7px; }
.form-intro { font-size: 15px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }
.form-badge {
  justify-self: start; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,119,255,.09); border: 1px solid rgba(22,119,255,.22); color: #0D5CD0;
  padding: 7px 13px; border-radius: 999px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
}
.form-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.field label, .field legend { font-size: 13.5px; font-weight: 700; color: var(--navy-2); padding: 0; }
.field label .req, .field legend .req { color: var(--blue); }
.field label .opt { color: var(--text-4); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line-2); background: #fff; border-radius: 12px;
  padding: 15px 16px; font-size: 16px; font-family: var(--font); color: var(--text);
  min-height: 52px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,119,255,.15);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #D93025; }
.field-error { font-size: 13px; color: #C5221F; font-weight: 600; }
.field--fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 9px; }
.field--fieldset legend { padding: 0; }
.radio-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr)); gap: 10px; }
.radio-row label {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-2); background: #fff; border-radius: 12px;
  padding: 13px 14px; font-size: 14.5px; font-weight: 600; color: var(--navy-2);
  cursor: pointer; min-height: 50px;
}
.radio-row label:hover { border-color: var(--blue); }
.radio-row input { width: 18px; height: 18px; accent-color: var(--blue); }
.form-card button[type="submit"] { width: 100%; justify-content: center; }
.form-privacy { font-size: 12.5px; color: var(--text-4); line-height: 1.55; }
.form-privacy a { font-weight: 600; }
.form-note {
  background: rgba(22,119,255,.07); border: 1px dashed rgba(22,119,255,.4);
  border-radius: 12px; padding: 16px; font-size: 14px; color: var(--navy-2);
}
.form-alert { border-radius: 12px; padding: 16px; font-size: 14.5px; font-weight: 600; }
.form-alert--ok { background: rgba(22,119,255,.08); border: 1px solid rgba(22,119,255,.3); color: var(--navy-2); }
.form-alert--error { background: #FDECEA; border: 1px solid #F5C2BE; color: #C5221F; }
.hp-field { position: absolute; left: -9999px; }

.contact-links { display: grid; gap: 12px; margin-top: 24px; max-width: 340px; }
.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 18px;
  color: var(--navy-2); font-weight: 700; font-size: 14.5px;
}
.contact-link:hover, .contact-link:focus { border-color: var(--blue); color: var(--blue); }
.contact-link--whatsapp:hover, .contact-link--whatsapp:focus { border-color: #25D366; color: #0F8A43; }

.form-after { margin-top: 12px; font-size: 14.5px; color: var(--text-3); }
.form-after a { font-weight: 700; }

/* ---------- Mobile sticky contact bar ---------- */
.sticky-bar { display: none; }
@media (max-width: 720px) {
  .sticky-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7,27,58,.96); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .sticky-bar a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 999px;
    font-weight: 800; font-size: 13.5px; letter-spacing: .02em;
  }
  .sticky-bar__cta { background: var(--blue); color: #fff; }
  .sticky-bar__wa { background: #25D366; color: var(--navy); }
  body { padding-bottom: 74px; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: radial-gradient(120% 140% at 20% 0%, var(--navy-3) 0%, var(--navy-2) 45%, var(--navy) 100%);
  color: #fff; text-align: center;
}
.final-cta .shell { max-width: 900px; padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px); }
.final-cta h2 { font-size: clamp(27px, 4.4vw, 48px); letter-spacing: -.035em; font-weight: 800; line-height: 1.06; text-wrap: balance; }
.final-cta p { margin: 18px auto 0; max-width: 620px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.74); text-wrap: pretty; }
.final-cta .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.site-footer__inner {
  padding-top: 28px; padding-bottom: 28px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 13.5px;
}
.site-footer strong { color: #fff; font-weight: 700; }
.site-footer strong span { color: rgba(255,255,255,.45); font-weight: 500; }
.site-footer nav { display: flex; gap: 20px; align-items: center; }
.site-footer nav a { color: rgba(255,255,255,.7); padding: 10px 0; display: inline-block; }
.site-footer nav a.is-gold { color: var(--gold); font-weight: 600; }

/* ---------- Interior pages (page.php / index.php) ---------- */
.page-body { background: #fff; }
.entry { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) 24px; }
.entry h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.03em; font-weight: 800; }
.entry-content { margin-top: 24px; font-size: 17px; line-height: 1.7; color: var(--text-2); }
.entry-content > * + * { margin-top: 18px; }
.entry-content h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--text); margin-top: 34px; }
.entry-list { display: grid; gap: 22px; }
.entry-list article { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.entry-list h2 { font-size: 22px; font-weight: 700; }

@media (max-width: 640px) {
  .hero__inner { padding-top: 40px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__whatsapp { justify-content: center; }
  .contact-links { max-width: none; }
  .core__item, .industry, .card, .fit__item { padding: 24px; }
}
